ERC-721
Overview
Max Total Supply
28 PXLZ
Holders
25
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PXLZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixelzAccessCard
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-11 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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); } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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: contracts/PixelzAnon.sol pragma solidity ^0.8.4; contract PixelzAccessCard is ERC721A, Ownable{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 111; uint256 public constant MAX_MINT = 1; uint256 public WLmintPrice = .06 ether; uint256 public mintPrice = .08 ether; string public baseTokenUri; bool public publicSale; bool public whiteListSale; bytes32 private merkleRoot; mapping(address => uint256) public totalWhitelistMint; mapping(address => uint256) public totalPublicMint; constructor() ERC721A("Pixelz Anonymous", "PXLZ"){} modifier callerIsUser() { require(tx.origin == msg.sender, "PXLZ :: Cannot be called by a contract"); _; } function mint(uint256 _quantity) external payable callerIsUser{ require(publicSale, "PXLZ :: Minting is not active yet"); require((_totalMinted() + _quantity) <= MAX_SUPPLY, "PXLZ :: Max Supply has been reached on this collection"); require((totalPublicMint[msg.sender] + _quantity) <= MAX_MINT, "PXLZ :: Cannot mint beyond max mint amount, it is 1 per user for WL and 1 per user for Public"); require(msg.value >= (mintPrice * _quantity), "PXLZ :: Below Ether Value"); totalPublicMint[msg.sender] += _quantity; _mint(msg.sender, _quantity); } function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{ require(whiteListSale, "PXLZ :: WL is not active yet"); require((_totalMinted() + _quantity) <= MAX_SUPPLY, "PXLZ :: Cannot mint beyond whitelist max supply"); require((totalWhitelistMint[msg.sender] + _quantity) <= MAX_MINT, "PXLZ :: Cannot mint beyond whitelist max mint"); require(msg.value >= (WLmintPrice * _quantity), "PXLZ :: Below Ether Value"); bytes32 sender = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "PXLZ :: You are not whitelisted"); totalWhitelistMint[msg.sender] += _quantity; _mint(msg.sender, _quantity); } function teamMint(address to, uint _quantity) external onlyOwner{ require(_totalMinted() + _quantity <= MAX_SUPPLY, "PXLZ :: Beyond Max Supply"); _mint(to, _quantity); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId + 1; return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } function setmintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setWLmintPrice(uint256 _WLmintPrice) external onlyOwner { WLmintPrice = _WLmintPrice; } function setTokenUri(string calldata _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{ merkleRoot = _merkleRoot; } function getMerkleRoot() external view returns (bytes32){ return merkleRoot; } function toggleWhiteListSale() external onlyOwner{ whiteListSale = !whiteListSale; } function togglePublicSale() external onlyOwner{ publicSale = !publicSale; } function withdraw() external onlyOwner{ payable(msg.sender).transfer(address(this).balance); } }
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":[],"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":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenUri","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":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","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":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WLmintPrice","type":"uint256"}],"name":"setWLmintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setmintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266d529ae9e86000060095567011c37937e080000600a553480156200002857600080fd5b506040518060400160405280601081526020017f506978656c7a20416e6f6e796d6f7573000000000000000000000000000000008152506040518060400160405280600481526020017f50584c5a000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ad929190620001d8565b508060039080519060200190620000c6929190620001d8565b50620000d76200010560201b60201c565b6000819055505050620000ff620000f36200010a60201b60201c565b6200011260201b60201c565b620002ed565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e69062000288565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b60006002820490506001821680620002a157607f821691505b60208210811415620002b857620002b7620002be565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61387f80620002fd6000396000f3fe60806040526004361061021a5760003560e01c80636ee1960b11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610749578063e222c7f914610786578063e985e9c51461079d578063f0292a03146107da578063f2fde38b146108055761021a565b8063a0712d6814610696578063a22cb465146106b2578063add5a4fa146106db578063b488cf1814610704578063b88d4fde1461072d5761021a565b80637cb64759116100f25780637cb64759146105d557806386a173ee146105fe5780638bb64a8c146106295780638da5cb5b1461064057806395d89b411461066b5761021a565b80636ee1960b1461052b57806370a0823114610556578063715018a6146105935780637a0101a2146105aa5761021a565b806323b872dd116101a65780633ccfd60b116101755780633ccfd60b1461046557806342842e0e1461047c57806349590657146104985780636352211e146104c35780636817c76c146105005761021a565b806323b872dd146103d75780632904e6d9146103f357806332cb6b0c1461040f57806333bc1c5c1461043a5761021a565b8063081812fc116101ed578063081812fc146102ed578063095ea7b31461032a5780630c3aeeb51461034657806318160ddd1461036f5780631c16521c1461039a5761021a565b806301ffc9a71461021f5780630345e3cb1461025c5780630675b7c61461029957806306fdde03146102c2575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612874565b61082e565b6040516102539190612d58565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612628565b6108c0565b6040516102909190612f50565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb91906128ce565b6108d8565b005b3480156102ce57600080fd5b506102d76108f6565b6040516102e49190612d8e565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061291b565b610988565b6040516103219190612cf1565b60405180910390f35b610344600480360381019061033f91906127ab565b610a07565b005b34801561035257600080fd5b5061036d6004803603810190610368919061291b565b610b4b565b005b34801561037b57600080fd5b50610384610b5d565b6040516103919190612f50565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612628565b610b74565b6040516103ce9190612f50565b60405180910390f35b6103f160048036038101906103ec9190612695565b610b8c565b005b61040d600480360381019061040891906127eb565b610eb1565b005b34801561041b57600080fd5b5061042461117e565b6040516104319190612f50565b60405180910390f35b34801561044657600080fd5b5061044f611183565b60405161045c9190612d58565b60405180910390f35b34801561047157600080fd5b5061047a611196565b005b61049660048036038101906104919190612695565b6111e7565b005b3480156104a457600080fd5b506104ad611207565b6040516104ba9190612d73565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e5919061291b565b611211565b6040516104f79190612cf1565b60405180910390f35b34801561050c57600080fd5b50610515611223565b6040516105229190612f50565b60405180910390f35b34801561053757600080fd5b50610540611229565b60405161054d9190612f50565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612628565b61122f565b60405161058a9190612f50565b60405180910390f35b34801561059f57600080fd5b506105a86112e8565b005b3480156105b657600080fd5b506105bf6112fc565b6040516105cc9190612d8e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612847565b61138a565b005b34801561060a57600080fd5b5061061361139c565b6040516106209190612d58565b60405180910390f35b34801561063557600080fd5b5061063e6113af565b005b34801561064c57600080fd5b506106556113e3565b6040516106629190612cf1565b60405180910390f35b34801561067757600080fd5b5061068061140d565b60405161068d9190612d8e565b60405180910390f35b6106b060048036038101906106ab919061291b565b61149f565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061276b565b6116f3565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906127ab565b6117fe565b005b34801561071057600080fd5b5061072b6004803603810190610726919061291b565b61186a565b005b610747600480360381019061074291906126e8565b61187c565b005b34801561075557600080fd5b50610770600480360381019061076b919061291b565b6118ef565b60405161077d9190612d8e565b60405180910390f35b34801561079257600080fd5b5061079b6119a9565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190612655565b6119dd565b6040516107d19190612d58565b60405180910390f35b3480156107e657600080fd5b506107ef611a71565b6040516107fc9190612f50565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190612628565b611a76565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e6020528060005260406000206000915090505481565b6108e0611afa565b8181600b91906108f19291906123a3565b505050565b6060600280546109059061321a565b80601f01602080910402602001604051908101604052809291908181526020018280546109319061321a565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b600061099382611b78565b6109c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282611211565b90508073ffffffffffffffffffffffffffffffffffffffff16610a33611bd7565b73ffffffffffffffffffffffffffffffffffffffff1614610a9657610a5f81610a5a611bd7565b6119dd565b610a95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b53611afa565b8060098190555050565b6000610b67611bdf565b6001546000540303905090565b600f6020528060005260406000206000915090505481565b6000610b9782611be4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0a84611cb2565b91509150610c208187610c1b611bd7565b611cd9565b610c6c57610c3586610c30611bd7565b6119dd565b610c6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce08686866001611d1d565b8015610ceb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610db985610d95888887611d23565b7c020000000000000000000000000000000000000000000000000000000017611d4b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e41576000600185019050600060046000838152602001908152602001600020541415610e3f576000548114610e3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea98686866001611d76565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612e10565b60405180910390fd5b600c60019054906101000a900460ff16610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590612ef0565b60405180910390fd5b606f81610f79611d7c565b610f839190613045565b1115610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612e50565b60405180910390fd5b600181600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110119190613045565b1115611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990612e30565b60405180910390fd5b8060095461106091906130cc565b3410156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990612df0565b60405180910390fd5b6000336040516020016110b59190612ca7565b6040516020818303038152906040528051906020012090506110da83600d5483611d8f565b611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612f30565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111689190613045565b925050819055506111793383611da6565b505050565b606f81565b600c60009054906101000a900460ff1681565b61119e611afa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156111e4573d6000803e3d6000fd5b50565b6112028383836040518060200160405280600081525061187c565b505050565b6000600d54905090565b600061121c82611be4565b9050919050565b600a5481565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611297576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f0611afa565b6112fa6000611f63565b565b600b80546113099061321a565b80601f01602080910402602001604051908101604052809291908181526020018280546113359061321a565b80156113825780601f1061135757610100808354040283529160200191611382565b820191906000526020600020905b81548152906001019060200180831161136557829003601f168201915b505050505081565b611392611afa565b80600d8190555050565b600c60019054906101000a900460ff1681565b6113b7611afa565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461141c9061321a565b80601f01602080910402602001604051908101604052809291908181526020018280546114489061321a565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612e10565b60405180910390fd5b600c60009054906101000a900460ff1661155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390612f10565b60405180910390fd5b606f81611567611d7c565b6115719190613045565b11156115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990612ed0565b60405180910390fd5b600181600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ff9190613045565b1115611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790612eb0565b60405180910390fd5b80600a5461164e91906130cc565b341015611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612df0565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116df9190613045565b925050819055506116f03382611da6565b50565b8060076000611700611bd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ad611bd7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f29190612d58565b60405180910390a35050565b611806611afa565b606f81611811611d7c565b61181b9190613045565b111561185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612db0565b60405180910390fd5b6118668282611da6565b5050565b611872611afa565b80600a8190555050565b611887848484610b8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118e9576118b284848484612029565b6118e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118fa82611b78565b611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090612e90565b60405180910390fd5b60006001836119489190613045565b90506000600b80546119599061321a565b90501161197557604051806020016040528060008152506119a1565b600b61198082612189565b604051602001611991929190612cc2565b6040516020818303038152906040525b915050919050565b6119b1611afa565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b611a7e611afa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590612dd0565b60405180910390fd5b611af781611f63565b50565b611b026122ea565b73ffffffffffffffffffffffffffffffffffffffff16611b206113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90612e70565b60405180910390fd5b565b600081611b83611bdf565b11158015611b92575060005482105b8015611bd0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611bf3611bdf565b11611c7b57600054811015611c7a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c78575b6000811415611c6e576004600083600190039350838152602001908152602001600020549050611c43565b8092505050611cad565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d3a8686846122f2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611d86611bdf565b60005403905090565b600082611d9c85846122fb565b1490509392505050565b6000805490506000821415611de7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611df46000848385611d1d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e6b83611e5c6000866000611d23565b611e6585612351565b17611d4b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f0c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ed1565b506000821415611f48576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f5e6000848385611d76565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204f611bd7565b8786866040518563ffffffff1660e01b81526004016120719493929190612d0c565b602060405180830381600087803b15801561208b57600080fd5b505af19250505080156120bc57506040513d601f19601f820116820180604052508101906120b991906128a1565b60015b612136573d80600081146120ec576040519150601f19603f3d011682016040523d82523d6000602084013e6120f1565b606091505b5060008151141561212e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156121d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e5565b600082905060005b600082146122035780806121ec9061327d565b915050600a826121fc919061309b565b91506121d9565b60008167ffffffffffffffff81111561221f5761221e6133d7565b5b6040519080825280601f01601f1916602001820160405280156122515781602001600182028036833780820191505090505b5090505b600085146122de5760018261226a9190613126565b9150600a8561227991906132ea565b60306122859190613045565b60f81b81838151811061229b5761229a6133a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d7919061309b565b9450612255565b8093505050505b919050565b600033905090565b60009392505050565b60008082905060005b84518110156123465761233182868381518110612324576123236133a8565b5b6020026020010151612361565b9150808061233e9061327d565b915050612304565b508091505092915050565b60006001821460e11b9050919050565b600081831061237957612374828461238c565b612384565b612383838361238c565b5b905092915050565b600082600052816020526040600020905092915050565b8280546123af9061321a565b90600052602060002090601f0160209004810192826123d15760008555612418565b82601f106123ea57803560ff1916838001178555612418565b82800160010185558215612418579182015b828111156124175782358255916020019190600101906123fc565b5b5090506124259190612429565b5090565b5b8082111561244257600081600090555060010161242a565b5090565b600061245961245484612f90565b612f6b565b9050808382526020820190508285602086028201111561247c5761247b613410565b5b60005b858110156124ac57816124928882612550565b84526020840193506020830192505060018101905061247f565b5050509392505050565b60006124c96124c484612fbc565b612f6b565b9050828152602081018484840111156124e5576124e4613415565b5b6124f08482856131d8565b509392505050565b600081359050612507816137d6565b92915050565b600082601f8301126125225761252161340b565b5b8135612532848260208601612446565b91505092915050565b60008135905061254a816137ed565b92915050565b60008135905061255f81613804565b92915050565b6000813590506125748161381b565b92915050565b6000815190506125898161381b565b92915050565b600082601f8301126125a4576125a361340b565b5b81356125b48482602086016124b6565b91505092915050565b60008083601f8401126125d3576125d261340b565b5b8235905067ffffffffffffffff8111156125f0576125ef613406565b5b60208301915083600182028301111561260c5761260b613410565b5b9250929050565b60008135905061262281613832565b92915050565b60006020828403121561263e5761263d61341f565b5b600061264c848285016124f8565b91505092915050565b6000806040838503121561266c5761266b61341f565b5b600061267a858286016124f8565b925050602061268b858286016124f8565b9150509250929050565b6000806000606084860312156126ae576126ad61341f565b5b60006126bc868287016124f8565b93505060206126cd868287016124f8565b92505060406126de86828701612613565b9150509250925092565b600080600080608085870312156127025761270161341f565b5b6000612710878288016124f8565b9450506020612721878288016124f8565b935050604061273287828801612613565b925050606085013567ffffffffffffffff8111156127535761275261341a565b5b61275f8782880161258f565b91505092959194509250565b600080604083850312156127825761278161341f565b5b6000612790858286016124f8565b92505060206127a18582860161253b565b9150509250929050565b600080604083850312156127c2576127c161341f565b5b60006127d0858286016124f8565b92505060206127e185828601612613565b9150509250929050565b600080604083850312156128025761280161341f565b5b600083013567ffffffffffffffff8111156128205761281f61341a565b5b61282c8582860161250d565b925050602061283d85828601612613565b9150509250929050565b60006020828403121561285d5761285c61341f565b5b600061286b84828501612550565b91505092915050565b60006020828403121561288a5761288961341f565b5b600061289884828501612565565b91505092915050565b6000602082840312156128b7576128b661341f565b5b60006128c58482850161257a565b91505092915050565b600080602083850312156128e5576128e461341f565b5b600083013567ffffffffffffffff8111156129035761290261341a565b5b61290f858286016125bd565b92509250509250929050565b6000602082840312156129315761293061341f565b5b600061293f84828501612613565b91505092915050565b6129518161315a565b82525050565b6129686129638261315a565b6132c6565b82525050565b6129778161316c565b82525050565b61298681613178565b82525050565b600061299782613002565b6129a18185613018565b93506129b18185602086016131e7565b6129ba81613424565b840191505092915050565b60006129d08261300d565b6129da8185613029565b93506129ea8185602086016131e7565b6129f381613424565b840191505092915050565b6000612a098261300d565b612a13818561303a565b9350612a238185602086016131e7565b80840191505092915050565b60008154612a3c8161321a565b612a46818661303a565b94506001821660008114612a615760018114612a7257612aa5565b60ff19831686528186019350612aa5565b612a7b85612fed565b60005b83811015612a9d57815481890152600182019150602081019050612a7e565b838801955050505b50505092915050565b6000612abb601983613029565b9150612ac682613442565b602082019050919050565b6000612ade602683613029565b9150612ae98261346b565b604082019050919050565b6000612b01601983613029565b9150612b0c826134ba565b602082019050919050565b6000612b24602683613029565b9150612b2f826134e3565b604082019050919050565b6000612b47602d83613029565b9150612b5282613532565b604082019050919050565b6000612b6a602f83613029565b9150612b7582613581565b604082019050919050565b6000612b8d60058361303a565b9150612b98826135d0565b600582019050919050565b6000612bb0602083613029565b9150612bbb826135f9565b602082019050919050565b6000612bd3602f83613029565b9150612bde82613622565b604082019050919050565b6000612bf6605d83613029565b9150612c0182613671565b606082019050919050565b6000612c19603683613029565b9150612c24826136e6565b604082019050919050565b6000612c3c601c83613029565b9150612c4782613735565b602082019050919050565b6000612c5f602183613029565b9150612c6a8261375e565b604082019050919050565b6000612c82601f83613029565b9150612c8d826137ad565b602082019050919050565b612ca1816131ce565b82525050565b6000612cb38284612957565b60148201915081905092915050565b6000612cce8285612a2f565b9150612cda82846129fe565b9150612ce582612b80565b91508190509392505050565b6000602082019050612d066000830184612948565b92915050565b6000608082019050612d216000830187612948565b612d2e6020830186612948565b612d3b6040830185612c98565b8181036060830152612d4d818461298c565b905095945050505050565b6000602082019050612d6d600083018461296e565b92915050565b6000602082019050612d88600083018461297d565b92915050565b60006020820190508181036000830152612da881846129c5565b905092915050565b60006020820190508181036000830152612dc981612aae565b9050919050565b60006020820190508181036000830152612de981612ad1565b9050919050565b60006020820190508181036000830152612e0981612af4565b9050919050565b60006020820190508181036000830152612e2981612b17565b9050919050565b60006020820190508181036000830152612e4981612b3a565b9050919050565b60006020820190508181036000830152612e6981612b5d565b9050919050565b60006020820190508181036000830152612e8981612ba3565b9050919050565b60006020820190508181036000830152612ea981612bc6565b9050919050565b60006020820190508181036000830152612ec981612be9565b9050919050565b60006020820190508181036000830152612ee981612c0c565b9050919050565b60006020820190508181036000830152612f0981612c2f565b9050919050565b60006020820190508181036000830152612f2981612c52565b9050919050565b60006020820190508181036000830152612f4981612c75565b9050919050565b6000602082019050612f656000830184612c98565b92915050565b6000612f75612f86565b9050612f81828261324c565b919050565b6000604051905090565b600067ffffffffffffffff821115612fab57612faa6133d7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612fd757612fd66133d7565b5b612fe082613424565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613050826131ce565b915061305b836131ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130905761308f61331b565b5b828201905092915050565b60006130a6826131ce565b91506130b1836131ce565b9250826130c1576130c061334a565b5b828204905092915050565b60006130d7826131ce565b91506130e2836131ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561311b5761311a61331b565b5b828202905092915050565b6000613131826131ce565b915061313c836131ce565b92508282101561314f5761314e61331b565b5b828203905092915050565b6000613165826131ae565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132055780820151818401526020810190506131ea565b83811115613214576000848401525b50505050565b6000600282049050600182168061323257607f821691505b6020821081141561324657613245613379565b5b50919050565b61325582613424565b810181811067ffffffffffffffff82111715613274576132736133d7565b5b80604052505050565b6000613288826131ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132bb576132ba61331b565b5b600182019050919050565b60006132d1826132d8565b9050919050565b60006132e382613435565b9050919050565b60006132f5826131ce565b9150613300836131ce565b9250826133105761330f61334a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f50584c5a203a3a204265796f6e64204d617820537570706c7900000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f50584c5a203a3a2042656c6f772045746865722056616c756500000000000000600082015250565b7f50584c5a203a3a2043616e6e6f742062652063616c6c6564206279206120636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f50584c5a203a3a2043616e6e6f74206d696e74206265796f6e6420776869746560008201527f6c697374206d6178206d696e7400000000000000000000000000000000000000602082015250565b7f50584c5a203a3a2043616e6e6f74206d696e74206265796f6e6420776869746560008201527f6c697374206d617820737570706c790000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50584c5a203a3a2043616e6e6f74206d696e74206265796f6e64206d6178206d60008201527f696e7420616d6f756e742c206974206973203120706572207573657220666f7260208201527f20574c20616e64203120706572207573657220666f72205075626c6963000000604082015250565b7f50584c5a203a3a204d617820537570706c7920686173206265656e207265616360008201527f686564206f6e207468697320636f6c6c656374696f6e00000000000000000000602082015250565b7f50584c5a203a3a20574c206973206e6f74206163746976652079657400000000600082015250565b7f50584c5a203a3a204d696e74696e67206973206e6f742061637469766520796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f50584c5a203a3a20596f7520617265206e6f742077686974656c697374656400600082015250565b6137df8161315a565b81146137ea57600080fd5b50565b6137f68161316c565b811461380157600080fd5b50565b61380d81613178565b811461381857600080fd5b50565b61382481613182565b811461382f57600080fd5b50565b61383b816131ce565b811461384657600080fd5b5056fea2646970667358221220e688eac9a388c310004dc49a78241c91c154bb94e55c1d3df31dcd7cf37c43e564736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636ee1960b11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610749578063e222c7f914610786578063e985e9c51461079d578063f0292a03146107da578063f2fde38b146108055761021a565b8063a0712d6814610696578063a22cb465146106b2578063add5a4fa146106db578063b488cf1814610704578063b88d4fde1461072d5761021a565b80637cb64759116100f25780637cb64759146105d557806386a173ee146105fe5780638bb64a8c146106295780638da5cb5b1461064057806395d89b411461066b5761021a565b80636ee1960b1461052b57806370a0823114610556578063715018a6146105935780637a0101a2146105aa5761021a565b806323b872dd116101a65780633ccfd60b116101755780633ccfd60b1461046557806342842e0e1461047c57806349590657146104985780636352211e146104c35780636817c76c146105005761021a565b806323b872dd146103d75780632904e6d9146103f357806332cb6b0c1461040f57806333bc1c5c1461043a5761021a565b8063081812fc116101ed578063081812fc146102ed578063095ea7b31461032a5780630c3aeeb51461034657806318160ddd1461036f5780631c16521c1461039a5761021a565b806301ffc9a71461021f5780630345e3cb1461025c5780630675b7c61461029957806306fdde03146102c2575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612874565b61082e565b6040516102539190612d58565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612628565b6108c0565b6040516102909190612f50565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb91906128ce565b6108d8565b005b3480156102ce57600080fd5b506102d76108f6565b6040516102e49190612d8e565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061291b565b610988565b6040516103219190612cf1565b60405180910390f35b610344600480360381019061033f91906127ab565b610a07565b005b34801561035257600080fd5b5061036d6004803603810190610368919061291b565b610b4b565b005b34801561037b57600080fd5b50610384610b5d565b6040516103919190612f50565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612628565b610b74565b6040516103ce9190612f50565b60405180910390f35b6103f160048036038101906103ec9190612695565b610b8c565b005b61040d600480360381019061040891906127eb565b610eb1565b005b34801561041b57600080fd5b5061042461117e565b6040516104319190612f50565b60405180910390f35b34801561044657600080fd5b5061044f611183565b60405161045c9190612d58565b60405180910390f35b34801561047157600080fd5b5061047a611196565b005b61049660048036038101906104919190612695565b6111e7565b005b3480156104a457600080fd5b506104ad611207565b6040516104ba9190612d73565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e5919061291b565b611211565b6040516104f79190612cf1565b60405180910390f35b34801561050c57600080fd5b50610515611223565b6040516105229190612f50565b60405180910390f35b34801561053757600080fd5b50610540611229565b60405161054d9190612f50565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612628565b61122f565b60405161058a9190612f50565b60405180910390f35b34801561059f57600080fd5b506105a86112e8565b005b3480156105b657600080fd5b506105bf6112fc565b6040516105cc9190612d8e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612847565b61138a565b005b34801561060a57600080fd5b5061061361139c565b6040516106209190612d58565b60405180910390f35b34801561063557600080fd5b5061063e6113af565b005b34801561064c57600080fd5b506106556113e3565b6040516106629190612cf1565b60405180910390f35b34801561067757600080fd5b5061068061140d565b60405161068d9190612d8e565b60405180910390f35b6106b060048036038101906106ab919061291b565b61149f565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061276b565b6116f3565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906127ab565b6117fe565b005b34801561071057600080fd5b5061072b6004803603810190610726919061291b565b61186a565b005b610747600480360381019061074291906126e8565b61187c565b005b34801561075557600080fd5b50610770600480360381019061076b919061291b565b6118ef565b60405161077d9190612d8e565b60405180910390f35b34801561079257600080fd5b5061079b6119a9565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190612655565b6119dd565b6040516107d19190612d58565b60405180910390f35b3480156107e657600080fd5b506107ef611a71565b6040516107fc9190612f50565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190612628565b611a76565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e6020528060005260406000206000915090505481565b6108e0611afa565b8181600b91906108f19291906123a3565b505050565b6060600280546109059061321a565b80601f01602080910402602001604051908101604052809291908181526020018280546109319061321a565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b600061099382611b78565b6109c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282611211565b90508073ffffffffffffffffffffffffffffffffffffffff16610a33611bd7565b73ffffffffffffffffffffffffffffffffffffffff1614610a9657610a5f81610a5a611bd7565b6119dd565b610a95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b53611afa565b8060098190555050565b6000610b67611bdf565b6001546000540303905090565b600f6020528060005260406000206000915090505481565b6000610b9782611be4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0a84611cb2565b91509150610c208187610c1b611bd7565b611cd9565b610c6c57610c3586610c30611bd7565b6119dd565b610c6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce08686866001611d1d565b8015610ceb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610db985610d95888887611d23565b7c020000000000000000000000000000000000000000000000000000000017611d4b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e41576000600185019050600060046000838152602001908152602001600020541415610e3f576000548114610e3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea98686866001611d76565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612e10565b60405180910390fd5b600c60019054906101000a900460ff16610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590612ef0565b60405180910390fd5b606f81610f79611d7c565b610f839190613045565b1115610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612e50565b60405180910390fd5b600181600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110119190613045565b1115611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990612e30565b60405180910390fd5b8060095461106091906130cc565b3410156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990612df0565b60405180910390fd5b6000336040516020016110b59190612ca7565b6040516020818303038152906040528051906020012090506110da83600d5483611d8f565b611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090612f30565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111689190613045565b925050819055506111793383611da6565b505050565b606f81565b600c60009054906101000a900460ff1681565b61119e611afa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156111e4573d6000803e3d6000fd5b50565b6112028383836040518060200160405280600081525061187c565b505050565b6000600d54905090565b600061121c82611be4565b9050919050565b600a5481565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611297576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f0611afa565b6112fa6000611f63565b565b600b80546113099061321a565b80601f01602080910402602001604051908101604052809291908181526020018280546113359061321a565b80156113825780601f1061135757610100808354040283529160200191611382565b820191906000526020600020905b81548152906001019060200180831161136557829003601f168201915b505050505081565b611392611afa565b80600d8190555050565b600c60019054906101000a900460ff1681565b6113b7611afa565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461141c9061321a565b80601f01602080910402602001604051908101604052809291908181526020018280546114489061321a565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612e10565b60405180910390fd5b600c60009054906101000a900460ff1661155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390612f10565b60405180910390fd5b606f81611567611d7c565b6115719190613045565b11156115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990612ed0565b60405180910390fd5b600181600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ff9190613045565b1115611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790612eb0565b60405180910390fd5b80600a5461164e91906130cc565b341015611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612df0565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116df9190613045565b925050819055506116f03382611da6565b50565b8060076000611700611bd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ad611bd7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f29190612d58565b60405180910390a35050565b611806611afa565b606f81611811611d7c565b61181b9190613045565b111561185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612db0565b60405180910390fd5b6118668282611da6565b5050565b611872611afa565b80600a8190555050565b611887848484610b8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118e9576118b284848484612029565b6118e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118fa82611b78565b611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090612e90565b60405180910390fd5b60006001836119489190613045565b90506000600b80546119599061321a565b90501161197557604051806020016040528060008152506119a1565b600b61198082612189565b604051602001611991929190612cc2565b6040516020818303038152906040525b915050919050565b6119b1611afa565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b611a7e611afa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590612dd0565b60405180910390fd5b611af781611f63565b50565b611b026122ea565b73ffffffffffffffffffffffffffffffffffffffff16611b206113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90612e70565b60405180910390fd5b565b600081611b83611bdf565b11158015611b92575060005482105b8015611bd0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611bf3611bdf565b11611c7b57600054811015611c7a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c78575b6000811415611c6e576004600083600190039350838152602001908152602001600020549050611c43565b8092505050611cad565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d3a8686846122f2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611d86611bdf565b60005403905090565b600082611d9c85846122fb565b1490509392505050565b6000805490506000821415611de7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611df46000848385611d1d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e6b83611e5c6000866000611d23565b611e6585612351565b17611d4b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f0c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ed1565b506000821415611f48576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f5e6000848385611d76565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204f611bd7565b8786866040518563ffffffff1660e01b81526004016120719493929190612d0c565b602060405180830381600087803b15801561208b57600080fd5b505af19250505080156120bc57506040513d601f19601f820116820180604052508101906120b991906128a1565b60015b612136573d80600081146120ec576040519150601f19603f3d011682016040523d82523d6000602084013e6120f1565b606091505b5060008151141561212e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156121d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e5565b600082905060005b600082146122035780806121ec9061327d565b915050600a826121fc919061309b565b91506121d9565b60008167ffffffffffffffff81111561221f5761221e6133d7565b5b6040519080825280601f01601f1916602001820160405280156122515781602001600182028036833780820191505090505b5090505b600085146122de5760018261226a9190613126565b9150600a8561227991906132ea565b60306122859190613045565b60f81b81838151811061229b5761229a6133a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d7919061309b565b9450612255565b8093505050505b919050565b600033905090565b60009392505050565b60008082905060005b84518110156123465761233182868381518110612324576123236133a8565b5b6020026020010151612361565b9150808061233e9061327d565b915050612304565b508091505092915050565b60006001821460e11b9050919050565b600081831061237957612374828461238c565b612384565b612383838361238c565b5b905092915050565b600082600052816020526040600020905092915050565b8280546123af9061321a565b90600052602060002090601f0160209004810192826123d15760008555612418565b82601f106123ea57803560ff1916838001178555612418565b82800160010185558215612418579182015b828111156124175782358255916020019190600101906123fc565b5b5090506124259190612429565b5090565b5b8082111561244257600081600090555060010161242a565b5090565b600061245961245484612f90565b612f6b565b9050808382526020820190508285602086028201111561247c5761247b613410565b5b60005b858110156124ac57816124928882612550565b84526020840193506020830192505060018101905061247f565b5050509392505050565b60006124c96124c484612fbc565b612f6b565b9050828152602081018484840111156124e5576124e4613415565b5b6124f08482856131d8565b509392505050565b600081359050612507816137d6565b92915050565b600082601f8301126125225761252161340b565b5b8135612532848260208601612446565b91505092915050565b60008135905061254a816137ed565b92915050565b60008135905061255f81613804565b92915050565b6000813590506125748161381b565b92915050565b6000815190506125898161381b565b92915050565b600082601f8301126125a4576125a361340b565b5b81356125b48482602086016124b6565b91505092915050565b60008083601f8401126125d3576125d261340b565b5b8235905067ffffffffffffffff8111156125f0576125ef613406565b5b60208301915083600182028301111561260c5761260b613410565b5b9250929050565b60008135905061262281613832565b92915050565b60006020828403121561263e5761263d61341f565b5b600061264c848285016124f8565b91505092915050565b6000806040838503121561266c5761266b61341f565b5b600061267a858286016124f8565b925050602061268b858286016124f8565b9150509250929050565b6000806000606084860312156126ae576126ad61341f565b5b60006126bc868287016124f8565b93505060206126cd868287016124f8565b92505060406126de86828701612613565b9150509250925092565b600080600080608085870312156127025761270161341f565b5b6000612710878288016124f8565b9450506020612721878288016124f8565b935050604061273287828801612613565b925050606085013567ffffffffffffffff8111156127535761275261341a565b5b61275f8782880161258f565b91505092959194509250565b600080604083850312156127825761278161341f565b5b6000612790858286016124f8565b92505060206127a18582860161253b565b9150509250929050565b600080604083850312156127c2576127c161341f565b5b60006127d0858286016124f8565b92505060206127e185828601612613565b9150509250929050565b600080604083850312156128025761280161341f565b5b600083013567ffffffffffffffff8111156128205761281f61341a565b5b61282c8582860161250d565b925050602061283d85828601612613565b9150509250929050565b60006020828403121561285d5761285c61341f565b5b600061286b84828501612550565b91505092915050565b60006020828403121561288a5761288961341f565b5b600061289884828501612565565b91505092915050565b6000602082840312156128b7576128b661341f565b5b60006128c58482850161257a565b91505092915050565b600080602083850312156128e5576128e461341f565b5b600083013567ffffffffffffffff8111156129035761290261341a565b5b61290f858286016125bd565b92509250509250929050565b6000602082840312156129315761293061341f565b5b600061293f84828501612613565b91505092915050565b6129518161315a565b82525050565b6129686129638261315a565b6132c6565b82525050565b6129778161316c565b82525050565b61298681613178565b82525050565b600061299782613002565b6129a18185613018565b93506129b18185602086016131e7565b6129ba81613424565b840191505092915050565b60006129d08261300d565b6129da8185613029565b93506129ea8185602086016131e7565b6129f381613424565b840191505092915050565b6000612a098261300d565b612a13818561303a565b9350612a238185602086016131e7565b80840191505092915050565b60008154612a3c8161321a565b612a46818661303a565b94506001821660008114612a615760018114612a7257612aa5565b60ff19831686528186019350612aa5565b612a7b85612fed565b60005b83811015612a9d57815481890152600182019150602081019050612a7e565b838801955050505b50505092915050565b6000612abb601983613029565b9150612ac682613442565b602082019050919050565b6000612ade602683613029565b9150612ae98261346b565b604082019050919050565b6000612b01601983613029565b9150612b0c826134ba565b602082019050919050565b6000612b24602683613029565b9150612b2f826134e3565b604082019050919050565b6000612b47602d83613029565b9150612b5282613532565b604082019050919050565b6000612b6a602f83613029565b9150612b7582613581565b604082019050919050565b6000612b8d60058361303a565b9150612b98826135d0565b600582019050919050565b6000612bb0602083613029565b9150612bbb826135f9565b602082019050919050565b6000612bd3602f83613029565b9150612bde82613622565b604082019050919050565b6000612bf6605d83613029565b9150612c0182613671565b606082019050919050565b6000612c19603683613029565b9150612c24826136e6565b604082019050919050565b6000612c3c601c83613029565b9150612c4782613735565b602082019050919050565b6000612c5f602183613029565b9150612c6a8261375e565b604082019050919050565b6000612c82601f83613029565b9150612c8d826137ad565b602082019050919050565b612ca1816131ce565b82525050565b6000612cb38284612957565b60148201915081905092915050565b6000612cce8285612a2f565b9150612cda82846129fe565b9150612ce582612b80565b91508190509392505050565b6000602082019050612d066000830184612948565b92915050565b6000608082019050612d216000830187612948565b612d2e6020830186612948565b612d3b6040830185612c98565b8181036060830152612d4d818461298c565b905095945050505050565b6000602082019050612d6d600083018461296e565b92915050565b6000602082019050612d88600083018461297d565b92915050565b60006020820190508181036000830152612da881846129c5565b905092915050565b60006020820190508181036000830152612dc981612aae565b9050919050565b60006020820190508181036000830152612de981612ad1565b9050919050565b60006020820190508181036000830152612e0981612af4565b9050919050565b60006020820190508181036000830152612e2981612b17565b9050919050565b60006020820190508181036000830152612e4981612b3a565b9050919050565b60006020820190508181036000830152612e6981612b5d565b9050919050565b60006020820190508181036000830152612e8981612ba3565b9050919050565b60006020820190508181036000830152612ea981612bc6565b9050919050565b60006020820190508181036000830152612ec981612be9565b9050919050565b60006020820190508181036000830152612ee981612c0c565b9050919050565b60006020820190508181036000830152612f0981612c2f565b9050919050565b60006020820190508181036000830152612f2981612c52565b9050919050565b60006020820190508181036000830152612f4981612c75565b9050919050565b6000602082019050612f656000830184612c98565b92915050565b6000612f75612f86565b9050612f81828261324c565b919050565b6000604051905090565b600067ffffffffffffffff821115612fab57612faa6133d7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612fd757612fd66133d7565b5b612fe082613424565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613050826131ce565b915061305b836131ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130905761308f61331b565b5b828201905092915050565b60006130a6826131ce565b91506130b1836131ce565b9250826130c1576130c061334a565b5b828204905092915050565b60006130d7826131ce565b91506130e2836131ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561311b5761311a61331b565b5b828202905092915050565b6000613131826131ce565b915061313c836131ce565b92508282101561314f5761314e61331b565b5b828203905092915050565b6000613165826131ae565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132055780820151818401526020810190506131ea565b83811115613214576000848401525b50505050565b6000600282049050600182168061323257607f821691505b6020821081141561324657613245613379565b5b50919050565b61325582613424565b810181811067ffffffffffffffff82111715613274576132736133d7565b5b80604052505050565b6000613288826131ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132bb576132ba61331b565b5b600182019050919050565b60006132d1826132d8565b9050919050565b60006132e382613435565b9050919050565b60006132f5826131ce565b9150613300836131ce565b9250826133105761330f61334a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f50584c5a203a3a204265796f6e64204d617820537570706c7900000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f50584c5a203a3a2042656c6f772045746865722056616c756500000000000000600082015250565b7f50584c5a203a3a2043616e6e6f742062652063616c6c6564206279206120636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f50584c5a203a3a2043616e6e6f74206d696e74206265796f6e6420776869746560008201527f6c697374206d6178206d696e7400000000000000000000000000000000000000602082015250565b7f50584c5a203a3a2043616e6e6f74206d696e74206265796f6e6420776869746560008201527f6c697374206d617820737570706c790000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50584c5a203a3a2043616e6e6f74206d696e74206265796f6e64206d6178206d60008201527f696e7420616d6f756e742c206974206973203120706572207573657220666f7260208201527f20574c20616e64203120706572207573657220666f72205075626c6963000000604082015250565b7f50584c5a203a3a204d617820537570706c7920686173206265656e207265616360008201527f686564206f6e207468697320636f6c6c656374696f6e00000000000000000000602082015250565b7f50584c5a203a3a20574c206973206e6f74206163746976652079657400000000600082015250565b7f50584c5a203a3a204d696e74696e67206973206e6f742061637469766520796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f50584c5a203a3a20596f7520617265206e6f742077686974656c697374656400600082015250565b6137df8161315a565b81146137ea57600080fd5b50565b6137f68161316c565b811461380157600080fd5b50565b61380d81613178565b811461381857600080fd5b50565b61382481613182565b811461382f57600080fd5b50565b61383b816131ce565b811461384657600080fd5b5056fea2646970667358221220e688eac9a388c310004dc49a78241c91c154bb94e55c1d3df31dcd7cf37c43e564736f6c63430008070033
Deployed Bytecode Sourcemap
66324:3695:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33219:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66738:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69363:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34121:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40612:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40045:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69245:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29872:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66802:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44251:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67674:768;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66410:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66632:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69908:108;;;;;;;;;;;;;:::i;:::-;;47172:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69603:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35514:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66545:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66500:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31056:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11501:103;;;;;;;;;;;;;:::i;:::-;;66593:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69490:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66661:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69703:98;;;;;;;;;;;;;:::i;:::-;;10853:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34297:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67063:603;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41170:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68450:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69135:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47963:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68771:356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69809:89;;;;;;;;;;;;;:::i;:::-;;41561:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66457:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11759:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33219:639;33304:4;33643:10;33628:25;;:11;:25;;;;:102;;;;33720:10;33705:25;;:11;:25;;;;33628:102;:179;;;;33797:10;33782:25;;:11;:25;;;;33628:179;33608:199;;33219:639;;;:::o;66738:53::-;;;;;;;;;;;;;;;;;:::o;69363:117::-;10739:13;:11;:13::i;:::-;69459::::1;;69444:12;:28;;;;;;;:::i;:::-;;69363:117:::0;;:::o;34121:100::-;34175:13;34208:5;34201:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34121:100;:::o;40612:218::-;40688:7;40713:16;40721:7;40713;:16::i;:::-;40708:64;;40738:34;;;;;;;;;;;;;;40708:64;40792:15;:24;40808:7;40792:24;;;;;;;;;;;:30;;;;;;;;;;;;40785:37;;40612:218;;;:::o;40045:408::-;40134:13;40150:16;40158:7;40150;:16::i;:::-;40134:32;;40206:5;40183:28;;:19;:17;:19::i;:::-;:28;;;40179:175;;40231:44;40248:5;40255:19;:17;:19::i;:::-;40231:16;:44::i;:::-;40226:128;;40303:35;;;;;;;;;;;;;;40226:128;40179:175;40399:2;40366:15;:24;40382:7;40366:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40437:7;40433:2;40417:28;;40426:5;40417:28;;;;;;;;;;;;40123:330;40045:408;;:::o;69245:110::-;10739:13;:11;:13::i;:::-;69335:12:::1;69321:11;:26;;;;69245:110:::0;:::o;29872:323::-;29933:7;30161:15;:13;:15::i;:::-;30146:12;;30130:13;;:28;:46;30123:53;;29872:323;:::o;66802:50::-;;;;;;;;;;;;;;;;;:::o;44251:2825::-;44393:27;44423;44442:7;44423:18;:27::i;:::-;44393:57;;44508:4;44467:45;;44483:19;44467:45;;;44463:86;;44521:28;;;;;;;;;;;;;;44463:86;44563:27;44592:23;44619:35;44646:7;44619:26;:35::i;:::-;44562:92;;;;44754:68;44779:15;44796:4;44802:19;:17;:19::i;:::-;44754:24;:68::i;:::-;44749:180;;44842:43;44859:4;44865:19;:17;:19::i;:::-;44842:16;:43::i;:::-;44837:92;;44894:35;;;;;;;;;;;;;;44837:92;44749:180;44960:1;44946:16;;:2;:16;;;44942:52;;;44971:23;;;;;;;;;;;;;;44942:52;45007:43;45029:4;45035:2;45039:7;45048:1;45007:21;:43::i;:::-;45143:15;45140:160;;;45283:1;45262:19;45255:30;45140:160;45680:18;:24;45699:4;45680:24;;;;;;;;;;;;;;;;45678:26;;;;;;;;;;;;45749:18;:22;45768:2;45749:22;;;;;;;;;;;;;;;;45747:24;;;;;;;;;;;46071:146;46108:2;46157:45;46172:4;46178:2;46182:19;46157:14;:45::i;:::-;26271:8;46129:73;46071:18;:146::i;:::-;46042:17;:26;46060:7;46042:26;;;;;;;;;;;:175;;;;46388:1;26271:8;46337:19;:47;:52;46333:627;;;46410:19;46442:1;46432:7;:11;46410:33;;46599:1;46565:17;:30;46583:11;46565:30;;;;;;;;;;;;:35;46561:384;;;46703:13;;46688:11;:28;46684:242;;46883:19;46850:17;:30;46868:11;46850:30;;;;;;;;;;;:52;;;;46684:242;46561:384;46391:569;46333:627;47007:7;47003:2;46988:27;;46997:4;46988:27;;;;;;;;;;;;47026:42;47047:4;47053:2;47057:7;47066:1;47026:20;:42::i;:::-;44382:2694;;;44251:2825;;;:::o;67674:768::-;66982:10;66969:23;;:9;:23;;;66961:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;67795:13:::1;;;;;;;;;;;67787:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66447:3;67878:9;67861:14;:12;:14::i;:::-;:26;;;;:::i;:::-;67860:42;;67852:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;66492:1;68007:9;67974:18;:30;67993:10;67974:30;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;67973:57;;67965:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;68127:9;68113:11;;:23;;;;:::i;:::-;68099:9;:38;;68091:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;68178:14;68222:10;68205:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;68195:39;;;;;;68178:56;;68253:52;68272:12;68286:10;;68298:6;68253:18;:52::i;:::-;68245:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;68386:9;68352:18;:30;68371:10;68352:30;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;68406:28;68412:10;68424:9;68406:5;:28::i;:::-;67776:666;67674:768:::0;;:::o;66410:40::-;66447:3;66410:40;:::o;66632:22::-;;;;;;;;;;;;;:::o;69908:108::-;10739:13;:11;:13::i;:::-;69965:10:::1;69957:28;;:51;69986:21;69957:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;69908:108::o:0;47172:193::-;47318:39;47335:4;47341:2;47345:7;47318:39;;;;;;;;;;;;:16;:39::i;:::-;47172:193;;;:::o;69603:92::-;69651:7;69677:10;;69670:17;;69603:92;:::o;35514:152::-;35586:7;35629:27;35648:7;35629:18;:27::i;:::-;35606:52;;35514:152;;;:::o;66545:36::-;;;;:::o;66500:38::-;;;;:::o;31056:233::-;31128:7;31169:1;31152:19;;:5;:19;;;31148:60;;;31180:28;;;;;;;;;;;;;;31148:60;25215:13;31226:18;:25;31245:5;31226:25;;;;;;;;;;;;;;;;:55;31219:62;;31056:233;;;:::o;11501:103::-;10739:13;:11;:13::i;:::-;11566:30:::1;11593:1;11566:18;:30::i;:::-;11501:103::o:0;66593:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69490:105::-;10739:13;:11;:13::i;:::-;69576:11:::1;69563:10;:24;;;;69490:105:::0;:::o;66661:25::-;;;;;;;;;;;;;:::o;69703:98::-;10739:13;:11;:13::i;:::-;69780::::1;;;;;;;;;;;69779:14;69763:13;;:30;;;;;;;;;;;;;;;;;;69703:98::o:0;10853:87::-;10899:7;10926:6;;;;;;;;;;;10919:13;;10853:87;:::o;34297:104::-;34353:13;34386:7;34379:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34297:104;:::o;67063:603::-;66982:10;66969:23;;:9;:23;;;66961:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;67144:10:::1;;;;;;;;;;;67136:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;66447:3;67229:9;67212:14;:12;:14::i;:::-;:26;;;;:::i;:::-;67211:42;;67203:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;66492:1;67362:9;67332:15;:27;67348:10;67332:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;67331:54;;67323:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;67528:9;67516;;:21;;;;:::i;:::-;67502:9;:36;;67494:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;67610:9;67579:15;:27;67595:10;67579:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;67630:28;67636:10;67648:9;67630:5;:28::i;:::-;67063:603:::0;:::o;41170:234::-;41317:8;41265:18;:39;41284:19;:17;:19::i;:::-;41265:39;;;;;;;;;;;;;;;:49;41305:8;41265:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41377:8;41341:55;;41356:19;:17;:19::i;:::-;41341:55;;;41387:8;41341:55;;;;;;:::i;:::-;;;;;;;;41170:234;;:::o;68450:192::-;10739:13;:11;:13::i;:::-;66447:3:::1;68550:9;68533:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:40;;68525:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;68614:20;68620:2;68624:9;68614:5;:20::i;:::-;68450:192:::0;;:::o;69135:102::-;10739:13;:11;:13::i;:::-;69219:10:::1;69207:9;:22;;;;69135:102:::0;:::o;47963:407::-;48138:31;48151:4;48157:2;48161:7;48138:12;:31::i;:::-;48202:1;48184:2;:14;;;:19;48180:183;;48223:56;48254:4;48260:2;48264:7;48273:5;48223:30;:56::i;:::-;48218:145;;48307:40;;;;;;;;;;;;;;48218:145;48180:183;47963:407;;;;:::o;68771:356::-;68844:13;68878:16;68886:7;68878;:16::i;:::-;68870:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;68959:14;68986:1;68976:7;:11;;;;:::i;:::-;68959:28;;69044:1;69021:12;69015:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;69072:12;69086:17;:6;:15;:17::i;:::-;69055:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69015:104;69008:111;;;68771:356;;;:::o;69809:89::-;10739:13;:11;:13::i;:::-;69880:10:::1;;;;;;;;;;;69879:11;69866:10;;:24;;;;;;;;;;;;;;;;;;69809:89::o:0;41561:164::-;41658:4;41682:18;:25;41701:5;41682:25;;;;;;;;;;;;;;;:35;41708:8;41682:35;;;;;;;;;;;;;;;;;;;;;;;;;41675:42;;41561:164;;;;:::o;66457:36::-;66492:1;66457:36;:::o;11759:201::-;10739:13;:11;:13::i;:::-;11868:1:::1;11848:22;;:8;:22;;;;11840:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11924:28;11943:8;11924:18;:28::i;:::-;11759:201:::0;:::o;11018:132::-;11093:12;:10;:12::i;:::-;11082:23;;:7;:5;:7::i;:::-;:23;;;11074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11018:132::o;41983:282::-;42048:4;42104:7;42085:15;:13;:15::i;:::-;:26;;:66;;;;;42138:13;;42128:7;:23;42085:66;:153;;;;;42237:1;25991:8;42189:17;:26;42207:7;42189:26;;;;;;;;;;;;:44;:49;42085:153;42065:173;;41983:282;;;:::o;64291:105::-;64351:7;64378:10;64371:17;;64291:105;:::o;29388:92::-;29444:7;29388:92;:::o;36669:1275::-;36736:7;36756:12;36771:7;36756:22;;36839:4;36820:15;:13;:15::i;:::-;:23;36816:1061;;36873:13;;36866:4;:20;36862:1015;;;36911:14;36928:17;:23;36946:4;36928:23;;;;;;;;;;;;36911:40;;37045:1;25991:8;37017:6;:24;:29;37013:845;;;37682:113;37699:1;37689:6;:11;37682:113;;;37742:17;:25;37760:6;;;;;;;37742:25;;;;;;;;;;;;37733:34;;37682:113;;;37828:6;37821:13;;;;;;37013:845;36888:989;36862:1015;36816:1061;37905:31;;;;;;;;;;;;;;36669:1275;;;;:::o;43146:485::-;43248:27;43277:23;43318:38;43359:15;:24;43375:7;43359:24;;;;;;;;;;;43318:65;;43536:18;43513:41;;43593:19;43587:26;43568:45;;43498:126;43146:485;;;:::o;42374:659::-;42523:11;42688:16;42681:5;42677:28;42668:37;;42848:16;42837:9;42833:32;42820:45;;42998:15;42987:9;42984:30;42976:5;42965:9;42962:20;42959:56;42949:66;;42374:659;;;;;:::o;49032:159::-;;;;;:::o;63600:311::-;63735:7;63755:16;26395:3;63781:19;:41;;63755:68;;26395:3;63849:31;63860:4;63866:2;63870:9;63849:10;:31::i;:::-;63841:40;;:62;;63834:69;;;63600:311;;;;;:::o;38492:450::-;38572:14;38740:16;38733:5;38729:28;38720:37;;38917:5;38903:11;38878:23;38874:41;38871:52;38864:5;38861:63;38851:73;;38492:450;;;;:::o;49856:158::-;;;;;:::o;30293:296::-;30348:7;30555:15;:13;:15::i;:::-;30539:13;;:31;30532:38;;30293:296;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;51632:2966::-;51705:20;51728:13;;51705:36;;51768:1;51756:8;:13;51752:44;;;51778:18;;;;;;;;;;;;;;51752:44;51809:61;51839:1;51843:2;51847:12;51861:8;51809:21;:61::i;:::-;52353:1;25353:2;52323:1;:26;;52322:32;52310:8;:45;52284:18;:22;52303:2;52284:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52632:139;52669:2;52723:33;52746:1;52750:2;52754:1;52723:14;:33::i;:::-;52690:30;52711:8;52690:20;:30::i;:::-;:66;52632:18;:139::i;:::-;52598:17;:31;52616:12;52598:31;;;;;;;;;;;:173;;;;52788:16;52819:11;52848:8;52833:12;:23;52819:37;;53369:16;53365:2;53361:25;53349:37;;53741:12;53701:8;53660:1;53598:25;53539:1;53478;53451:335;54112:1;54098:12;54094:20;54052:346;54153:3;54144:7;54141:16;54052:346;;54371:7;54361:8;54358:1;54331:25;54328:1;54325;54320:59;54206:1;54197:7;54193:15;54182:26;;54052:346;;;54056:77;54443:1;54431:8;:13;54427:45;;;54453:19;;;;;;;;;;;;;;54427:45;54505:3;54489:13;:19;;;;52058:2462;;54530:60;54559:1;54563:2;54567:12;54581:8;54530:20;:60::i;:::-;51694:2904;51632:2966;;:::o;12120:191::-;12194:16;12213:6;;;;;;;;;;;12194:25;;12239:8;12230:6;;:17;;;;;;;;;;;;;;;;;;12294:8;12263:40;;12284:8;12263:40;;;;;;;;;;;;12183:128;12120:191;:::o;50454:716::-;50617:4;50663:2;50638:45;;;50684:19;:17;:19::i;:::-;50705:4;50711:7;50720:5;50638:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50634:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50938:1;50921:6;:13;:18;50917:235;;;50967:40;;;;;;;;;;;;;;50917:235;51110:6;51104:13;51095:6;51091:2;51087:15;51080:38;50634:529;50807:54;;;50797:64;;;:6;:64;;;;50790:71;;;50454:716;;;;;;:::o;12748:723::-;12804:13;13034:1;13025:5;:10;13021:53;;;13052:10;;;;;;;;;;;;;;;;;;;;;13021:53;13084:12;13099:5;13084:20;;13115:14;13140:78;13155:1;13147:4;:9;13140:78;;13173:8;;;;;:::i;:::-;;;;13204:2;13196:10;;;;;:::i;:::-;;;13140:78;;;13228:19;13260:6;13250:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13228:39;;13278:154;13294:1;13285:5;:10;13278:154;;13322:1;13312:11;;;;;:::i;:::-;;;13389:2;13381:5;:10;;;;:::i;:::-;13368:2;:24;;;;:::i;:::-;13355:39;;13338:6;13345;13338:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13418:2;13409:11;;;;;:::i;:::-;;;13278:154;;;13456:6;13442:21;;;;;12748:723;;;;:::o;9404:98::-;9457:7;9484:10;9477:17;;9404:98;:::o;63301:147::-;63438:6;63301:147;;;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;39044:324::-;39114:14;39347:1;39337:8;39334:15;39308:24;39304:46;39294:56;;39044:324;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:370::-;1401:5;1450:3;1443:4;1435:6;1431:17;1427:27;1417:122;;1458:79;;:::i;:::-;1417:122;1575:6;1562:20;1600:94;1690:3;1682:6;1675:4;1667:6;1663:17;1600:94;:::i;:::-;1591:103;;1407:293;1330:370;;;;:::o;1706:133::-;1749:5;1787:6;1774:20;1765:29;;1803:30;1827:5;1803:30;:::i;:::-;1706:133;;;;:::o;1845:139::-;1891:5;1929:6;1916:20;1907:29;;1945:33;1972:5;1945:33;:::i;:::-;1845:139;;;;:::o;1990:137::-;2035:5;2073:6;2060:20;2051:29;;2089:32;2115:5;2089:32;:::i;:::-;1990:137;;;;:::o;2133:141::-;2189:5;2220:6;2214:13;2205:22;;2236:32;2262:5;2236:32;:::i;:::-;2133:141;;;;:::o;2293:338::-;2348:5;2397:3;2390:4;2382:6;2378:17;2374:27;2364:122;;2405:79;;:::i;:::-;2364:122;2522:6;2509:20;2547:78;2621:3;2613:6;2606:4;2598:6;2594:17;2547:78;:::i;:::-;2538:87;;2354:277;2293:338;;;;:::o;2651:553::-;2709:8;2719:6;2769:3;2762:4;2754:6;2750:17;2746:27;2736:122;;2777:79;;:::i;:::-;2736:122;2890:6;2877:20;2867:30;;2920:18;2912:6;2909:30;2906:117;;;2942:79;;:::i;:::-;2906:117;3056:4;3048:6;3044:17;3032:29;;3110:3;3102:4;3094:6;3090:17;3080:8;3076:32;3073:41;3070:128;;;3117:79;;:::i;:::-;3070:128;2651:553;;;;;:::o;3210:139::-;3256:5;3294:6;3281:20;3272:29;;3310:33;3337:5;3310:33;:::i;:::-;3210:139;;;;:::o;3355:329::-;3414:6;3463:2;3451:9;3442:7;3438:23;3434:32;3431:119;;;3469:79;;:::i;:::-;3431:119;3589:1;3614:53;3659:7;3650:6;3639:9;3635:22;3614:53;:::i;:::-;3604:63;;3560:117;3355:329;;;;:::o;3690:474::-;3758:6;3766;3815:2;3803:9;3794:7;3790:23;3786:32;3783:119;;;3821:79;;:::i;:::-;3783:119;3941:1;3966:53;4011:7;4002:6;3991:9;3987:22;3966:53;:::i;:::-;3956:63;;3912:117;4068:2;4094:53;4139:7;4130:6;4119:9;4115:22;4094:53;:::i;:::-;4084:63;;4039:118;3690:474;;;;;:::o;4170:619::-;4247:6;4255;4263;4312:2;4300:9;4291:7;4287:23;4283:32;4280:119;;;4318:79;;:::i;:::-;4280:119;4438:1;4463:53;4508:7;4499:6;4488:9;4484:22;4463:53;:::i;:::-;4453:63;;4409:117;4565:2;4591:53;4636:7;4627:6;4616:9;4612:22;4591:53;:::i;:::-;4581:63;;4536:118;4693:2;4719:53;4764:7;4755:6;4744:9;4740:22;4719:53;:::i;:::-;4709:63;;4664:118;4170:619;;;;;:::o;4795:943::-;4890:6;4898;4906;4914;4963:3;4951:9;4942:7;4938:23;4934:33;4931:120;;;4970:79;;:::i;:::-;4931:120;5090:1;5115:53;5160:7;5151:6;5140:9;5136:22;5115:53;:::i;:::-;5105:63;;5061:117;5217:2;5243:53;5288:7;5279:6;5268:9;5264:22;5243:53;:::i;:::-;5233:63;;5188:118;5345:2;5371:53;5416:7;5407:6;5396:9;5392:22;5371:53;:::i;:::-;5361:63;;5316:118;5501:2;5490:9;5486:18;5473:32;5532:18;5524:6;5521:30;5518:117;;;5554:79;;:::i;:::-;5518:117;5659:62;5713:7;5704:6;5693:9;5689:22;5659:62;:::i;:::-;5649:72;;5444:287;4795:943;;;;;;;:::o;5744:468::-;5809:6;5817;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5963:117;6119:2;6145:50;6187:7;6178:6;6167:9;6163:22;6145:50;:::i;:::-;6135:60;;6090:115;5744:468;;;;;:::o;6218:474::-;6286:6;6294;6343:2;6331:9;6322:7;6318:23;6314:32;6311:119;;;6349:79;;:::i;:::-;6311:119;6469:1;6494:53;6539:7;6530:6;6519:9;6515:22;6494:53;:::i;:::-;6484:63;;6440:117;6596:2;6622:53;6667:7;6658:6;6647:9;6643:22;6622:53;:::i;:::-;6612:63;;6567:118;6218:474;;;;;:::o;6698:684::-;6791:6;6799;6848:2;6836:9;6827:7;6823:23;6819:32;6816:119;;;6854:79;;:::i;:::-;6816:119;7002:1;6991:9;6987:17;6974:31;7032:18;7024:6;7021:30;7018:117;;;7054:79;;:::i;:::-;7018:117;7159:78;7229:7;7220:6;7209:9;7205:22;7159:78;:::i;:::-;7149:88;;6945:302;7286:2;7312:53;7357:7;7348:6;7337:9;7333:22;7312:53;:::i;:::-;7302:63;;7257:118;6698:684;;;;;:::o;7388:329::-;7447:6;7496:2;7484:9;7475:7;7471:23;7467:32;7464:119;;;7502:79;;:::i;:::-;7464:119;7622:1;7647:53;7692:7;7683:6;7672:9;7668:22;7647:53;:::i;:::-;7637:63;;7593:117;7388:329;;;;:::o;7723:327::-;7781:6;7830:2;7818:9;7809:7;7805:23;7801:32;7798:119;;;7836:79;;:::i;:::-;7798:119;7956:1;7981:52;8025:7;8016:6;8005:9;8001:22;7981:52;:::i;:::-;7971:62;;7927:116;7723:327;;;;:::o;8056:349::-;8125:6;8174:2;8162:9;8153:7;8149:23;8145:32;8142:119;;;8180:79;;:::i;:::-;8142:119;8300:1;8325:63;8380:7;8371:6;8360:9;8356:22;8325:63;:::i;:::-;8315:73;;8271:127;8056:349;;;;:::o;8411:529::-;8482:6;8490;8539:2;8527:9;8518:7;8514:23;8510:32;8507:119;;;8545:79;;:::i;:::-;8507:119;8693:1;8682:9;8678:17;8665:31;8723:18;8715:6;8712:30;8709:117;;;8745:79;;:::i;:::-;8709:117;8858:65;8915:7;8906:6;8895:9;8891:22;8858:65;:::i;:::-;8840:83;;;;8636:297;8411:529;;;;;:::o;8946:329::-;9005:6;9054:2;9042:9;9033:7;9029:23;9025:32;9022:119;;;9060:79;;:::i;:::-;9022:119;9180:1;9205:53;9250:7;9241:6;9230:9;9226:22;9205:53;:::i;:::-;9195:63;;9151:117;8946:329;;;;:::o;9281:118::-;9368:24;9386:5;9368:24;:::i;:::-;9363:3;9356:37;9281:118;;:::o;9405:157::-;9510:45;9530:24;9548:5;9530:24;:::i;:::-;9510:45;:::i;:::-;9505:3;9498:58;9405:157;;:::o;9568:109::-;9649:21;9664:5;9649:21;:::i;:::-;9644:3;9637:34;9568:109;;:::o;9683:118::-;9770:24;9788:5;9770:24;:::i;:::-;9765:3;9758:37;9683:118;;:::o;9807:360::-;9893:3;9921:38;9953:5;9921:38;:::i;:::-;9975:70;10038:6;10033:3;9975:70;:::i;:::-;9968:77;;10054:52;10099:6;10094:3;10087:4;10080:5;10076:16;10054:52;:::i;:::-;10131:29;10153:6;10131:29;:::i;:::-;10126:3;10122:39;10115:46;;9897:270;9807:360;;;;:::o;10173:364::-;10261:3;10289:39;10322:5;10289:39;:::i;:::-;10344:71;10408:6;10403:3;10344:71;:::i;:::-;10337:78;;10424:52;10469:6;10464:3;10457:4;10450:5;10446:16;10424:52;:::i;:::-;10501:29;10523:6;10501:29;:::i;:::-;10496:3;10492:39;10485:46;;10265:272;10173:364;;;;:::o;10543:377::-;10649:3;10677:39;10710:5;10677:39;:::i;:::-;10732:89;10814:6;10809:3;10732:89;:::i;:::-;10725:96;;10830:52;10875:6;10870:3;10863:4;10856:5;10852:16;10830:52;:::i;:::-;10907:6;10902:3;10898:16;10891:23;;10653:267;10543:377;;;;:::o;10950:845::-;11053:3;11090:5;11084:12;11119:36;11145:9;11119:36;:::i;:::-;11171:89;11253:6;11248:3;11171:89;:::i;:::-;11164:96;;11291:1;11280:9;11276:17;11307:1;11302:137;;;;11453:1;11448:341;;;;11269:520;;11302:137;11386:4;11382:9;11371;11367:25;11362:3;11355:38;11422:6;11417:3;11413:16;11406:23;;11302:137;;11448:341;11515:38;11547:5;11515:38;:::i;:::-;11575:1;11589:154;11603:6;11600:1;11597:13;11589:154;;;11677:7;11671:14;11667:1;11662:3;11658:11;11651:35;11727:1;11718:7;11714:15;11703:26;;11625:4;11622:1;11618:12;11613:17;;11589:154;;;11772:6;11767:3;11763:16;11756:23;;11455:334;;11269:520;;11057:738;;10950:845;;;;:::o;11801:366::-;11943:3;11964:67;12028:2;12023:3;11964:67;:::i;:::-;11957:74;;12040:93;12129:3;12040:93;:::i;:::-;12158:2;12153:3;12149:12;12142:19;;11801:366;;;:::o;12173:::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:::-;12687:3;12708:67;12772:2;12767:3;12708:67;:::i;:::-;12701:74;;12784:93;12873:3;12784:93;:::i;:::-;12902:2;12897:3;12893:12;12886:19;;12545:366;;;:::o;12917:::-;13059:3;13080:67;13144:2;13139:3;13080:67;:::i;:::-;13073:74;;13156:93;13245:3;13156:93;:::i;:::-;13274:2;13269:3;13265:12;13258:19;;12917:366;;;:::o;13289:::-;13431:3;13452:67;13516:2;13511:3;13452:67;:::i;:::-;13445:74;;13528:93;13617:3;13528:93;:::i;:::-;13646:2;13641:3;13637:12;13630:19;;13289:366;;;:::o;13661:::-;13803:3;13824:67;13888:2;13883:3;13824:67;:::i;:::-;13817:74;;13900:93;13989:3;13900:93;:::i;:::-;14018:2;14013:3;14009:12;14002:19;;13661:366;;;:::o;14033:400::-;14193:3;14214:84;14296:1;14291:3;14214:84;:::i;:::-;14207:91;;14307:93;14396:3;14307:93;:::i;:::-;14425:1;14420:3;14416:11;14409:18;;14033:400;;;:::o;14439:366::-;14581:3;14602:67;14666:2;14661:3;14602:67;:::i;:::-;14595:74;;14678:93;14767:3;14678:93;:::i;:::-;14796:2;14791:3;14787:12;14780:19;;14439:366;;;:::o;14811:::-;14953:3;14974:67;15038:2;15033:3;14974:67;:::i;:::-;14967:74;;15050:93;15139:3;15050:93;:::i;:::-;15168:2;15163:3;15159:12;15152:19;;14811:366;;;:::o;15183:::-;15325:3;15346:67;15410:2;15405:3;15346:67;:::i;:::-;15339:74;;15422:93;15511:3;15422:93;:::i;:::-;15540:2;15535:3;15531:12;15524:19;;15183:366;;;:::o;15555:::-;15697:3;15718:67;15782:2;15777:3;15718:67;:::i;:::-;15711:74;;15794:93;15883:3;15794:93;:::i;:::-;15912:2;15907:3;15903:12;15896:19;;15555:366;;;:::o;15927:::-;16069:3;16090:67;16154:2;16149:3;16090:67;:::i;:::-;16083:74;;16166:93;16255:3;16166:93;:::i;:::-;16284:2;16279:3;16275:12;16268:19;;15927:366;;;:::o;16299:::-;16441:3;16462:67;16526:2;16521:3;16462:67;:::i;:::-;16455:74;;16538:93;16627:3;16538:93;:::i;:::-;16656:2;16651:3;16647:12;16640:19;;16299:366;;;:::o;16671:::-;16813:3;16834:67;16898:2;16893:3;16834:67;:::i;:::-;16827:74;;16910:93;16999:3;16910:93;:::i;:::-;17028:2;17023:3;17019:12;17012:19;;16671:366;;;:::o;17043:118::-;17130:24;17148:5;17130:24;:::i;:::-;17125:3;17118:37;17043:118;;:::o;17167:256::-;17279:3;17294:75;17365:3;17356:6;17294:75;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17414:3;17407:10;;17167:256;;;;:::o;17429:695::-;17707:3;17729:92;17817:3;17808:6;17729:92;:::i;:::-;17722:99;;17838:95;17929:3;17920:6;17838:95;:::i;:::-;17831:102;;17950:148;18094:3;17950:148;:::i;:::-;17943:155;;18115:3;18108:10;;17429:695;;;;;:::o;18130:222::-;18223:4;18261:2;18250:9;18246:18;18238:26;;18274:71;18342:1;18331:9;18327:17;18318:6;18274:71;:::i;:::-;18130:222;;;;:::o;18358:640::-;18553:4;18591:3;18580:9;18576:19;18568:27;;18605:71;18673:1;18662:9;18658:17;18649:6;18605:71;:::i;:::-;18686:72;18754:2;18743:9;18739:18;18730:6;18686:72;:::i;:::-;18768;18836:2;18825:9;18821:18;18812:6;18768:72;:::i;:::-;18887:9;18881:4;18877:20;18872:2;18861:9;18857:18;18850:48;18915:76;18986:4;18977:6;18915:76;:::i;:::-;18907:84;;18358:640;;;;;;;:::o;19004:210::-;19091:4;19129:2;19118:9;19114:18;19106:26;;19142:65;19204:1;19193:9;19189:17;19180:6;19142:65;:::i;:::-;19004:210;;;;:::o;19220:222::-;19313:4;19351:2;19340:9;19336:18;19328:26;;19364:71;19432:1;19421:9;19417:17;19408:6;19364:71;:::i;:::-;19220:222;;;;:::o;19448:313::-;19561:4;19599:2;19588:9;19584:18;19576:26;;19648:9;19642:4;19638:20;19634:1;19623:9;19619:17;19612:47;19676:78;19749:4;19740:6;19676:78;:::i;:::-;19668:86;;19448:313;;;;:::o;19767:419::-;19933:4;19971:2;19960:9;19956:18;19948:26;;20020:9;20014:4;20010:20;20006:1;19995:9;19991:17;19984:47;20048:131;20174:4;20048:131;:::i;:::-;20040:139;;19767:419;;;:::o;20192:::-;20358:4;20396:2;20385:9;20381:18;20373:26;;20445:9;20439:4;20435:20;20431:1;20420:9;20416:17;20409:47;20473:131;20599:4;20473:131;:::i;:::-;20465:139;;20192:419;;;:::o;20617:::-;20783:4;20821:2;20810:9;20806:18;20798:26;;20870:9;20864:4;20860:20;20856:1;20845:9;20841:17;20834:47;20898:131;21024:4;20898:131;:::i;:::-;20890:139;;20617:419;;;:::o;21042:::-;21208:4;21246:2;21235:9;21231:18;21223:26;;21295:9;21289:4;21285:20;21281:1;21270:9;21266:17;21259:47;21323:131;21449:4;21323:131;:::i;:::-;21315:139;;21042:419;;;:::o;21467:::-;21633:4;21671:2;21660:9;21656:18;21648:26;;21720:9;21714:4;21710:20;21706:1;21695:9;21691:17;21684:47;21748:131;21874:4;21748:131;:::i;:::-;21740:139;;21467:419;;;:::o;21892:::-;22058:4;22096:2;22085:9;22081:18;22073:26;;22145:9;22139:4;22135:20;22131:1;22120:9;22116:17;22109:47;22173:131;22299:4;22173:131;:::i;:::-;22165:139;;21892:419;;;:::o;22317:::-;22483:4;22521:2;22510:9;22506:18;22498:26;;22570:9;22564:4;22560:20;22556:1;22545:9;22541:17;22534:47;22598:131;22724:4;22598:131;:::i;:::-;22590:139;;22317:419;;;:::o;22742:::-;22908:4;22946:2;22935:9;22931:18;22923:26;;22995:9;22989:4;22985:20;22981:1;22970:9;22966:17;22959:47;23023:131;23149:4;23023:131;:::i;:::-;23015:139;;22742:419;;;:::o;23167:::-;23333:4;23371:2;23360:9;23356:18;23348:26;;23420:9;23414:4;23410:20;23406:1;23395:9;23391:17;23384:47;23448:131;23574:4;23448:131;:::i;:::-;23440:139;;23167:419;;;:::o;23592:::-;23758:4;23796:2;23785:9;23781:18;23773:26;;23845:9;23839:4;23835:20;23831:1;23820:9;23816:17;23809:47;23873:131;23999:4;23873:131;:::i;:::-;23865:139;;23592:419;;;:::o;24017:::-;24183:4;24221:2;24210:9;24206:18;24198:26;;24270:9;24264:4;24260:20;24256:1;24245:9;24241:17;24234:47;24298:131;24424:4;24298:131;:::i;:::-;24290:139;;24017:419;;;:::o;24442:::-;24608:4;24646:2;24635:9;24631:18;24623:26;;24695:9;24689:4;24685:20;24681:1;24670:9;24666:17;24659:47;24723:131;24849:4;24723:131;:::i;:::-;24715:139;;24442:419;;;:::o;24867:::-;25033:4;25071:2;25060:9;25056:18;25048:26;;25120:9;25114:4;25110:20;25106:1;25095:9;25091:17;25084:47;25148:131;25274:4;25148:131;:::i;:::-;25140:139;;24867:419;;;:::o;25292:222::-;25385:4;25423:2;25412:9;25408:18;25400:26;;25436:71;25504:1;25493:9;25489:17;25480:6;25436:71;:::i;:::-;25292:222;;;;:::o;25520:129::-;25554:6;25581:20;;:::i;:::-;25571:30;;25610:33;25638:4;25630:6;25610:33;:::i;:::-;25520:129;;;:::o;25655:75::-;25688:6;25721:2;25715:9;25705:19;;25655:75;:::o;25736:311::-;25813:4;25903:18;25895:6;25892:30;25889:56;;;25925:18;;:::i;:::-;25889:56;25975:4;25967:6;25963:17;25955:25;;26035:4;26029;26025:15;26017:23;;25736:311;;;:::o;26053:307::-;26114:4;26204:18;26196:6;26193:30;26190:56;;;26226:18;;:::i;:::-;26190:56;26264:29;26286:6;26264:29;:::i;:::-;26256:37;;26348:4;26342;26338:15;26330:23;;26053:307;;;:::o;26366:141::-;26415:4;26438:3;26430:11;;26461:3;26458:1;26451:14;26495:4;26492:1;26482:18;26474:26;;26366:141;;;:::o;26513:98::-;26564:6;26598:5;26592:12;26582:22;;26513:98;;;:::o;26617:99::-;26669:6;26703:5;26697:12;26687:22;;26617:99;;;:::o;26722:168::-;26805:11;26839:6;26834:3;26827:19;26879:4;26874:3;26870:14;26855:29;;26722:168;;;;:::o;26896:169::-;26980:11;27014:6;27009:3;27002:19;27054:4;27049:3;27045:14;27030:29;;26896:169;;;;:::o;27071:148::-;27173:11;27210:3;27195:18;;27071:148;;;;:::o;27225:305::-;27265:3;27284:20;27302:1;27284:20;:::i;:::-;27279:25;;27318:20;27336:1;27318:20;:::i;:::-;27313:25;;27472:1;27404:66;27400:74;27397:1;27394:81;27391:107;;;27478:18;;:::i;:::-;27391:107;27522:1;27519;27515:9;27508:16;;27225:305;;;;:::o;27536:185::-;27576:1;27593:20;27611:1;27593:20;:::i;:::-;27588:25;;27627:20;27645:1;27627:20;:::i;:::-;27622:25;;27666:1;27656:35;;27671:18;;:::i;:::-;27656:35;27713:1;27710;27706:9;27701:14;;27536:185;;;;:::o;27727:348::-;27767:7;27790:20;27808:1;27790:20;:::i;:::-;27785:25;;27824:20;27842:1;27824:20;:::i;:::-;27819:25;;28012:1;27944:66;27940:74;27937:1;27934:81;27929:1;27922:9;27915:17;27911:105;27908:131;;;28019:18;;:::i;:::-;27908:131;28067:1;28064;28060:9;28049:20;;27727:348;;;;:::o;28081:191::-;28121:4;28141:20;28159:1;28141:20;:::i;:::-;28136:25;;28175:20;28193:1;28175:20;:::i;:::-;28170:25;;28214:1;28211;28208:8;28205:34;;;28219:18;;:::i;:::-;28205:34;28264:1;28261;28257:9;28249:17;;28081:191;;;;:::o;28278:96::-;28315:7;28344:24;28362:5;28344:24;:::i;:::-;28333:35;;28278:96;;;:::o;28380:90::-;28414:7;28457:5;28450:13;28443:21;28432:32;;28380:90;;;:::o;28476:77::-;28513:7;28542:5;28531:16;;28476:77;;;:::o;28559:149::-;28595:7;28635:66;28628:5;28624:78;28613:89;;28559:149;;;:::o;28714:126::-;28751:7;28791:42;28784:5;28780:54;28769:65;;28714:126;;;:::o;28846:77::-;28883:7;28912:5;28901:16;;28846:77;;;:::o;28929:154::-;29013:6;29008:3;29003;28990:30;29075:1;29066:6;29061:3;29057:16;29050:27;28929:154;;;:::o;29089:307::-;29157:1;29167:113;29181:6;29178:1;29175:13;29167:113;;;29266:1;29261:3;29257:11;29251:18;29247:1;29242:3;29238:11;29231:39;29203:2;29200:1;29196:10;29191:15;;29167:113;;;29298:6;29295:1;29292:13;29289:101;;;29378:1;29369:6;29364:3;29360:16;29353:27;29289:101;29138:258;29089:307;;;:::o;29402:320::-;29446:6;29483:1;29477:4;29473:12;29463:22;;29530:1;29524:4;29520:12;29551:18;29541:81;;29607:4;29599:6;29595:17;29585:27;;29541:81;29669:2;29661:6;29658:14;29638:18;29635:38;29632:84;;;29688:18;;:::i;:::-;29632:84;29453:269;29402:320;;;:::o;29728:281::-;29811:27;29833:4;29811:27;:::i;:::-;29803:6;29799:40;29941:6;29929:10;29926:22;29905:18;29893:10;29890:34;29887:62;29884:88;;;29952:18;;:::i;:::-;29884:88;29992:10;29988:2;29981:22;29771:238;29728:281;;:::o;30015:233::-;30054:3;30077:24;30095:5;30077:24;:::i;:::-;30068:33;;30123:66;30116:5;30113:77;30110:103;;;30193:18;;:::i;:::-;30110:103;30240:1;30233:5;30229:13;30222:20;;30015:233;;;:::o;30254:100::-;30293:7;30322:26;30342:5;30322:26;:::i;:::-;30311:37;;30254:100;;;:::o;30360:94::-;30399:7;30428:20;30442:5;30428:20;:::i;:::-;30417:31;;30360:94;;;:::o;30460:176::-;30492:1;30509:20;30527:1;30509:20;:::i;:::-;30504:25;;30543:20;30561:1;30543:20;:::i;:::-;30538:25;;30582:1;30572:35;;30587:18;;:::i;:::-;30572:35;30628:1;30625;30621:9;30616:14;;30460:176;;;;:::o;30642:180::-;30690:77;30687:1;30680:88;30787:4;30784:1;30777:15;30811:4;30808:1;30801:15;30828:180;30876:77;30873:1;30866:88;30973:4;30970:1;30963:15;30997:4;30994:1;30987:15;31014:180;31062:77;31059:1;31052:88;31159:4;31156:1;31149:15;31183:4;31180:1;31173:15;31200:180;31248:77;31245:1;31238:88;31345:4;31342:1;31335:15;31369:4;31366:1;31359:15;31386:180;31434:77;31431:1;31424:88;31531:4;31528:1;31521:15;31555:4;31552:1;31545:15;31572:117;31681:1;31678;31671:12;31695:117;31804:1;31801;31794:12;31818:117;31927:1;31924;31917:12;31941:117;32050:1;32047;32040:12;32064:117;32173:1;32170;32163:12;32187:117;32296:1;32293;32286:12;32310:102;32351:6;32402:2;32398:7;32393:2;32386:5;32382:14;32378:28;32368:38;;32310:102;;;:::o;32418:94::-;32451:8;32499:5;32495:2;32491:14;32470:35;;32418:94;;;:::o;32518:175::-;32658:27;32654:1;32646:6;32642:14;32635:51;32518:175;:::o;32699:225::-;32839:34;32835:1;32827:6;32823:14;32816:58;32908:8;32903:2;32895:6;32891:15;32884:33;32699:225;:::o;32930:175::-;33070:27;33066:1;33058:6;33054:14;33047:51;32930:175;:::o;33111:225::-;33251:34;33247:1;33239:6;33235:14;33228:58;33320:8;33315:2;33307:6;33303:15;33296:33;33111:225;:::o;33342:232::-;33482:34;33478:1;33470:6;33466:14;33459:58;33551:15;33546:2;33538:6;33534:15;33527:40;33342:232;:::o;33580:234::-;33720:34;33716:1;33708:6;33704:14;33697:58;33789:17;33784:2;33776:6;33772:15;33765:42;33580:234;:::o;33820:155::-;33960:7;33956:1;33948:6;33944:14;33937:31;33820:155;:::o;33981:182::-;34121:34;34117:1;34109:6;34105:14;34098:58;33981:182;:::o;34169:234::-;34309:34;34305:1;34297:6;34293:14;34286:58;34378:17;34373:2;34365:6;34361:15;34354:42;34169:234;:::o;34409:317::-;34549:34;34545:1;34537:6;34533:14;34526:58;34618:34;34613:2;34605:6;34601:15;34594:59;34687:31;34682:2;34674:6;34670:15;34663:56;34409:317;:::o;34732:241::-;34872:34;34868:1;34860:6;34856:14;34849:58;34941:24;34936:2;34928:6;34924:15;34917:49;34732:241;:::o;34979:178::-;35119:30;35115:1;35107:6;35103:14;35096:54;34979:178;:::o;35163:220::-;35303:34;35299:1;35291:6;35287:14;35280:58;35372:3;35367:2;35359:6;35355:15;35348:28;35163:220;:::o;35389:181::-;35529:33;35525:1;35517:6;35513:14;35506:57;35389:181;:::o;35576:122::-;35649:24;35667:5;35649:24;:::i;:::-;35642:5;35639:35;35629:63;;35688:1;35685;35678:12;35629:63;35576:122;:::o;35704:116::-;35774:21;35789:5;35774:21;:::i;:::-;35767:5;35764:32;35754:60;;35810:1;35807;35800:12;35754:60;35704:116;:::o;35826:122::-;35899:24;35917:5;35899:24;:::i;:::-;35892:5;35889:35;35879:63;;35938:1;35935;35928:12;35879:63;35826:122;:::o;35954:120::-;36026:23;36043:5;36026:23;:::i;:::-;36019:5;36016:34;36006:62;;36064:1;36061;36054:12;36006:62;35954:120;:::o;36080:122::-;36153:24;36171:5;36153:24;:::i;:::-;36146:5;36143:35;36133:63;;36192:1;36189;36182:12;36133:63;36080:122;:::o
Swarm Source
ipfs://e688eac9a388c310004dc49a78241c91c154bb94e55c1d3df31dcd7cf37c43e5
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.