Overview
ETH Balance
0.0307 ETH
Eth Value
$103.60 (@ $3,374.69/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 381 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 21507255 | 3 days ago | IN | 0 ETH | 0.00019502 | ||||
Mint | 17931032 | 504 days ago | IN | 0.0307 ETH | 0.00222524 | ||||
Withdraw | 17228687 | 602 days ago | IN | 0 ETH | 0.00203745 | ||||
Mint | 17182097 | 609 days ago | IN | 0.0306 ETH | 0.00585367 | ||||
Safe Transfer Fr... | 16931980 | 644 days ago | IN | 0 ETH | 0.00165685 | ||||
Mint | 16919966 | 646 days ago | IN | 0.0305 ETH | 0.00350417 | ||||
Mint | 16919257 | 646 days ago | IN | 0.0304 ETH | 0.00477913 | ||||
Mint | 16912793 | 647 days ago | IN | 0.0298 ETH | 0.00256187 | ||||
Safe Transfer Fr... | 16896013 | 649 days ago | IN | 0 ETH | 0.0017673 | ||||
Unpause | 16884281 | 651 days ago | IN | 0 ETH | 0.00061318 | ||||
Airdrop | 16884278 | 651 days ago | IN | 0 ETH | 0.00243653 | ||||
Pause | 16884264 | 651 days ago | IN | 0 ETH | 0.00132118 | ||||
Unpause | 16882479 | 651 days ago | IN | 0 ETH | 0.00030431 | ||||
Airdrop | 16882475 | 651 days ago | IN | 0 ETH | 0.00120709 | ||||
Pause | 16882468 | 651 days ago | IN | 0 ETH | 0.00063932 | ||||
Mint | 16847673 | 656 days ago | IN | 0.0298 ETH | 0.00200108 | ||||
Set Approval For... | 16817855 | 660 days ago | IN | 0 ETH | 0.00075061 | ||||
Unpause | 16748276 | 670 days ago | IN | 0 ETH | 0.0005786 | ||||
Airdrop | 16748273 | 670 days ago | IN | 0 ETH | 0.00197703 | ||||
Pause | 16748265 | 670 days ago | IN | 0 ETH | 0.00099248 | ||||
Mint | 16747315 | 670 days ago | IN | 0.0296 ETH | 0.0015337 | ||||
Mint | 16743756 | 671 days ago | IN | 0.0295 ETH | 0.00283158 | ||||
Mint | 16736936 | 672 days ago | IN | 0.0294 ETH | 0.00218962 | ||||
Mint | 16733164 | 672 days ago | IN | 0.0293 ETH | 0.00216155 | ||||
Mint | 16726255 | 673 days ago | IN | 0.0292 ETH | 0.00154891 |
Loading...
Loading
Contract Name:
JellyBots
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-05 */ // Sources flattened with hardhat v2.10.2 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // 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/[email protected] // 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/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/utils/[email protected] // 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 @openzeppelin/contracts/utils/cryptography/[email protected] // 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 erc721a/contracts/[email protected] // ERC721A Contracts v4.2.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // 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/[email protected] // ERC721A Contracts v4.2.2 // 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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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/JellyBots.sol pragma solidity ^0.8.12; //@author 0x3 Studio //@title JellyBots contract JellyBots is ERC721A, Ownable, ReentrancyGuard { enum Step { Prologue, Sale, Epilogue } Step private currentStep; bytes32 private merkleRoot; string private baseURI; bool private paused = false; uint256 private constant MAX_SUPPLY = 10000; uint256 private constant INCREMENT = 0.0001 ether; constructor() ERC721A("JellyBots", "JLB") {} // Modifiers modifier whenNotPaused() { require(!paused, "Contract is currently paused"); _; } modifier whenPaused() { require(paused, "Contract is not currently paused"); _; } // Mint function mint() external payable whenNotPaused nonReentrant { address addr = msg.sender; uint256 price = (totalSupply() + 1) * INCREMENT; require(currentStep == Step.Sale, "Public sale is not active"); require(totalSupply() + 1 <= MAX_SUPPLY, "Maximum supply exceeded"); require(msg.value >= price, "Not enough funds"); _safeMint(addr, 1); } function mintMultiple(bytes32[] calldata merkleProof, uint256 _quantity) external payable whenPaused nonReentrant { address addr = msg.sender; uint256 price = (totalSupply() * _quantity + (_quantity * (_quantity + 1)) / 2) * INCREMENT; require(merkleRoot != "", "Merkle root is not set"); require( MerkleProof.verify( merkleProof, merkleRoot, keccak256(abi.encodePacked(addr)) ), "Invalid Merkle proof" ); require(currentStep == Step.Sale, "Public sale is not active"); require( totalSupply() + _quantity <= MAX_SUPPLY, "Maximum supply exceeded" ); require(msg.value >= price, "Not enough funds"); _safeMint(addr, _quantity); } function airdrop(address _addr, uint256 _quantity) external onlyOwner whenPaused nonReentrant { require( totalSupply() + _quantity <= MAX_SUPPLY, "Maximum supply exceeded" ); _safeMint(_addr, _quantity); } function bulkAirdrop(address[] memory _addrs, uint256 _quantity) external onlyOwner whenPaused nonReentrant { require( totalSupply() + _quantity * _addrs.length <= MAX_SUPPLY, "Maximum supply exceeded" ); for (uint256 i = 0; i < _addrs.length; i++) { _safeMint(_addrs[i], _quantity); } } // Utils function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); return string( abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json") ); } // Getters and setters function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function getMerkleRoot() external view returns (bytes32) { return merkleRoot; } function setBaseURI(string memory _baseURI) external onlyOwner { require( bytes(baseURI).length == 0, "You can only set the base URI once" ); baseURI = _baseURI; } function getBaseURI() external view returns (string memory) { return baseURI; } function setCurrentStep(uint256 _currentStep) external onlyOwner { require(_currentStep > uint256(currentStep), "You can only go forward"); currentStep = Step(_currentStep); } function getCurrentStep() external view returns (uint256) { return uint256(currentStep); } // Pause methods function pause() external onlyOwner { paused = true; } function unpause() external onlyOwner { paused = false; } function isPaused() external view returns (bool) { return paused; } // Withdraw function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } // Overrides function _startTokenId() internal view virtual override returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"bulkAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentStep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintMultiple","outputs":[],"stateMutability":"payable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentStep","type":"uint256"}],"name":"setCurrentStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600d60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600981526020017f4a656c6c79426f747300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a4c4200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000b1929190620001e8565b508060039080519060200190620000ca929190620001e8565b50620000db6200011160201b60201c565b600081905550505062000103620000f76200011a60201b60201c565b6200012260201b60201c565b6001600981905550620002fd565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f690620002c7565b90600052602060002090601f0160209004810192826200021a576000855562000266565b82601f106200023557805160ff191683800117855562000266565b8280016001018555821562000266579182015b828111156200026557825182559160200191906001019062000248565b5b50905062000275919062000279565b5090565b5b80821115620002945760008160009055506001016200027a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e057607f821691505b60208210811415620002f757620002f662000298565b5b50919050565b613aa7806200030d6000396000f3fe6080604052600436106101d85760003560e01c806370a082311161010257806397e87fdb11610095578063c87b56dd11610064578063c87b56dd1461061c578063e985e9c514610659578063f2fde38b14610696578063f74b5636146106bf576101d8565b806397e87fdb14610576578063a22cb4651461059f578063b187bd26146105c8578063b88d4fde146105f3576101d8565b80638456cb59116100d15780638456cb59146104e05780638ba4cc3c146104f75780638da5cb5b1461052057806395d89b411461054b576101d8565b806370a0823114610438578063714c539814610475578063715018a6146104a05780637cb64759146104b7576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461037e57806349590657146103a757806355f804b3146103d25780636352211e146103fb576101d8565b806323b872dd1461030b5780633ccfd60b146103345780633f4ba83a1461034b5780634233307d14610362576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780631249c58b146102ab57806318160ddd146102b55780631d3824ea146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906126bf565b6106e8565b6040516102119190612707565b60405180910390f35b34801561022657600080fd5b5061022f61077a565b60405161023c91906127bb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612813565b61080c565b6040516102799190612881565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128c8565b61088b565b005b6102b36109cf565b005b3480156102c157600080fd5b506102ca610bc3565b6040516102d79190612917565b60405180910390f35b3480156102ec57600080fd5b506102f5610bda565b6040516103029190612917565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612932565b610c03565b005b34801561034057600080fd5b50610349610f28565b005b34801561035757600080fd5b50610360610f80565b005b61037c600480360381019061037791906129ea565b610fa5565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612932565b6112bf565b005b3480156103b357600080fd5b506103bc6112df565b6040516103c99190612a63565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612bae565b6112e9565b005b34801561040757600080fd5b50610422600480360381019061041d9190612813565b61135c565b60405161042f9190612881565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612bf7565b61136e565b60405161046c9190612917565b60405180910390f35b34801561048157600080fd5b5061048a611427565b60405161049791906127bb565b60405180910390f35b3480156104ac57600080fd5b506104b56114b9565b005b3480156104c357600080fd5b506104de60048036038101906104d99190612c50565b6114cd565b005b3480156104ec57600080fd5b506104f56114df565b005b34801561050357600080fd5b5061051e600480360381019061051991906128c8565b611504565b005b34801561052c57600080fd5b50610535611616565b6040516105429190612881565b60405180910390f35b34801561055757600080fd5b50610560611640565b60405161056d91906127bb565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612813565b6116d2565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612ca9565b61177c565b005b3480156105d457600080fd5b506105dd6118f4565b6040516105ea9190612707565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612d8a565b61190b565b005b34801561062857600080fd5b50610643600480360381019061063e9190612813565b61197e565b60405161065091906127bb565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190612e0d565b6119fa565b60405161068d9190612707565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190612bf7565b611a8e565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190612f10565b611b12565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107735750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078990612f9b565b80601f01602080910402602001604051908101604052809291908181526020018280546107b590612f9b565b80156108025780601f106107d757610100808354040283529160200191610802565b820191906000526020600020905b8154815290600101906020018083116107e557829003601f168201915b5050505050905090565b600061081782611c6a565b61084d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108968261135c565b90508073ffffffffffffffffffffffffffffffffffffffff166108b7611cc9565b73ffffffffffffffffffffffffffffffffffffffff161461091a576108e3816108de611cc9565b6119fa565b610919576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900460ff1615610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690613019565b60405180910390fd5b60026009541415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613085565b60405180910390fd5b600260098190555060003390506000655af3107a40006001610a85610bc3565b610a8f91906130d4565b610a99919061312a565b905060016002811115610aaf57610aae613184565b5b600a60009054906101000a900460ff166002811115610ad157610ad0613184565b5b14610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b08906131ff565b60405180910390fd5b6127106001610b1e610bc3565b610b2891906130d4565b1115610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b609061326b565b60405180910390fd5b80341015610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906132d7565b60405180910390fd5b610bb7826001611cd1565b50506001600981905550565b6000610bcd611cef565b6001546000540303905090565b6000600a60009054906101000a900460ff166002811115610bfe57610bfd613184565b5b905090565b6000610c0e82611cf8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c75576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c8184611dc6565b91509150610c978187610c92611cc9565b611ded565b610ce357610cac86610ca7611cc9565b6119fa565b610ce2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d578686866001611e31565b8015610d6257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3085610e0c888887611e37565b7c020000000000000000000000000000000000000000000000000000000017611e5f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eb8576000600185019050600060046000838152602001908152602001600020541415610eb6576000548114610eb5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f208686866001611e8a565b505050505050565b610f30611e90565b610f38611616565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f7d573d6000803e3d6000fd5b50565b610f88611e90565b6000600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff16610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613343565b60405180910390fd5b6002600954141561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613085565b60405180910390fd5b600260098190555060003390506000655af3107a4000600260018561105f91906130d4565b8561106a919061312a565b6110749190613392565b8461107d610bc3565b611087919061312a565b61109191906130d4565b61109b919061312a565b90506000600b5414156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061340f565b60405180910390fd5b611157858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b548460405160200161113c9190613477565b60405160208183030381529060405280519060200120611f0e565b611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906134de565b60405180910390fd5b600160028111156111aa576111a9613184565b5b600a60009054906101000a900460ff1660028111156111cc576111cb613184565b5b1461120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906131ff565b60405180910390fd5b61271083611218610bc3565b61122291906130d4565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a9061326b565b60405180910390fd5b803410156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d906132d7565b60405180910390fd5b6112b08284611cd1565b50506001600981905550505050565b6112da8383836040518060200160405280600081525061190b565b505050565b6000600b54905090565b6112f1611e90565b6000600c805461130090612f9b565b905014611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990613570565b60405180910390fd5b80600c90805190602001906113589291906125b0565b5050565b600061136782611cf8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600c805461143690612f9b565b80601f016020809104026020016040519081016040528092919081815260200182805461146290612f9b565b80156114af5780601f10611484576101008083540402835291602001916114af565b820191906000526020600020905b81548152906001019060200180831161149257829003601f168201915b5050505050905090565b6114c1611e90565b6114cb6000611f25565b565b6114d5611e90565b80600b8190555050565b6114e7611e90565b6001600d60006101000a81548160ff021916908315150217905550565b61150c611e90565b600d60009054906101000a900460ff1661155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613343565b60405180910390fd5b600260095414156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613085565b60405180910390fd5b6002600981905550612710816115b5610bc3565b6115bf91906130d4565b1115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f79061326b565b60405180910390fd5b61160a8282611cd1565b60016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461164f90612f9b565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90612f9b565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b5050505050905090565b6116da611e90565b600a60009054906101000a900460ff1660028111156116fc576116fb613184565b5b811161173d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611734906135dc565b60405180910390fd5b8060028111156117505761174f613184565b5b600a60006101000a81548160ff0219169083600281111561177457611773613184565b5b021790555050565b611784611cc9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f6611cc9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a3611cc9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e89190612707565b60405180910390a35050565b6000600d60009054906101000a900460ff16905090565b611916848484610c03565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119785761194184848484611feb565b611977576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061198982611c6a565b6119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90613648565b60405180910390fd5b600c6119d38361213c565b6040516020016119e4929190613784565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a96611e90565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613825565b60405180910390fd5b611b0f81611f25565b50565b611b1a611e90565b600d60009054906101000a900460ff16611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613343565b60405180910390fd5b60026009541415611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613085565b60405180910390fd5b6002600981905550612710825182611bc7919061312a565b611bcf610bc3565b611bd991906130d4565b1115611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c119061326b565b60405180910390fd5b60005b8251811015611c5d57611c4a838281518110611c3c57611c3b613845565b5b602002602001015183611cd1565b8080611c5590613874565b915050611c1d565b5060016009819055505050565b600081611c75611cef565b11158015611c84575060005482105b8015611cc2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611ceb82826040518060200160405280600081525061229d565b5050565b60006001905090565b60008082905080611d07611cef565b11611d8f57600054811015611d8e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d8c575b6000811415611d82576004600083600190039350838152602001908152602001600020549050611d57565b8092505050611dc1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e4e86868461233a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e98612343565b73ffffffffffffffffffffffffffffffffffffffff16611eb6611616565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390613909565b60405180910390fd5b565b600082611f1b858461234b565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612011611cc9565b8786866040518563ffffffff1660e01b8152600401612033949392919061397e565b6020604051808303816000875af192505050801561206f57506040513d601f19601f8201168201806040525081019061206c91906139df565b60015b6120e9573d806000811461209f576040519150601f19603f3d011682016040523d82523d6000602084013e6120a4565b606091505b506000815114156120e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612184576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612298565b600082905060005b600082146121b657808061219f90613874565b915050600a826121af9190613392565b915061218c565b60008167ffffffffffffffff8111156121d2576121d1612a83565b5b6040519080825280601f01601f1916602001820160405280156122045781602001600182028036833780820191505090505b5090505b600085146122915760018261221d9190613a0c565b9150600a8561222c9190613a40565b603061223891906130d4565b60f81b81838151811061224e5761224d613845565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228a9190613392565b9450612208565b8093505050505b919050565b6122a783836123a1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461233557600080549050600083820390505b6122e76000868380600101945086611feb565b61231d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122d457816000541461233257600080fd5b50505b505050565b60009392505050565b600033905090565b60008082905060005b8451811015612396576123818286838151811061237457612373613845565b5b602002602001015161255e565b9150808061238e90613874565b915050612354565b508091505092915050565b60008054905060008214156123e2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ef6000848385611e31565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612466836124576000866000611e37565b61246085612589565b17611e5f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461250757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124cc565b506000821415612543576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125596000848385611e8a565b505050565b6000818310612576576125718284612599565b612581565b6125808383612599565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546125bc90612f9b565b90600052602060002090601f0160209004810192826125de5760008555612625565b82601f106125f757805160ff1916838001178555612625565b82800160010185558215612625579182015b82811115612624578251825591602001919060010190612609565b5b5090506126329190612636565b5090565b5b8082111561264f576000816000905550600101612637565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61269c81612667565b81146126a757600080fd5b50565b6000813590506126b981612693565b92915050565b6000602082840312156126d5576126d461265d565b5b60006126e3848285016126aa565b91505092915050565b60008115159050919050565b612701816126ec565b82525050565b600060208201905061271c60008301846126f8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561275c578082015181840152602081019050612741565b8381111561276b576000848401525b50505050565b6000601f19601f8301169050919050565b600061278d82612722565b612797818561272d565b93506127a781856020860161273e565b6127b081612771565b840191505092915050565b600060208201905081810360008301526127d58184612782565b905092915050565b6000819050919050565b6127f0816127dd565b81146127fb57600080fd5b50565b60008135905061280d816127e7565b92915050565b6000602082840312156128295761282861265d565b5b6000612837848285016127fe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061286b82612840565b9050919050565b61287b81612860565b82525050565b60006020820190506128966000830184612872565b92915050565b6128a581612860565b81146128b057600080fd5b50565b6000813590506128c28161289c565b92915050565b600080604083850312156128df576128de61265d565b5b60006128ed858286016128b3565b92505060206128fe858286016127fe565b9150509250929050565b612911816127dd565b82525050565b600060208201905061292c6000830184612908565b92915050565b60008060006060848603121561294b5761294a61265d565b5b6000612959868287016128b3565b935050602061296a868287016128b3565b925050604061297b868287016127fe565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129aa576129a9612985565b5b8235905067ffffffffffffffff8111156129c7576129c661298a565b5b6020830191508360208202830111156129e3576129e261298f565b5b9250929050565b600080600060408486031215612a0357612a0261265d565b5b600084013567ffffffffffffffff811115612a2157612a20612662565b5b612a2d86828701612994565b93509350506020612a40868287016127fe565b9150509250925092565b6000819050919050565b612a5d81612a4a565b82525050565b6000602082019050612a786000830184612a54565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612abb82612771565b810181811067ffffffffffffffff82111715612ada57612ad9612a83565b5b80604052505050565b6000612aed612653565b9050612af98282612ab2565b919050565b600067ffffffffffffffff821115612b1957612b18612a83565b5b612b2282612771565b9050602081019050919050565b82818337600083830152505050565b6000612b51612b4c84612afe565b612ae3565b905082815260208101848484011115612b6d57612b6c612a7e565b5b612b78848285612b2f565b509392505050565b600082601f830112612b9557612b94612985565b5b8135612ba5848260208601612b3e565b91505092915050565b600060208284031215612bc457612bc361265d565b5b600082013567ffffffffffffffff811115612be257612be1612662565b5b612bee84828501612b80565b91505092915050565b600060208284031215612c0d57612c0c61265d565b5b6000612c1b848285016128b3565b91505092915050565b612c2d81612a4a565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b600060208284031215612c6657612c6561265d565b5b6000612c7484828501612c3b565b91505092915050565b612c86816126ec565b8114612c9157600080fd5b50565b600081359050612ca381612c7d565b92915050565b60008060408385031215612cc057612cbf61265d565b5b6000612cce858286016128b3565b9250506020612cdf85828601612c94565b9150509250929050565b600067ffffffffffffffff821115612d0457612d03612a83565b5b612d0d82612771565b9050602081019050919050565b6000612d2d612d2884612ce9565b612ae3565b905082815260208101848484011115612d4957612d48612a7e565b5b612d54848285612b2f565b509392505050565b600082601f830112612d7157612d70612985565b5b8135612d81848260208601612d1a565b91505092915050565b60008060008060808587031215612da457612da361265d565b5b6000612db2878288016128b3565b9450506020612dc3878288016128b3565b9350506040612dd4878288016127fe565b925050606085013567ffffffffffffffff811115612df557612df4612662565b5b612e0187828801612d5c565b91505092959194509250565b60008060408385031215612e2457612e2361265d565b5b6000612e32858286016128b3565b9250506020612e43858286016128b3565b9150509250929050565b600067ffffffffffffffff821115612e6857612e67612a83565b5b602082029050602081019050919050565b6000612e8c612e8784612e4d565b612ae3565b90508083825260208201905060208402830185811115612eaf57612eae61298f565b5b835b81811015612ed85780612ec488826128b3565b845260208401935050602081019050612eb1565b5050509392505050565b600082601f830112612ef757612ef6612985565b5b8135612f07848260208601612e79565b91505092915050565b60008060408385031215612f2757612f2661265d565b5b600083013567ffffffffffffffff811115612f4557612f44612662565b5b612f5185828601612ee2565b9250506020612f62858286016127fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb357607f821691505b60208210811415612fc757612fc6612f6c565b5b50919050565b7f436f6e74726163742069732063757272656e746c792070617573656400000000600082015250565b6000613003601c8361272d565b915061300e82612fcd565b602082019050919050565b6000602082019050818103600083015261303281612ff6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061306f601f8361272d565b915061307a82613039565b602082019050919050565b6000602082019050818103600083015261309e81613062565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130df826127dd565b91506130ea836127dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561311f5761311e6130a5565b5b828201905092915050565b6000613135826127dd565b9150613140836127dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613179576131786130a5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006131e960198361272d565b91506131f4826131b3565b602082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b600061325560178361272d565b91506132608261321f565b602082019050919050565b6000602082019050818103600083015261328481613248565b9050919050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b60006132c160108361272d565b91506132cc8261328b565b602082019050919050565b600060208201905081810360008301526132f0816132b4565b9050919050565b7f436f6e7472616374206973206e6f742063757272656e746c7920706175736564600082015250565b600061332d60208361272d565b9150613338826132f7565b602082019050919050565b6000602082019050818103600083015261335c81613320565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061339d826127dd565b91506133a8836127dd565b9250826133b8576133b7613363565b5b828204905092915050565b7f4d65726b6c6520726f6f74206973206e6f742073657400000000000000000000600082015250565b60006133f960168361272d565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b60008160601b9050919050565b60006134478261342f565b9050919050565b60006134598261343c565b9050919050565b61347161346c82612860565b61344e565b82525050565b60006134838284613460565b60148201915081905092915050565b7f496e76616c6964204d65726b6c652070726f6f66000000000000000000000000600082015250565b60006134c860148361272d565b91506134d382613492565b602082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b7f596f752063616e206f6e6c792073657420746865206261736520555249206f6e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061355a60228361272d565b9150613565826134fe565b604082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f596f752063616e206f6e6c7920676f20666f7277617264000000000000000000600082015250565b60006135c660178361272d565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613632601f8361272d565b915061363d826135fc565b602082019050919050565b6000602082019050818103600083015261366181613625565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461369581612f9b565b61369f8186613668565b945060018216600081146136ba57600181146136cb576136fe565b60ff198316865281860193506136fe565b6136d485613673565b60005b838110156136f6578154818901526001820191506020810190506136d7565b838801955050505b50505092915050565b600061371282612722565b61371c8185613668565b935061372c81856020860161273e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061376e600583613668565b915061377982613738565b600582019050919050565b60006137908285613688565b915061379c8284613707565b91506137a782613761565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061380f60268361272d565b915061381a826137b3565b604082019050919050565b6000602082019050818103600083015261383e81613802565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061387f826127dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b2576138b16130a5565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138f360208361272d565b91506138fe826138bd565b602082019050919050565b60006020820190508181036000830152613922816138e6565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061395082613929565b61395a8185613934565b935061396a81856020860161273e565b61397381612771565b840191505092915050565b60006080820190506139936000830187612872565b6139a06020830186612872565b6139ad6040830185612908565b81810360608301526139bf8184613945565b905095945050505050565b6000815190506139d981612693565b92915050565b6000602082840312156139f5576139f461265d565b5b6000613a03848285016139ca565b91505092915050565b6000613a17826127dd565b9150613a22836127dd565b925082821015613a3557613a346130a5565b5b828203905092915050565b6000613a4b826127dd565b9150613a56836127dd565b925082613a6657613a65613363565b5b82820690509291505056fea2646970667358221220d13a47c2f14ba18a0f9886100cab5170aa8055d76f5a19705294bf13a453b2ff64736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a082311161010257806397e87fdb11610095578063c87b56dd11610064578063c87b56dd1461061c578063e985e9c514610659578063f2fde38b14610696578063f74b5636146106bf576101d8565b806397e87fdb14610576578063a22cb4651461059f578063b187bd26146105c8578063b88d4fde146105f3576101d8565b80638456cb59116100d15780638456cb59146104e05780638ba4cc3c146104f75780638da5cb5b1461052057806395d89b411461054b576101d8565b806370a0823114610438578063714c539814610475578063715018a6146104a05780637cb64759146104b7576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461037e57806349590657146103a757806355f804b3146103d25780636352211e146103fb576101d8565b806323b872dd1461030b5780633ccfd60b146103345780633f4ba83a1461034b5780634233307d14610362576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780631249c58b146102ab57806318160ddd146102b55780631d3824ea146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906126bf565b6106e8565b6040516102119190612707565b60405180910390f35b34801561022657600080fd5b5061022f61077a565b60405161023c91906127bb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612813565b61080c565b6040516102799190612881565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128c8565b61088b565b005b6102b36109cf565b005b3480156102c157600080fd5b506102ca610bc3565b6040516102d79190612917565b60405180910390f35b3480156102ec57600080fd5b506102f5610bda565b6040516103029190612917565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612932565b610c03565b005b34801561034057600080fd5b50610349610f28565b005b34801561035757600080fd5b50610360610f80565b005b61037c600480360381019061037791906129ea565b610fa5565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612932565b6112bf565b005b3480156103b357600080fd5b506103bc6112df565b6040516103c99190612a63565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612bae565b6112e9565b005b34801561040757600080fd5b50610422600480360381019061041d9190612813565b61135c565b60405161042f9190612881565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612bf7565b61136e565b60405161046c9190612917565b60405180910390f35b34801561048157600080fd5b5061048a611427565b60405161049791906127bb565b60405180910390f35b3480156104ac57600080fd5b506104b56114b9565b005b3480156104c357600080fd5b506104de60048036038101906104d99190612c50565b6114cd565b005b3480156104ec57600080fd5b506104f56114df565b005b34801561050357600080fd5b5061051e600480360381019061051991906128c8565b611504565b005b34801561052c57600080fd5b50610535611616565b6040516105429190612881565b60405180910390f35b34801561055757600080fd5b50610560611640565b60405161056d91906127bb565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612813565b6116d2565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612ca9565b61177c565b005b3480156105d457600080fd5b506105dd6118f4565b6040516105ea9190612707565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612d8a565b61190b565b005b34801561062857600080fd5b50610643600480360381019061063e9190612813565b61197e565b60405161065091906127bb565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190612e0d565b6119fa565b60405161068d9190612707565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190612bf7565b611a8e565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190612f10565b611b12565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107735750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078990612f9b565b80601f01602080910402602001604051908101604052809291908181526020018280546107b590612f9b565b80156108025780601f106107d757610100808354040283529160200191610802565b820191906000526020600020905b8154815290600101906020018083116107e557829003601f168201915b5050505050905090565b600061081782611c6a565b61084d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108968261135c565b90508073ffffffffffffffffffffffffffffffffffffffff166108b7611cc9565b73ffffffffffffffffffffffffffffffffffffffff161461091a576108e3816108de611cc9565b6119fa565b610919576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900460ff1615610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690613019565b60405180910390fd5b60026009541415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613085565b60405180910390fd5b600260098190555060003390506000655af3107a40006001610a85610bc3565b610a8f91906130d4565b610a99919061312a565b905060016002811115610aaf57610aae613184565b5b600a60009054906101000a900460ff166002811115610ad157610ad0613184565b5b14610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b08906131ff565b60405180910390fd5b6127106001610b1e610bc3565b610b2891906130d4565b1115610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b609061326b565b60405180910390fd5b80341015610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906132d7565b60405180910390fd5b610bb7826001611cd1565b50506001600981905550565b6000610bcd611cef565b6001546000540303905090565b6000600a60009054906101000a900460ff166002811115610bfe57610bfd613184565b5b905090565b6000610c0e82611cf8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c75576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c8184611dc6565b91509150610c978187610c92611cc9565b611ded565b610ce357610cac86610ca7611cc9565b6119fa565b610ce2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d578686866001611e31565b8015610d6257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3085610e0c888887611e37565b7c020000000000000000000000000000000000000000000000000000000017611e5f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eb8576000600185019050600060046000838152602001908152602001600020541415610eb6576000548114610eb5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f208686866001611e8a565b505050505050565b610f30611e90565b610f38611616565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f7d573d6000803e3d6000fd5b50565b610f88611e90565b6000600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff16610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613343565b60405180910390fd5b6002600954141561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613085565b60405180910390fd5b600260098190555060003390506000655af3107a4000600260018561105f91906130d4565b8561106a919061312a565b6110749190613392565b8461107d610bc3565b611087919061312a565b61109191906130d4565b61109b919061312a565b90506000600b5414156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061340f565b60405180910390fd5b611157858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b548460405160200161113c9190613477565b60405160208183030381529060405280519060200120611f0e565b611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906134de565b60405180910390fd5b600160028111156111aa576111a9613184565b5b600a60009054906101000a900460ff1660028111156111cc576111cb613184565b5b1461120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906131ff565b60405180910390fd5b61271083611218610bc3565b61122291906130d4565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a9061326b565b60405180910390fd5b803410156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d906132d7565b60405180910390fd5b6112b08284611cd1565b50506001600981905550505050565b6112da8383836040518060200160405280600081525061190b565b505050565b6000600b54905090565b6112f1611e90565b6000600c805461130090612f9b565b905014611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990613570565b60405180910390fd5b80600c90805190602001906113589291906125b0565b5050565b600061136782611cf8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600c805461143690612f9b565b80601f016020809104026020016040519081016040528092919081815260200182805461146290612f9b565b80156114af5780601f10611484576101008083540402835291602001916114af565b820191906000526020600020905b81548152906001019060200180831161149257829003601f168201915b5050505050905090565b6114c1611e90565b6114cb6000611f25565b565b6114d5611e90565b80600b8190555050565b6114e7611e90565b6001600d60006101000a81548160ff021916908315150217905550565b61150c611e90565b600d60009054906101000a900460ff1661155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613343565b60405180910390fd5b600260095414156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613085565b60405180910390fd5b6002600981905550612710816115b5610bc3565b6115bf91906130d4565b1115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f79061326b565b60405180910390fd5b61160a8282611cd1565b60016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461164f90612f9b565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90612f9b565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b5050505050905090565b6116da611e90565b600a60009054906101000a900460ff1660028111156116fc576116fb613184565b5b811161173d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611734906135dc565b60405180910390fd5b8060028111156117505761174f613184565b5b600a60006101000a81548160ff0219169083600281111561177457611773613184565b5b021790555050565b611784611cc9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f6611cc9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a3611cc9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e89190612707565b60405180910390a35050565b6000600d60009054906101000a900460ff16905090565b611916848484610c03565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119785761194184848484611feb565b611977576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061198982611c6a565b6119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90613648565b60405180910390fd5b600c6119d38361213c565b6040516020016119e4929190613784565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a96611e90565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613825565b60405180910390fd5b611b0f81611f25565b50565b611b1a611e90565b600d60009054906101000a900460ff16611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613343565b60405180910390fd5b60026009541415611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613085565b60405180910390fd5b6002600981905550612710825182611bc7919061312a565b611bcf610bc3565b611bd991906130d4565b1115611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c119061326b565b60405180910390fd5b60005b8251811015611c5d57611c4a838281518110611c3c57611c3b613845565b5b602002602001015183611cd1565b8080611c5590613874565b915050611c1d565b5060016009819055505050565b600081611c75611cef565b11158015611c84575060005482105b8015611cc2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611ceb82826040518060200160405280600081525061229d565b5050565b60006001905090565b60008082905080611d07611cef565b11611d8f57600054811015611d8e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d8c575b6000811415611d82576004600083600190039350838152602001908152602001600020549050611d57565b8092505050611dc1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e4e86868461233a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e98612343565b73ffffffffffffffffffffffffffffffffffffffff16611eb6611616565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390613909565b60405180910390fd5b565b600082611f1b858461234b565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612011611cc9565b8786866040518563ffffffff1660e01b8152600401612033949392919061397e565b6020604051808303816000875af192505050801561206f57506040513d601f19601f8201168201806040525081019061206c91906139df565b60015b6120e9573d806000811461209f576040519150601f19603f3d011682016040523d82523d6000602084013e6120a4565b606091505b506000815114156120e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612184576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612298565b600082905060005b600082146121b657808061219f90613874565b915050600a826121af9190613392565b915061218c565b60008167ffffffffffffffff8111156121d2576121d1612a83565b5b6040519080825280601f01601f1916602001820160405280156122045781602001600182028036833780820191505090505b5090505b600085146122915760018261221d9190613a0c565b9150600a8561222c9190613a40565b603061223891906130d4565b60f81b81838151811061224e5761224d613845565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228a9190613392565b9450612208565b8093505050505b919050565b6122a783836123a1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461233557600080549050600083820390505b6122e76000868380600101945086611feb565b61231d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122d457816000541461233257600080fd5b50505b505050565b60009392505050565b600033905090565b60008082905060005b8451811015612396576123818286838151811061237457612373613845565b5b602002602001015161255e565b9150808061238e90613874565b915050612354565b508091505092915050565b60008054905060008214156123e2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ef6000848385611e31565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612466836124576000866000611e37565b61246085612589565b17611e5f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461250757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124cc565b506000821415612543576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125596000848385611e8a565b505050565b6000818310612576576125718284612599565b612581565b6125808383612599565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546125bc90612f9b565b90600052602060002090601f0160209004810192826125de5760008555612625565b82601f106125f757805160ff1916838001178555612625565b82800160010185558215612625579182015b82811115612624578251825591602001919060010190612609565b5b5090506126329190612636565b5090565b5b8082111561264f576000816000905550600101612637565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61269c81612667565b81146126a757600080fd5b50565b6000813590506126b981612693565b92915050565b6000602082840312156126d5576126d461265d565b5b60006126e3848285016126aa565b91505092915050565b60008115159050919050565b612701816126ec565b82525050565b600060208201905061271c60008301846126f8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561275c578082015181840152602081019050612741565b8381111561276b576000848401525b50505050565b6000601f19601f8301169050919050565b600061278d82612722565b612797818561272d565b93506127a781856020860161273e565b6127b081612771565b840191505092915050565b600060208201905081810360008301526127d58184612782565b905092915050565b6000819050919050565b6127f0816127dd565b81146127fb57600080fd5b50565b60008135905061280d816127e7565b92915050565b6000602082840312156128295761282861265d565b5b6000612837848285016127fe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061286b82612840565b9050919050565b61287b81612860565b82525050565b60006020820190506128966000830184612872565b92915050565b6128a581612860565b81146128b057600080fd5b50565b6000813590506128c28161289c565b92915050565b600080604083850312156128df576128de61265d565b5b60006128ed858286016128b3565b92505060206128fe858286016127fe565b9150509250929050565b612911816127dd565b82525050565b600060208201905061292c6000830184612908565b92915050565b60008060006060848603121561294b5761294a61265d565b5b6000612959868287016128b3565b935050602061296a868287016128b3565b925050604061297b868287016127fe565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129aa576129a9612985565b5b8235905067ffffffffffffffff8111156129c7576129c661298a565b5b6020830191508360208202830111156129e3576129e261298f565b5b9250929050565b600080600060408486031215612a0357612a0261265d565b5b600084013567ffffffffffffffff811115612a2157612a20612662565b5b612a2d86828701612994565b93509350506020612a40868287016127fe565b9150509250925092565b6000819050919050565b612a5d81612a4a565b82525050565b6000602082019050612a786000830184612a54565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612abb82612771565b810181811067ffffffffffffffff82111715612ada57612ad9612a83565b5b80604052505050565b6000612aed612653565b9050612af98282612ab2565b919050565b600067ffffffffffffffff821115612b1957612b18612a83565b5b612b2282612771565b9050602081019050919050565b82818337600083830152505050565b6000612b51612b4c84612afe565b612ae3565b905082815260208101848484011115612b6d57612b6c612a7e565b5b612b78848285612b2f565b509392505050565b600082601f830112612b9557612b94612985565b5b8135612ba5848260208601612b3e565b91505092915050565b600060208284031215612bc457612bc361265d565b5b600082013567ffffffffffffffff811115612be257612be1612662565b5b612bee84828501612b80565b91505092915050565b600060208284031215612c0d57612c0c61265d565b5b6000612c1b848285016128b3565b91505092915050565b612c2d81612a4a565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b600060208284031215612c6657612c6561265d565b5b6000612c7484828501612c3b565b91505092915050565b612c86816126ec565b8114612c9157600080fd5b50565b600081359050612ca381612c7d565b92915050565b60008060408385031215612cc057612cbf61265d565b5b6000612cce858286016128b3565b9250506020612cdf85828601612c94565b9150509250929050565b600067ffffffffffffffff821115612d0457612d03612a83565b5b612d0d82612771565b9050602081019050919050565b6000612d2d612d2884612ce9565b612ae3565b905082815260208101848484011115612d4957612d48612a7e565b5b612d54848285612b2f565b509392505050565b600082601f830112612d7157612d70612985565b5b8135612d81848260208601612d1a565b91505092915050565b60008060008060808587031215612da457612da361265d565b5b6000612db2878288016128b3565b9450506020612dc3878288016128b3565b9350506040612dd4878288016127fe565b925050606085013567ffffffffffffffff811115612df557612df4612662565b5b612e0187828801612d5c565b91505092959194509250565b60008060408385031215612e2457612e2361265d565b5b6000612e32858286016128b3565b9250506020612e43858286016128b3565b9150509250929050565b600067ffffffffffffffff821115612e6857612e67612a83565b5b602082029050602081019050919050565b6000612e8c612e8784612e4d565b612ae3565b90508083825260208201905060208402830185811115612eaf57612eae61298f565b5b835b81811015612ed85780612ec488826128b3565b845260208401935050602081019050612eb1565b5050509392505050565b600082601f830112612ef757612ef6612985565b5b8135612f07848260208601612e79565b91505092915050565b60008060408385031215612f2757612f2661265d565b5b600083013567ffffffffffffffff811115612f4557612f44612662565b5b612f5185828601612ee2565b9250506020612f62858286016127fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb357607f821691505b60208210811415612fc757612fc6612f6c565b5b50919050565b7f436f6e74726163742069732063757272656e746c792070617573656400000000600082015250565b6000613003601c8361272d565b915061300e82612fcd565b602082019050919050565b6000602082019050818103600083015261303281612ff6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061306f601f8361272d565b915061307a82613039565b602082019050919050565b6000602082019050818103600083015261309e81613062565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130df826127dd565b91506130ea836127dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561311f5761311e6130a5565b5b828201905092915050565b6000613135826127dd565b9150613140836127dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613179576131786130a5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006131e960198361272d565b91506131f4826131b3565b602082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b600061325560178361272d565b91506132608261321f565b602082019050919050565b6000602082019050818103600083015261328481613248565b9050919050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b60006132c160108361272d565b91506132cc8261328b565b602082019050919050565b600060208201905081810360008301526132f0816132b4565b9050919050565b7f436f6e7472616374206973206e6f742063757272656e746c7920706175736564600082015250565b600061332d60208361272d565b9150613338826132f7565b602082019050919050565b6000602082019050818103600083015261335c81613320565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061339d826127dd565b91506133a8836127dd565b9250826133b8576133b7613363565b5b828204905092915050565b7f4d65726b6c6520726f6f74206973206e6f742073657400000000000000000000600082015250565b60006133f960168361272d565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b60008160601b9050919050565b60006134478261342f565b9050919050565b60006134598261343c565b9050919050565b61347161346c82612860565b61344e565b82525050565b60006134838284613460565b60148201915081905092915050565b7f496e76616c6964204d65726b6c652070726f6f66000000000000000000000000600082015250565b60006134c860148361272d565b91506134d382613492565b602082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b7f596f752063616e206f6e6c792073657420746865206261736520555249206f6e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061355a60228361272d565b9150613565826134fe565b604082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f596f752063616e206f6e6c7920676f20666f7277617264000000000000000000600082015250565b60006135c660178361272d565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613632601f8361272d565b915061363d826135fc565b602082019050919050565b6000602082019050818103600083015261366181613625565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461369581612f9b565b61369f8186613668565b945060018216600081146136ba57600181146136cb576136fe565b60ff198316865281860193506136fe565b6136d485613673565b60005b838110156136f6578154818901526001820191506020810190506136d7565b838801955050505b50505092915050565b600061371282612722565b61371c8185613668565b935061372c81856020860161273e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061376e600583613668565b915061377982613738565b600582019050919050565b60006137908285613688565b915061379c8284613707565b91506137a782613761565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061380f60268361272d565b915061381a826137b3565b604082019050919050565b6000602082019050818103600083015261383e81613802565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061387f826127dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b2576138b16130a5565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138f360208361272d565b91506138fe826138bd565b602082019050919050565b60006020820190508181036000830152613922816138e6565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061395082613929565b61395a8185613934565b935061396a81856020860161273e565b61397381612771565b840191505092915050565b60006080820190506139936000830187612872565b6139a06020830186612872565b6139ad6040830185612908565b81810360608301526139bf8184613945565b905095945050505050565b6000815190506139d981612693565b92915050565b6000602082840312156139f5576139f461265d565b5b6000613a03848285016139ca565b91505092915050565b6000613a17826127dd565b9150613a22836127dd565b925082821015613a3557613a346130a5565b5b828203905092915050565b6000613a4b826127dd565b9150613a56836127dd565b925082613a6657613a65613363565b5b82820690509291505056fea2646970667358221220d13a47c2f14ba18a0f9886100cab5170aa8055d76f5a19705294bf13a453b2ff64736f6c634300080c0033
Deployed Bytecode Sourcemap
70894:4545:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36858:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37810:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44699:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44140:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71583;;;:::i;:::-;;33383:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74802:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48538:2995;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75201:106;;;;;;;;;;;;;:::i;:::-;;75014:71;;;;;;;;;;;;;:::i;:::-;;71991:918;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51629:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74165:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74266:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39300:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34567:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74495:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2905:103;;;;;;;;;;;;;:::i;:::-;;74051:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74938:68;;;;;;;;;;;;;:::i;:::-;;72917:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2257:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37986:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74596:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45307:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75093:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52412:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73661:352;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45804:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3163:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73229:408;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36858:689;36988:4;37332:10;37317:25;;:11;:25;;;;:102;;;;37409:10;37394:25;;:11;:25;;;;37317:102;:179;;;;37486:10;37471:25;;:11;:25;;;;37317:179;37297:199;;36858:689;;;:::o;37810:100::-;37864:13;37897:5;37890:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37810:100;:::o;44699:268::-;44820:7;44850:16;44858:7;44850;:16::i;:::-;44845:64;;44875:34;;;;;;;;;;;;;;44845:64;44929:15;:24;44945:7;44929:24;;;;;;;;;;;:30;;;;;;;;;;;;44922:37;;44699:268;;;:::o;44140:400::-;44221:13;44237:16;44245:7;44237;:16::i;:::-;44221:32;;44293:5;44270:28;;:19;:17;:19::i;:::-;:28;;;44266:175;;44318:44;44335:5;44342:19;:17;:19::i;:::-;44318:16;:44::i;:::-;44313:128;;44390:35;;;;;;;;;;;;;;44313:128;44266:175;44486:2;44453:15;:24;44469:7;44453:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44524:7;44520:2;44504:28;;44513:5;44504:28;;;;;;;;;;;;44210:330;44140:400;;:::o;71583:::-;71389:6;;;;;;;;;;;71388:7;71380:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1:::1;6173:7;;:19;;6165:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1;6306:7;:18;;;;71654:12:::2;71669:10;71654:25;;71690:13;71251:12;71723:1;71707:13;:11;:13::i;:::-;:17;;;;:::i;:::-;71706:31;;;;:::i;:::-;71690:47;;71771:9;71756:24;;;;;;;;:::i;:::-;;:11;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;71748:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;71202:5;71845:1;71829:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;71821:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;71920:5;71907:9;:18;;71899:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;71957:18;71967:4;71973:1;71957:9;:18::i;:::-;71643:340;;5531:1:::1;6485:7;:22;;;;71583:400::o:0;33383:323::-;33444:7;33672:15;:13;:15::i;:::-;33657:12;;33641:13;;:28;:46;33634:53;;33383:323;:::o;74802:104::-;74851:7;74886:11;;;;;;;;;;;74878:20;;;;;;;;:::i;:::-;;74871:27;;74802:104;:::o;48538:2995::-;48672:27;48702;48721:7;48702:18;:27::i;:::-;48672:57;;48787:4;48746:45;;48762:19;48746:45;;;48742:99;;48813:28;;;;;;;;;;;;;;48742:99;48869:27;48911:23;48948:35;48975:7;48948:26;:35::i;:::-;48854:129;;;;49097:134;49140:15;49174:4;49197:19;:17;:19::i;:::-;49097:24;:134::i;:::-;49078:287;;49261:43;49278:4;49284:19;:17;:19::i;:::-;49261:16;:43::i;:::-;49256:109;;49330:35;;;;;;;;;;;;;;49256:109;49078:287;49396:1;49382:16;;:2;:16;;;49378:52;;;49407:23;;;;;;;;;;;;;;49378:52;49443:43;49465:4;49471:2;49475:7;49484:1;49443:21;:43::i;:::-;49579:15;49576:160;;;49719:1;49698:19;49691:30;49576:160;50116:18;:24;50135:4;50116:24;;;;;;;;;;;;;;;;50114:26;;;;;;;;;;;;50185:18;:22;50204:2;50185:22;;;;;;;;;;;;;;;;50183:24;;;;;;;;;;;50507:167;50544:2;50614:45;50629:4;50635:2;50639:19;50614:14;:45::i;:::-;29782:8;50565:94;50507:18;:167::i;:::-;50478:17;:26;50496:7;50478:26;;;;;;;;;;;:196;;;;50845:1;29782:8;50794:19;:47;:52;50790:627;;;50867:19;50899:1;50889:7;:11;50867:33;;51056:1;51022:17;:30;51040:11;51022:30;;;;;;;;;;;;:35;51018:384;;;51160:13;;51145:11;:28;51141:242;;51340:19;51307:17;:30;51325:11;51307:30;;;;;;;;;;;:52;;;;51141:242;51018:384;50848:569;50790:627;51464:7;51460:2;51445:27;;51454:4;51445:27;;;;;;;;;;;;51483:42;51504:4;51510:2;51514:7;51523:1;51483:20;:42::i;:::-;48661:2872;;;48538:2995;;;:::o;75201:106::-;2143:13;:11;:13::i;:::-;75259:7:::1;:5;:7::i;:::-;75251:25;;:48;75277:21;75251:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;75201:106::o:0;75014:71::-;2143:13;:11;:13::i;:::-;75072:5:::1;75063:6;;:14;;;;;;;;;;;;;;;;;;75014:71::o:0;71991:918::-;71497:6;;;;;;;;;;;71489:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1:::1;6173:7;;:19;;6165:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1;6306:7;:18;;;;72157:12:::2;72172:10;72157:25;;72193:13;71251:12;72309:1;72290;72278:9;:13;;;;:::i;:::-;72265:9;:27;;;;:::i;:::-;72264:46;;;;:::i;:::-;72239:9;72210:13;:11;:13::i;:::-;:38;;;;:::i;:::-;:100;;;;:::i;:::-;72209:114;;;;:::i;:::-;72193:130;;72342:16;:10;;:16;;72334:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;72418:144;72455:11;;72418:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72485:10;;72541:4;72524:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;72514:33;;;;;;72418:18;:144::i;:::-;72396:214;;;;;;;;;;;;:::i;:::-;;;;;;;;;72644:9;72629:24;;;;;;;;:::i;:::-;;:11;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;72621:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;71202:5;72732:9;72716:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;72694:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;72838:5;72825:9;:18;;72817:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;72875:26;72885:4;72891:9;72875;:26::i;:::-;72146:763;;5531:1:::1;6485:7;:22;;;;71991:918:::0;;;:::o;51629:185::-;51767:39;51784:4;51790:2;51794:7;51767:39;;;;;;;;;;;;:16;:39::i;:::-;51629:185;;;:::o;74165:93::-;74213:7;74240:10;;74233:17;;74165:93;:::o;74266:221::-;2143:13;:11;:13::i;:::-;74387:1:::1;74368:7;74362:21;;;;;:::i;:::-;;;:26;74340:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;74471:8;74461:7;:18;;;;;;;;;;;;:::i;:::-;;74266:221:::0;:::o;39300:202::-;39417:7;39465:27;39484:7;39465:18;:27::i;:::-;39442:52;;39300:202;;;:::o;34567:283::-;34684:7;34730:1;34713:19;;:5;:19;;;34709:60;;;34741:28;;;;;;;;;;;;;;34709:60;28726:13;34787:18;:25;34806:5;34787:25;;;;;;;;;;;;;;;;:55;34780:62;;34567:283;;;:::o;74495:93::-;74540:13;74573:7;74566:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74495:93;:::o;2905:103::-;2143:13;:11;:13::i;:::-;2970:30:::1;2997:1;2970:18;:30::i;:::-;2905:103::o:0;74051:106::-;2143:13;:11;:13::i;:::-;74138:11:::1;74125:10;:24;;;;74051:106:::0;:::o;74938:68::-;2143:13;:11;:13::i;:::-;74994:4:::1;74985:6;;:13;;;;;;;;;;;;;;;;;;74938:68::o:0;72917:304::-;2143:13;:11;:13::i;:::-;71497:6:::1;;;;;;;;;;;71489:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1:::2;6173:7;;:19;;6165:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1;6306:7;:18;;;;71202:5:::3;73101:9;73085:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;73063:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;73186:27;73196:5;73203:9;73186;:27::i;:::-;5531:1:::2;6485:7;:22;;;;72917:304:::0;;:::o;2257:87::-;2303:7;2330:6;;;;;;;;;;;2323:13;;2257:87;:::o;37986:104::-;38042:13;38075:7;38068:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37986:104;:::o;74596:198::-;2143:13;:11;:13::i;:::-;74703:11:::1;;;;;;;;;;;74695:20;;;;;;;;:::i;:::-;;74680:12;:35;74672:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;74773:12;74768:18;;;;;;;;:::i;:::-;;74754:11;;:32;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;74596:198:::0;:::o;45307:340::-;45450:19;:17;:19::i;:::-;45438:31;;:8;:31;;;45434:61;;;45478:17;;;;;;;;;;;;;;45434:61;45560:8;45508:18;:39;45527:19;:17;:19::i;:::-;45508:39;;;;;;;;;;;;;;;:49;45548:8;45508:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45620:8;45584:55;;45599:19;:17;:19::i;:::-;45584:55;;;45630:8;45584:55;;;;;;:::i;:::-;;;;;;;;45307:340;;:::o;75093:81::-;75136:4;75160:6;;;;;;;;;;;75153:13;;75093:81;:::o;52412:399::-;52579:31;52592:4;52598:2;52602:7;52579:12;:31::i;:::-;52643:1;52625:2;:14;;;:19;52621:183;;52664:56;52695:4;52701:2;52705:7;52714:5;52664:30;:56::i;:::-;52659:145;;52748:40;;;;;;;;;;;;;;52659:145;52621:183;52412:399;;;;:::o;73661:352::-;73780:13;73819:17;73827:8;73819:7;:17::i;:::-;73811:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;73945:7;73954:26;73971:8;73954:16;:26::i;:::-;73928:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73883:122;;73661:352;;;:::o;45804:214::-;45946:4;45975:18;:25;45994:5;45975:25;;;;;;;;;;;;;;;:35;46001:8;45975:35;;;;;;;;;;;;;;;;;;;;;;;;;45968:42;;45804:214;;;;:::o;3163:238::-;2143:13;:11;:13::i;:::-;3286:1:::1;3266:22;;:8;:22;;;;3244:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3365:28;3384:8;3365:18;:28::i;:::-;3163:238:::0;:::o;73229:408::-;2143:13;:11;:13::i;:::-;71497:6:::1;;;;;;;;;;;71489:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1:::2;6173:7;;:19;;6165:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5575:1;6306:7;:18;;;;71202:5:::3;73439:6;:13;73427:9;:25;;;;:::i;:::-;73411:13;:11;:13::i;:::-;:41;;;;:::i;:::-;:55;;73389:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;73533:9;73528:102;73552:6;:13;73548:1;:17;73528:102;;;73587:31;73597:6;73604:1;73597:9;;;;;;;;:::i;:::-;;;;;;;;73608;73587;:31::i;:::-;73567:3;;;;;:::i;:::-;;;;73528:102;;;;5531:1:::2;6485:7;:22;;;;73229:408:::0;;:::o;46276:282::-;46341:4;46397:7;46378:15;:13;:15::i;:::-;:26;;:66;;;;;46431:13;;46421:7;:23;46378:66;:153;;;;;46530:1;29502:8;46482:17;:26;46500:7;46482:26;;;;;;;;;;;;:44;:49;46378:153;46358:173;;46276:282;;;:::o;68951:105::-;69011:7;69038:10;69031:17;;68951:105;:::o;62564:112::-;62641:27;62651:2;62655:8;62641:27;;;;;;;;;;;;:9;:27::i;:::-;62564:112;;:::o;75335:101::-;75400:7;75427:1;75420:8;;75335:101;:::o;40587:1307::-;40681:7;40706:12;40721:7;40706:22;;40789:4;40770:15;:13;:15::i;:::-;:23;40766:1061;;40823:13;;40816:4;:20;40812:1015;;;40861:14;40878:17;:23;40896:4;40878:23;;;;;;;;;;;;40861:40;;40995:1;29502:8;40967:6;:24;:29;40963:845;;;41632:113;41649:1;41639:6;:11;41632:113;;;41692:17;:25;41710:6;;;;;;;41692:25;;;;;;;;;;;;41683:34;;41632:113;;;41778:6;41771:13;;;;;;40963:845;40838:989;40812:1015;40766:1061;41855:31;;;;;;;;;;;;;;40587:1307;;;;:::o;47439:479::-;47541:27;47570:23;47611:38;47652:15;:24;47668:7;47652:24;;;;;;;;;;;47611:65;;47823:18;47800:41;;47880:19;47874:26;47855:45;;47785:126;47439:479;;;:::o;46667:659::-;46816:11;46981:16;46974:5;46970:28;46961:37;;47141:16;47130:9;47126:32;47113:45;;47291:15;47280:9;47277:30;47269:5;47258:9;47255:20;47252:56;47242:66;;46667:659;;;;;:::o;53473:159::-;;;;;:::o;68260:311::-;68395:7;68415:16;29906:3;68441:19;:41;;68415:68;;29906:3;68509:31;68520:4;68526:2;68530:9;68509:10;:31::i;:::-;68501:40;;:62;;68494:69;;;68260:311;;;;;:::o;42474:531::-;42581:14;42754:16;42747:5;42743:28;42734:37;;42966:5;42952:11;42927:23;42923:41;42920:52;42896:5;42875:112;42865:122;;42474:531;;;;:::o;54297:158::-;;;;;:::o;2422:132::-;2497:12;:10;:12::i;:::-;2486:23;;:7;:5;:7::i;:::-;:23;;;2478:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2422:132::o;10278:190::-;10403:4;10456;10427:25;10440:5;10447:4;10427:12;:25::i;:::-;:33;10420:40;;10278:190;;;;;:::o;3561:191::-;3635:16;3654:6;;;;;;;;;;;3635:25;;3680:8;3671:6;;:17;;;;;;;;;;;;;;;;;;3735:8;3704:40;;3725:8;3704:40;;;;;;;;;;;;3624:128;3561:191;:::o;54895:831::-;55058:4;55117:2;55092:45;;;55156:19;:17;:19::i;:::-;55194:4;55217:7;55243:5;55092:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55075:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55494:1;55477:6;:13;:18;55473:235;;;55523:40;;;;;;;;;;;;;;55473:235;55666:6;55660:13;55651:6;55647:2;55643:15;55636:38;55075:644;55363:54;;;55336:81;;;:6;:81;;;;55312:105;;;54895:831;;;;;;:::o;6956:723::-;7012:13;7242:1;7233:5;:10;7229:53;;;7260:10;;;;;;;;;;;;;;;;;;;;;7229:53;7292:12;7307:5;7292:20;;7323:14;7348:78;7363:1;7355:4;:9;7348:78;;7381:8;;;;;:::i;:::-;;;;7412:2;7404:10;;;;;:::i;:::-;;;7348:78;;;7436:19;7468:6;7458:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7436:39;;7486:154;7502:1;7493:5;:10;7486:154;;7530:1;7520:11;;;;;:::i;:::-;;;7597:2;7589:5;:10;;;;:::i;:::-;7576:2;:24;;;;:::i;:::-;7563:39;;7546:6;7553;7546:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7626:2;7617:11;;;;;:::i;:::-;;;7486:154;;;7664:6;7650:21;;;;;6956:723;;;;:::o;61600:880::-;61731:19;61737:2;61741:8;61731:5;:19::i;:::-;61810:1;61792:2;:14;;;:19;61788:674;;61832:11;61846:13;;61832:27;;61878:13;61900:8;61894:3;:14;61878:30;;61927:424;61984:205;62053:1;62086:2;62119:7;;;;;;62157:5;61984:30;:205::i;:::-;61953:358;;62247:40;;;;;;;;;;;;;;61953:358;62346:3;62338:5;:11;61927:424;;62433:3;62416:13;;:20;62412:34;;62438:8;;;62412:34;61813:649;;61788:674;61600:880;;;:::o;67961:147::-;68098:6;67961:147;;;;;:::o;781:98::-;834:7;861:10;854:17;;781:98;:::o;11145:328::-;11255:7;11280:20;11303:4;11280:27;;11323:9;11318:118;11342:5;:12;11338:1;:16;11318:118;;;11391:33;11401:12;11415:5;11421:1;11415:8;;;;;;;;:::i;:::-;;;;;;;;11391:9;:33::i;:::-;11376:48;;11356:3;;;;;:::i;:::-;;;;11318:118;;;;11453:12;11446:19;;;11145:328;;;;:::o;56188:2509::-;56261:20;56284:13;;56261:36;;56324:1;56312:8;:13;56308:44;;;56334:18;;;;;;;;;;;;;;56308:44;56365:61;56395:1;56399:2;56403:12;56417:8;56365:21;:61::i;:::-;56943:1;28864:2;56913:1;:26;;56912:32;56883:8;:62;56840:18;:22;56859:2;56840:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;57222:160;57259:2;57334:33;57357:1;57361:2;57365:1;57334:14;:33::i;:::-;57280:30;57301:8;57280:20;:30::i;:::-;:87;57222:18;:160::i;:::-;57188:17;:31;57206:12;57188:31;;;;;;;;;;;:194;;;;57399:16;57430:11;57459:8;57444:12;:23;57430:37;;57714:16;57710:2;57706:25;57694:37;;58086:12;58046:8;58005:1;57943:25;57884:1;57823;57796:335;58211:1;58197:12;58193:20;58151:346;58252:3;58243:7;58240:16;58151:346;;58470:7;58460:8;58457:1;58430:25;58427:1;58424;58419:59;58305:1;58296:7;58292:15;58281:26;;58151:346;;;58155:77;58542:1;58530:8;:13;58526:45;;;58552:19;;;;;;;;;;;;;;58526:45;58604:3;58588:13;:19;;;;56614:2005;;58629:60;58658:1;58662:2;58666:12;58680:8;58629:20;:60::i;:::-;56250:2447;56188:2509;;:::o;17626:149::-;17689:7;17720:1;17716;:5;:51;;17747:20;17762:1;17765;17747:14;:20::i;:::-;17716:51;;;17724:20;17739:1;17742;17724:14;:20::i;:::-;17716:51;17709:58;;17626:149;;;;:::o;43107:356::-;43204:14;43442:1;43432:8;43429:15;43403:24;43399:46;43389:56;;43107:356;;;:::o;17783:300::-;17878:13;17990:1;17984:4;17977:15;18019:1;18013:4;18006:15;18060:4;18054;18044:21;18035:30;;17783:300;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6301:568;6374:8;6384:6;6434:3;6427:4;6419:6;6415:17;6411:27;6401:122;;6442:79;;:::i;:::-;6401:122;6555:6;6542:20;6532:30;;6585:18;6577:6;6574:30;6571:117;;;6607:79;;:::i;:::-;6571:117;6721:4;6713:6;6709:17;6697:29;;6775:3;6767:4;6759:6;6755:17;6745:8;6741:32;6738:41;6735:128;;;6782:79;;:::i;:::-;6735:128;6301:568;;;;;:::o;6875:704::-;6970:6;6978;6986;7035:2;7023:9;7014:7;7010:23;7006:32;7003:119;;;7041:79;;:::i;:::-;7003:119;7189:1;7178:9;7174:17;7161:31;7219:18;7211:6;7208:30;7205:117;;;7241:79;;:::i;:::-;7205:117;7354:80;7426:7;7417:6;7406:9;7402:22;7354:80;:::i;:::-;7336:98;;;;7132:312;7483:2;7509:53;7554:7;7545:6;7534:9;7530:22;7509:53;:::i;:::-;7499:63;;7454:118;6875:704;;;;;:::o;7585:77::-;7622:7;7651:5;7640:16;;7585:77;;;:::o;7668:118::-;7755:24;7773:5;7755:24;:::i;:::-;7750:3;7743:37;7668:118;;:::o;7792:222::-;7885:4;7923:2;7912:9;7908:18;7900:26;;7936:71;8004:1;7993:9;7989:17;7980:6;7936:71;:::i;:::-;7792:222;;;;:::o;8020:117::-;8129:1;8126;8119:12;8143:180;8191:77;8188:1;8181:88;8288:4;8285:1;8278:15;8312:4;8309:1;8302:15;8329:281;8412:27;8434:4;8412:27;:::i;:::-;8404:6;8400:40;8542:6;8530:10;8527:22;8506:18;8494:10;8491:34;8488:62;8485:88;;;8553:18;;:::i;:::-;8485:88;8593:10;8589:2;8582:22;8372:238;8329:281;;:::o;8616:129::-;8650:6;8677:20;;:::i;:::-;8667:30;;8706:33;8734:4;8726:6;8706:33;:::i;:::-;8616:129;;;:::o;8751:308::-;8813:4;8903:18;8895:6;8892:30;8889:56;;;8925:18;;:::i;:::-;8889:56;8963:29;8985:6;8963:29;:::i;:::-;8955:37;;9047:4;9041;9037:15;9029:23;;8751:308;;;:::o;9065:154::-;9149:6;9144:3;9139;9126:30;9211:1;9202:6;9197:3;9193:16;9186:27;9065:154;;;:::o;9225:412::-;9303:5;9328:66;9344:49;9386:6;9344:49;:::i;:::-;9328:66;:::i;:::-;9319:75;;9417:6;9410:5;9403:21;9455:4;9448:5;9444:16;9493:3;9484:6;9479:3;9475:16;9472:25;9469:112;;;9500:79;;:::i;:::-;9469:112;9590:41;9624:6;9619:3;9614;9590:41;:::i;:::-;9309:328;9225:412;;;;;:::o;9657:340::-;9713:5;9762:3;9755:4;9747:6;9743:17;9739:27;9729:122;;9770:79;;:::i;:::-;9729:122;9887:6;9874:20;9912:79;9987:3;9979:6;9972:4;9964:6;9960:17;9912:79;:::i;:::-;9903:88;;9719:278;9657:340;;;;:::o;10003:509::-;10072:6;10121:2;10109:9;10100:7;10096:23;10092:32;10089:119;;;10127:79;;:::i;:::-;10089:119;10275:1;10264:9;10260:17;10247:31;10305:18;10297:6;10294:30;10291:117;;;10327:79;;:::i;:::-;10291:117;10432:63;10487:7;10478:6;10467:9;10463:22;10432:63;:::i;:::-;10422:73;;10218:287;10003:509;;;;:::o;10518:329::-;10577:6;10626:2;10614:9;10605:7;10601:23;10597:32;10594:119;;;10632:79;;:::i;:::-;10594:119;10752:1;10777:53;10822:7;10813:6;10802:9;10798:22;10777:53;:::i;:::-;10767:63;;10723:117;10518:329;;;;:::o;10853:122::-;10926:24;10944:5;10926:24;:::i;:::-;10919:5;10916:35;10906:63;;10965:1;10962;10955:12;10906:63;10853:122;:::o;10981:139::-;11027:5;11065:6;11052:20;11043:29;;11081:33;11108:5;11081:33;:::i;:::-;10981:139;;;;:::o;11126:329::-;11185:6;11234:2;11222:9;11213:7;11209:23;11205:32;11202:119;;;11240:79;;:::i;:::-;11202:119;11360:1;11385:53;11430:7;11421:6;11410:9;11406:22;11385:53;:::i;:::-;11375:63;;11331:117;11126:329;;;;:::o;11461:116::-;11531:21;11546:5;11531:21;:::i;:::-;11524:5;11521:32;11511:60;;11567:1;11564;11557:12;11511:60;11461:116;:::o;11583:133::-;11626:5;11664:6;11651:20;11642:29;;11680:30;11704:5;11680:30;:::i;:::-;11583:133;;;;:::o;11722:468::-;11787:6;11795;11844:2;11832:9;11823:7;11819:23;11815:32;11812:119;;;11850:79;;:::i;:::-;11812:119;11970:1;11995:53;12040:7;12031:6;12020:9;12016:22;11995:53;:::i;:::-;11985:63;;11941:117;12097:2;12123:50;12165:7;12156:6;12145:9;12141:22;12123:50;:::i;:::-;12113:60;;12068:115;11722:468;;;;;:::o;12196:307::-;12257:4;12347:18;12339:6;12336:30;12333:56;;;12369:18;;:::i;:::-;12333:56;12407:29;12429:6;12407:29;:::i;:::-;12399:37;;12491:4;12485;12481:15;12473:23;;12196:307;;;:::o;12509:410::-;12586:5;12611:65;12627:48;12668:6;12627:48;:::i;:::-;12611:65;:::i;:::-;12602:74;;12699:6;12692:5;12685:21;12737:4;12730:5;12726:16;12775:3;12766:6;12761:3;12757:16;12754:25;12751:112;;;12782:79;;:::i;:::-;12751:112;12872:41;12906:6;12901:3;12896;12872:41;:::i;:::-;12592:327;12509:410;;;;;:::o;12938:338::-;12993:5;13042:3;13035:4;13027:6;13023:17;13019:27;13009:122;;13050:79;;:::i;:::-;13009:122;13167:6;13154:20;13192:78;13266:3;13258:6;13251:4;13243:6;13239:17;13192:78;:::i;:::-;13183:87;;12999:277;12938:338;;;;:::o;13282:943::-;13377:6;13385;13393;13401;13450:3;13438:9;13429:7;13425:23;13421:33;13418:120;;;13457:79;;:::i;:::-;13418:120;13577:1;13602:53;13647:7;13638:6;13627:9;13623:22;13602:53;:::i;:::-;13592:63;;13548:117;13704:2;13730:53;13775:7;13766:6;13755:9;13751:22;13730:53;:::i;:::-;13720:63;;13675:118;13832:2;13858:53;13903:7;13894:6;13883:9;13879:22;13858:53;:::i;:::-;13848:63;;13803:118;13988:2;13977:9;13973:18;13960:32;14019:18;14011:6;14008:30;14005:117;;;14041:79;;:::i;:::-;14005:117;14146:62;14200:7;14191:6;14180:9;14176:22;14146:62;:::i;:::-;14136:72;;13931:287;13282:943;;;;;;;:::o;14231:474::-;14299:6;14307;14356:2;14344:9;14335:7;14331:23;14327:32;14324:119;;;14362:79;;:::i;:::-;14324:119;14482:1;14507:53;14552:7;14543:6;14532:9;14528:22;14507:53;:::i;:::-;14497:63;;14453:117;14609:2;14635:53;14680:7;14671:6;14660:9;14656:22;14635:53;:::i;:::-;14625:63;;14580:118;14231:474;;;;;:::o;14711:311::-;14788:4;14878:18;14870:6;14867:30;14864:56;;;14900:18;;:::i;:::-;14864:56;14950:4;14942:6;14938:17;14930:25;;15010:4;15004;15000:15;14992:23;;14711:311;;;:::o;15045:710::-;15141:5;15166:81;15182:64;15239:6;15182:64;:::i;:::-;15166:81;:::i;:::-;15157:90;;15267:5;15296:6;15289:5;15282:21;15330:4;15323:5;15319:16;15312:23;;15383:4;15375:6;15371:17;15363:6;15359:30;15412:3;15404:6;15401:15;15398:122;;;15431:79;;:::i;:::-;15398:122;15546:6;15529:220;15563:6;15558:3;15555:15;15529:220;;;15638:3;15667:37;15700:3;15688:10;15667:37;:::i;:::-;15662:3;15655:50;15734:4;15729:3;15725:14;15718:21;;15605:144;15589:4;15584:3;15580:14;15573:21;;15529:220;;;15533:21;15147:608;;15045:710;;;;;:::o;15778:370::-;15849:5;15898:3;15891:4;15883:6;15879:17;15875:27;15865:122;;15906:79;;:::i;:::-;15865:122;16023:6;16010:20;16048:94;16138:3;16130:6;16123:4;16115:6;16111:17;16048:94;:::i;:::-;16039:103;;15855:293;15778:370;;;;:::o;16154:684::-;16247:6;16255;16304:2;16292:9;16283:7;16279:23;16275:32;16272:119;;;16310:79;;:::i;:::-;16272:119;16458:1;16447:9;16443:17;16430:31;16488:18;16480:6;16477:30;16474:117;;;16510:79;;:::i;:::-;16474:117;16615:78;16685:7;16676:6;16665:9;16661:22;16615:78;:::i;:::-;16605:88;;16401:302;16742:2;16768:53;16813:7;16804:6;16793:9;16789:22;16768:53;:::i;:::-;16758:63;;16713:118;16154:684;;;;;:::o;16844:180::-;16892:77;16889:1;16882:88;16989:4;16986:1;16979:15;17013:4;17010:1;17003:15;17030:320;17074:6;17111:1;17105:4;17101:12;17091:22;;17158:1;17152:4;17148:12;17179:18;17169:81;;17235:4;17227:6;17223:17;17213:27;;17169:81;17297:2;17289:6;17286:14;17266:18;17263:38;17260:84;;;17316:18;;:::i;:::-;17260:84;17081:269;17030:320;;;:::o;17356:178::-;17496:30;17492:1;17484:6;17480:14;17473:54;17356:178;:::o;17540:366::-;17682:3;17703:67;17767:2;17762:3;17703:67;:::i;:::-;17696:74;;17779:93;17868:3;17779:93;:::i;:::-;17897:2;17892:3;17888:12;17881:19;;17540:366;;;:::o;17912:419::-;18078:4;18116:2;18105:9;18101:18;18093:26;;18165:9;18159:4;18155:20;18151:1;18140:9;18136:17;18129:47;18193:131;18319:4;18193:131;:::i;:::-;18185:139;;17912:419;;;:::o;18337:181::-;18477:33;18473:1;18465:6;18461:14;18454:57;18337:181;:::o;18524:366::-;18666:3;18687:67;18751:2;18746:3;18687:67;:::i;:::-;18680:74;;18763:93;18852:3;18763:93;:::i;:::-;18881:2;18876:3;18872:12;18865:19;;18524:366;;;:::o;18896:419::-;19062:4;19100:2;19089:9;19085:18;19077:26;;19149:9;19143:4;19139:20;19135:1;19124:9;19120:17;19113:47;19177:131;19303:4;19177:131;:::i;:::-;19169:139;;18896:419;;;:::o;19321:180::-;19369:77;19366:1;19359:88;19466:4;19463:1;19456:15;19490:4;19487:1;19480:15;19507:305;19547:3;19566:20;19584:1;19566:20;:::i;:::-;19561:25;;19600:20;19618:1;19600:20;:::i;:::-;19595:25;;19754:1;19686:66;19682:74;19679:1;19676:81;19673:107;;;19760:18;;:::i;:::-;19673:107;19804:1;19801;19797:9;19790:16;;19507:305;;;;:::o;19818:348::-;19858:7;19881:20;19899:1;19881:20;:::i;:::-;19876:25;;19915:20;19933:1;19915:20;:::i;:::-;19910:25;;20103:1;20035:66;20031:74;20028:1;20025:81;20020:1;20013:9;20006:17;20002:105;19999:131;;;20110:18;;:::i;:::-;19999:131;20158:1;20155;20151:9;20140:20;;19818:348;;;;:::o;20172:180::-;20220:77;20217:1;20210:88;20317:4;20314:1;20307:15;20341:4;20338:1;20331:15;20358:175;20498:27;20494:1;20486:6;20482:14;20475:51;20358:175;:::o;20539:366::-;20681:3;20702:67;20766:2;20761:3;20702:67;:::i;:::-;20695:74;;20778:93;20867:3;20778:93;:::i;:::-;20896:2;20891:3;20887:12;20880:19;;20539:366;;;:::o;20911:419::-;21077:4;21115:2;21104:9;21100:18;21092:26;;21164:9;21158:4;21154:20;21150:1;21139:9;21135:17;21128:47;21192:131;21318:4;21192:131;:::i;:::-;21184:139;;20911:419;;;:::o;21336:173::-;21476:25;21472:1;21464:6;21460:14;21453:49;21336:173;:::o;21515:366::-;21657:3;21678:67;21742:2;21737:3;21678:67;:::i;:::-;21671:74;;21754:93;21843:3;21754:93;:::i;:::-;21872:2;21867:3;21863:12;21856:19;;21515:366;;;:::o;21887:419::-;22053:4;22091:2;22080:9;22076:18;22068:26;;22140:9;22134:4;22130:20;22126:1;22115:9;22111:17;22104:47;22168:131;22294:4;22168:131;:::i;:::-;22160:139;;21887:419;;;:::o;22312:166::-;22452:18;22448:1;22440:6;22436:14;22429:42;22312:166;:::o;22484:366::-;22626:3;22647:67;22711:2;22706:3;22647:67;:::i;:::-;22640:74;;22723:93;22812:3;22723:93;:::i;:::-;22841:2;22836:3;22832:12;22825:19;;22484:366;;;:::o;22856:419::-;23022:4;23060:2;23049:9;23045:18;23037:26;;23109:9;23103:4;23099:20;23095:1;23084:9;23080:17;23073:47;23137:131;23263:4;23137:131;:::i;:::-;23129:139;;22856:419;;;:::o;23281:182::-;23421:34;23417:1;23409:6;23405:14;23398:58;23281:182;:::o;23469:366::-;23611:3;23632:67;23696:2;23691:3;23632:67;:::i;:::-;23625:74;;23708:93;23797:3;23708:93;:::i;:::-;23826:2;23821:3;23817:12;23810:19;;23469:366;;;:::o;23841:419::-;24007:4;24045:2;24034:9;24030:18;24022:26;;24094:9;24088:4;24084:20;24080:1;24069:9;24065:17;24058:47;24122:131;24248:4;24122:131;:::i;:::-;24114:139;;23841:419;;;:::o;24266:180::-;24314:77;24311:1;24304:88;24411:4;24408:1;24401:15;24435:4;24432:1;24425:15;24452:185;24492:1;24509:20;24527:1;24509:20;:::i;:::-;24504:25;;24543:20;24561:1;24543:20;:::i;:::-;24538:25;;24582:1;24572:35;;24587:18;;:::i;:::-;24572:35;24629:1;24626;24622:9;24617:14;;24452:185;;;;:::o;24643:172::-;24783:24;24779:1;24771:6;24767:14;24760:48;24643:172;:::o;24821:366::-;24963:3;24984:67;25048:2;25043:3;24984:67;:::i;:::-;24977:74;;25060:93;25149:3;25060:93;:::i;:::-;25178:2;25173:3;25169:12;25162:19;;24821:366;;;:::o;25193:419::-;25359:4;25397:2;25386:9;25382:18;25374:26;;25446:9;25440:4;25436:20;25432:1;25421:9;25417:17;25410:47;25474:131;25600:4;25474:131;:::i;:::-;25466:139;;25193:419;;;:::o;25618:94::-;25651:8;25699:5;25695:2;25691:14;25670:35;;25618:94;;;:::o;25718:::-;25757:7;25786:20;25800:5;25786:20;:::i;:::-;25775:31;;25718:94;;;:::o;25818:100::-;25857:7;25886:26;25906:5;25886:26;:::i;:::-;25875:37;;25818:100;;;:::o;25924:157::-;26029:45;26049:24;26067:5;26049:24;:::i;:::-;26029:45;:::i;:::-;26024:3;26017:58;25924:157;;:::o;26087:256::-;26199:3;26214:75;26285:3;26276:6;26214:75;:::i;:::-;26314:2;26309:3;26305:12;26298:19;;26334:3;26327:10;;26087:256;;;;:::o;26349:170::-;26489:22;26485:1;26477:6;26473:14;26466:46;26349:170;:::o;26525:366::-;26667:3;26688:67;26752:2;26747:3;26688:67;:::i;:::-;26681:74;;26764:93;26853:3;26764:93;:::i;:::-;26882:2;26877:3;26873:12;26866:19;;26525:366;;;:::o;26897:419::-;27063:4;27101:2;27090:9;27086:18;27078:26;;27150:9;27144:4;27140:20;27136:1;27125:9;27121:17;27114:47;27178:131;27304:4;27178:131;:::i;:::-;27170:139;;26897:419;;;:::o;27322:221::-;27462:34;27458:1;27450:6;27446:14;27439:58;27531:4;27526:2;27518:6;27514:15;27507:29;27322:221;:::o;27549:366::-;27691:3;27712:67;27776:2;27771:3;27712:67;:::i;:::-;27705:74;;27788:93;27877:3;27788:93;:::i;:::-;27906:2;27901:3;27897:12;27890:19;;27549:366;;;:::o;27921:419::-;28087:4;28125:2;28114:9;28110:18;28102:26;;28174:9;28168:4;28164:20;28160:1;28149:9;28145:17;28138:47;28202:131;28328:4;28202:131;:::i;:::-;28194:139;;27921:419;;;:::o;28346:173::-;28486:25;28482:1;28474:6;28470:14;28463:49;28346:173;:::o;28525:366::-;28667:3;28688:67;28752:2;28747:3;28688:67;:::i;:::-;28681:74;;28764:93;28853:3;28764:93;:::i;:::-;28882:2;28877:3;28873:12;28866:19;;28525:366;;;:::o;28897:419::-;29063:4;29101:2;29090:9;29086:18;29078:26;;29150:9;29144:4;29140:20;29136:1;29125:9;29121:17;29114:47;29178:131;29304:4;29178:131;:::i;:::-;29170:139;;28897:419;;;:::o;29322:181::-;29462:33;29458:1;29450:6;29446:14;29439:57;29322:181;:::o;29509:366::-;29651:3;29672:67;29736:2;29731:3;29672:67;:::i;:::-;29665:74;;29748:93;29837:3;29748:93;:::i;:::-;29866:2;29861:3;29857:12;29850:19;;29509:366;;;:::o;29881:419::-;30047:4;30085:2;30074:9;30070:18;30062:26;;30134:9;30128:4;30124:20;30120:1;30109:9;30105:17;30098:47;30162:131;30288:4;30162:131;:::i;:::-;30154:139;;29881:419;;;:::o;30306:148::-;30408:11;30445:3;30430:18;;30306:148;;;;:::o;30460:141::-;30509:4;30532:3;30524:11;;30555:3;30552:1;30545:14;30589:4;30586:1;30576:18;30568:26;;30460:141;;;:::o;30631:845::-;30734:3;30771:5;30765:12;30800:36;30826:9;30800:36;:::i;:::-;30852:89;30934:6;30929:3;30852:89;:::i;:::-;30845:96;;30972:1;30961:9;30957:17;30988:1;30983:137;;;;31134:1;31129:341;;;;30950:520;;30983:137;31067:4;31063:9;31052;31048:25;31043:3;31036:38;31103:6;31098:3;31094:16;31087:23;;30983:137;;31129:341;31196:38;31228:5;31196:38;:::i;:::-;31256:1;31270:154;31284:6;31281:1;31278:13;31270:154;;;31358:7;31352:14;31348:1;31343:3;31339:11;31332:35;31408:1;31399:7;31395:15;31384:26;;31306:4;31303:1;31299:12;31294:17;;31270:154;;;31453:6;31448:3;31444:16;31437:23;;31136:334;;30950:520;;30738:738;;30631:845;;;;:::o;31482:377::-;31588:3;31616:39;31649:5;31616:39;:::i;:::-;31671:89;31753:6;31748:3;31671:89;:::i;:::-;31664:96;;31769:52;31814:6;31809:3;31802:4;31795:5;31791:16;31769:52;:::i;:::-;31846:6;31841:3;31837:16;31830:23;;31592:267;31482:377;;;;:::o;31865:155::-;32005:7;32001:1;31993:6;31989:14;31982:31;31865:155;:::o;32026:400::-;32186:3;32207:84;32289:1;32284:3;32207:84;:::i;:::-;32200:91;;32300:93;32389:3;32300:93;:::i;:::-;32418:1;32413:3;32409:11;32402:18;;32026:400;;;:::o;32432:695::-;32710:3;32732:92;32820:3;32811:6;32732:92;:::i;:::-;32725:99;;32841:95;32932:3;32923:6;32841:95;:::i;:::-;32834:102;;32953:148;33097:3;32953:148;:::i;:::-;32946:155;;33118:3;33111:10;;32432:695;;;;;:::o;33133:225::-;33273:34;33269:1;33261:6;33257:14;33250:58;33342:8;33337:2;33329:6;33325:15;33318:33;33133:225;:::o;33364:366::-;33506:3;33527:67;33591:2;33586:3;33527:67;:::i;:::-;33520:74;;33603:93;33692:3;33603:93;:::i;:::-;33721:2;33716:3;33712:12;33705:19;;33364:366;;;:::o;33736:419::-;33902:4;33940:2;33929:9;33925:18;33917:26;;33989:9;33983:4;33979:20;33975:1;33964:9;33960:17;33953:47;34017:131;34143:4;34017:131;:::i;:::-;34009:139;;33736:419;;;:::o;34161:180::-;34209:77;34206:1;34199:88;34306:4;34303:1;34296:15;34330:4;34327:1;34320:15;34347:233;34386:3;34409:24;34427:5;34409:24;:::i;:::-;34400:33;;34455:66;34448:5;34445:77;34442:103;;;34525:18;;:::i;:::-;34442:103;34572:1;34565:5;34561:13;34554:20;;34347:233;;;:::o;34586:182::-;34726:34;34722:1;34714:6;34710:14;34703:58;34586:182;:::o;34774:366::-;34916:3;34937:67;35001:2;34996:3;34937:67;:::i;:::-;34930:74;;35013:93;35102:3;35013:93;:::i;:::-;35131:2;35126:3;35122:12;35115:19;;34774:366;;;:::o;35146:419::-;35312:4;35350:2;35339:9;35335:18;35327:26;;35399:9;35393:4;35389:20;35385:1;35374:9;35370:17;35363:47;35427:131;35553:4;35427:131;:::i;:::-;35419:139;;35146:419;;;:::o;35571:98::-;35622:6;35656:5;35650:12;35640:22;;35571:98;;;:::o;35675:168::-;35758:11;35792:6;35787:3;35780:19;35832:4;35827:3;35823:14;35808:29;;35675:168;;;;:::o;35849:360::-;35935:3;35963:38;35995:5;35963:38;:::i;:::-;36017:70;36080:6;36075:3;36017:70;:::i;:::-;36010:77;;36096:52;36141:6;36136:3;36129:4;36122:5;36118:16;36096:52;:::i;:::-;36173:29;36195:6;36173:29;:::i;:::-;36168:3;36164:39;36157:46;;35939:270;35849:360;;;;:::o;36215:640::-;36410:4;36448:3;36437:9;36433:19;36425:27;;36462:71;36530:1;36519:9;36515:17;36506:6;36462:71;:::i;:::-;36543:72;36611:2;36600:9;36596:18;36587:6;36543:72;:::i;:::-;36625;36693:2;36682:9;36678:18;36669:6;36625:72;:::i;:::-;36744:9;36738:4;36734:20;36729:2;36718:9;36714:18;36707:48;36772:76;36843:4;36834:6;36772:76;:::i;:::-;36764:84;;36215:640;;;;;;;:::o;36861:141::-;36917:5;36948:6;36942:13;36933:22;;36964:32;36990:5;36964:32;:::i;:::-;36861:141;;;;:::o;37008:349::-;37077:6;37126:2;37114:9;37105:7;37101:23;37097:32;37094:119;;;37132:79;;:::i;:::-;37094:119;37252:1;37277:63;37332:7;37323:6;37312:9;37308:22;37277:63;:::i;:::-;37267:73;;37223:127;37008:349;;;;:::o;37363:191::-;37403:4;37423:20;37441:1;37423:20;:::i;:::-;37418:25;;37457:20;37475:1;37457:20;:::i;:::-;37452:25;;37496:1;37493;37490:8;37487:34;;;37501:18;;:::i;:::-;37487:34;37546:1;37543;37539:9;37531:17;;37363:191;;;;:::o;37560:176::-;37592:1;37609:20;37627:1;37609:20;:::i;:::-;37604:25;;37643:20;37661:1;37643:20;:::i;:::-;37638:25;;37682:1;37672:35;;37687:18;;:::i;:::-;37672:35;37728:1;37725;37721:9;37716:14;;37560:176;;;;:::o
Swarm Source
ipfs://d13a47c2f14ba18a0f9886100cab5170aa8055d76f5a19705294bf13a453b2ff
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,374.69 | 0.0307 | $103.6 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.