Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 234 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 21666405 | 12 hrs ago | IN | 0 ETH | 0.00306163 | ||||
Safe Transfer Fr... | 21579070 | 12 days ago | IN | 0 ETH | 0.00026813 | ||||
Safe Transfer Fr... | 21579059 | 12 days ago | IN | 0 ETH | 0.00026755 | ||||
Safe Transfer Fr... | 21543363 | 17 days ago | IN | 0 ETH | 0.00063494 | ||||
Safe Transfer Fr... | 21414423 | 35 days ago | IN | 0 ETH | 0.00085594 | ||||
Safe Transfer Fr... | 21392029 | 38 days ago | IN | 0 ETH | 0.00120102 | ||||
Safe Transfer Fr... | 21389183 | 39 days ago | IN | 0 ETH | 0.00139324 | ||||
Dev Mint | 21377865 | 40 days ago | IN | 0 ETH | 0.00098405 | ||||
Safe Transfer Fr... | 21323484 | 48 days ago | IN | 0 ETH | 0.00296334 | ||||
Safe Transfer Fr... | 21320823 | 48 days ago | IN | 0 ETH | 0.00077336 | ||||
Safe Transfer Fr... | 21320821 | 48 days ago | IN | 0 ETH | 0.0010722 | ||||
Safe Transfer Fr... | 21320818 | 48 days ago | IN | 0 ETH | 0.00100844 | ||||
Dev Mint | 21285312 | 53 days ago | IN | 0 ETH | 0.00128192 | ||||
Dev Mint | 21278422 | 54 days ago | IN | 0 ETH | 0.00118085 | ||||
Safe Transfer Fr... | 20842852 | 115 days ago | IN | 0 ETH | 0.00127868 | ||||
Dev Mint | 20820094 | 118 days ago | IN | 0 ETH | 0.00229486 | ||||
Safe Transfer Fr... | 20539296 | 157 days ago | IN | 0 ETH | 0.00007079 | ||||
Safe Transfer Fr... | 20517684 | 160 days ago | IN | 0 ETH | 0.00009189 | ||||
Safe Transfer Fr... | 20482574 | 165 days ago | IN | 0 ETH | 0.0001988 | ||||
Set Approval For... | 20440011 | 171 days ago | IN | 0 ETH | 0.00018153 | ||||
Safe Transfer Fr... | 20340133 | 185 days ago | IN | 0 ETH | 0.00038662 | ||||
Safe Transfer Fr... | 20275460 | 194 days ago | IN | 0 ETH | 0.00019651 | ||||
Set Approval For... | 20270305 | 195 days ago | IN | 0 ETH | 0.00039214 | ||||
Safe Transfer Fr... | 20190767 | 206 days ago | IN | 0 ETH | 0.00061593 | ||||
Safe Transfer Fr... | 20111895 | 217 days ago | IN | 0 ETH | 0.00095645 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17813078 | 539 days ago | 15.345 ETH |
Loading...
Loading
Contract Name:
Booster
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-21 */ // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.17; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: operator-filter-registry/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: operator-filter-registry/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * 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. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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 sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _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}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721ABurnable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721ABurnable. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: erc721a/contracts/extensions/ERC721ABurnable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721ABurnable. * * @dev ERC721A token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: contracts/Booster.sol //SPDX-License-Identifier: MIT /************************************* * * * developed by brandneo GmbH * * https://brandneo.de * * * **************************************/ pragma solidity ^0.8.17; contract Booster is ERC721A, ERC721ABurnable, ERC721AQueryable, Ownable, DefaultOperatorFilterer { enum ContractStatus { Sale, Paused, Public } string public baseURI; bytes32 public merkleRoot; address public ballerContract; ContractStatus public status = ContractStatus.Paused; uint256 public maxSupply = 1993; uint256 public batchSupply = 502; uint256 public price = 0.099 ether; uint256 public publicAllowedQuantity = 3; address public payoutWallet = 0x560a249eDd3f784cFDaf05945dB20dB674429ab0; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier callerIsBallerContract() { require(msg.sender == ballerContract, "The caller is not the baller contract"); _; } constructor(string memory contractBaseURI) ERC721A ("MOONCOURT BOOSTER", "BOOSTER") { baseURI = contractBaseURI; } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } function totalMinted() public view returns (uint256) { return _totalMinted(); } function isWalletWhitelisted(address account, uint256 allowedQuantity, bytes32[] calldata proof) public view returns (bool) { return MerkleProof.verify(proof, merkleRoot, generateMerkleLeaf(account, allowedQuantity)); } function generateMerkleLeaf(address account, uint256 allowedQuantity) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account, allowedQuantity)); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setBatchSupply(uint256 _supply) external onlyOwner { batchSupply = _supply; } function setPublicAllowedQuantity(uint256 _quantity) external onlyOwner { publicAllowedQuantity = _quantity; } function setContractStatus(ContractStatus _status) external onlyOwner { status = _status; } function mint(uint256 quantity, uint256 allowedQuantity, bytes32[] calldata proof) external payable callerIsUser { require(status == ContractStatus.Sale, "Sale not available"); require(msg.value >= price * quantity, "Not enough ETH sent"); require(_totalMinted() + quantity <= batchSupply, "Currently not enough supply"); require(_totalMinted() + quantity <= maxSupply, "Not enough supply"); require(isWalletWhitelisted(msg.sender, allowedQuantity, proof), "Wallet verification failed"); require(_numberMinted(msg.sender) + quantity <= allowedQuantity, "Exceeds allowed wallet quantity"); _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable callerIsUser { require(status == ContractStatus.Public, "Public sale not available"); require(msg.value >= price * quantity, "Not enough ETH sent"); require(_totalMinted() + quantity <= batchSupply, "Currently not enough supply"); require(_totalMinted() + quantity <= maxSupply, "Not enough supply"); require(_numberMinted(msg.sender) + quantity <= publicAllowedQuantity, "Exceeds allowed wallet quantity"); _safeMint(msg.sender, quantity); } function devMint(uint256 quantity) external onlyOwner { require(_totalMinted() + quantity <= maxSupply, "Not enough supply"); _safeMint(msg.sender, quantity); } function getQuantityMintedForAddress(address account) external view returns (uint256) { return _numberMinted(account); } function setBallerContract(address _ballerContract) external onlyOwner { ballerContract = _ballerContract; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setPayoutWallet(address _wallet) external onlyOwner { payoutWallet = _wallet; } function burn(uint256 tokenId) public override callerIsBallerContract { _burn(tokenId, false); } function withdraw() external onlyOwner { uint256 amount = address(this).balance; address owner = payable(payoutWallet); bool success; (success,) = owner.call{value : (amount)}(""); require(success, "Transaction Unsuccessful"); } /* Overrides */ function _baseURI() internal view override(ERC721A) returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function setApprovalForAll(address operator, bool approved) public virtual override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address to, uint256 tokenId) public payable virtual override(ERC721A, IERC721A) onlyAllowedOperatorApproval(to) { super.approve(to, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable virtual override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable virtual override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public payable virtual override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, _data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"contractBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ballerContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getQuantityMintedForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"allowedQuantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWalletWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"allowedQuantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","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":"payoutWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAllowedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ballerContract","type":"address"}],"name":"setBallerContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setBatchSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Booster.ContractStatus","name":"_status","type":"uint8"}],"name":"setContractStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setPayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setPublicAllowedQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum Booster.ContractStatus","name":"","type":"uint8"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600b60146101000a81548160ff021916908360028111156200002d576200002c6200049d565b5b02179055506107c9600c556101f6600d5567015fb7f9b8c38000600e556003600f5573560a249edd3f784cfdaf05945db20db674429ab0601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000b157600080fd5b506040516200572a3803806200572a8339818101604052810190620000d791906200065f565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601181526020017f4d4f4f4e434f55525420424f4f535445520000000000000000000000000000008152506040518060400160405280600781526020017f424f4f535445520000000000000000000000000000000000000000000000000081525081600290816200016b9190620008fb565b5080600390816200017d9190620008fb565b506200018e620003c660201b60201c565b6000819055505050620001b6620001aa620003cf60201b60201c565b620003d760201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003ab57801562000271576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200023792919062000a27565b600060405180830381600087803b1580156200025257600080fd5b505af115801562000267573d6000803e3d6000fd5b50505050620003aa565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200032b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002f192919062000a27565b600060405180830381600087803b1580156200030c57600080fd5b505af115801562000321573d6000803e3d6000fd5b50505050620003a9565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000374919062000a54565b600060405180830381600087803b1580156200038f57600080fd5b505af1158015620003a4573d6000803e3d6000fd5b505050505b5b5b50508060099081620003be9190620008fb565b505062000a71565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200053582620004ea565b810181811067ffffffffffffffff82111715620005575762000556620004fb565b5b80604052505050565b60006200056c620004cc565b90506200057a82826200052a565b919050565b600067ffffffffffffffff8211156200059d576200059c620004fb565b5b620005a882620004ea565b9050602081019050919050565b60005b83811015620005d5578082015181840152602081019050620005b8565b60008484015250505050565b6000620005f8620005f2846200057f565b62000560565b905082815260208101848484011115620006175762000616620004e5565b5b62000624848285620005b5565b509392505050565b600082601f830112620006445762000643620004e0565b5b815162000656848260208601620005e1565b91505092915050565b600060208284031215620006785762000677620004d6565b5b600082015167ffffffffffffffff811115620006995762000698620004db565b5b620006a7848285016200062c565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070357607f821691505b602082108103620007195762000718620006bb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000744565b6200078f868362000744565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007dc620007d6620007d084620007a7565b620007b1565b620007a7565b9050919050565b6000819050919050565b620007f883620007bb565b620008106200080782620007e3565b84845462000751565b825550505050565b600090565b6200082762000818565b62000834818484620007ed565b505050565b5b818110156200085c57620008506000826200081d565b6001810190506200083a565b5050565b601f821115620008ab5762000875816200071f565b620008808462000734565b8101602085101562000890578190505b620008a86200089f8562000734565b83018262000839565b50505b505050565b600082821c905092915050565b6000620008d060001984600802620008b0565b1980831691505092915050565b6000620008eb8383620008bd565b9150826002028217905092915050565b6200090682620006b0565b67ffffffffffffffff811115620009225762000921620004fb565b5b6200092e8254620006ea565b6200093b82828562000860565b600060209050601f8311600181146200097357600084156200095e578287015190505b6200096a8582620008dd565b865550620009da565b601f19841662000983866200071f565b60005b82811015620009ad5784890151825560018201915060208501945060208101905062000986565b86831015620009cd5784890151620009c9601f891682620008bd565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a0f82620009e2565b9050919050565b62000a218162000a02565b82525050565b600060408201905062000a3e600083018562000a16565b62000a4d602083018462000a16565b9392505050565b600060208201905062000a6b600083018462000a16565b92915050565b614ca98062000a816000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a57806399a2557a116100c1578063c23dc68f1161007a578063c23dc68f14610989578063c87b56dd146109c6578063d5abeb0114610a03578063e6d37b8814610a2e578063e985e9c514610a4a578063f2fde38b14610a8757610288565b806399a2557a14610874578063a035b1fe146108b1578063a22cb465146108dc578063a2309ff814610905578063b324044e14610930578063b88d4fde1461096d57610288565b80637cb64759116101135780637cb64759146107645780638462151c1461078d5780638488bb4e146107ca5780638da5cb5b146107f557806391b7f5ed1461082057806395d89b411461084957610288565b80636352211e146106545780636b8f9c43146106915780636c0360eb146106ba57806370a08231146106e5578063715018a6146107225780637c59aa351461073957610288565b80632db11544116101fe57806342842e0e116101b757806342842e0e1461055557806342966c681461057157806351f02e8a1461059a578063536ebc60146105c357806355f804b3146105ee5780635bbb21771461061757610288565b80632db115441461047a5780632eb4a7ab146104965780632fc5a4cf146104c1578063375a069a146104ea5780633ccfd60b1461051357806341f434341461052a57610288565b80630a5dda72116102505780630a5dda721461037957806311e6ad7b146103b657806311f706ec146103df57806318160ddd14610408578063200d2ed21461043357806323b872dd1461045e57610288565b806301ffc9a71461028d57806306af692d146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613368565b610ab0565b6040516102c191906133b0565b60405180910390f35b3480156102d657600080fd5b506102df610b42565b6040516102ec91906133e4565b60405180910390f35b34801561030157600080fd5b5061030a610b48565b604051610317919061348f565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906134dd565b610bda565b604051610354919061354b565b60405180910390f35b61037760048036038101906103729190613592565b610c59565b005b34801561038557600080fd5b506103a0600480360381019061039b91906135d2565b610c72565b6040516103ad91906133e4565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906134dd565b610c84565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613624565b610c96565b005b34801561041457600080fd5b5061041d610ccb565b60405161042a91906133e4565b60405180910390f35b34801561043f57600080fd5b50610448610ce2565b60405161045591906136c8565b60405180910390f35b610478600480360381019061047391906136e3565b610cf5565b005b610494600480360381019061048f91906134dd565b610d44565b005b3480156104a257600080fd5b506104ab610f8a565b6040516104b8919061374f565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e391906135d2565b610f90565b005b3480156104f657600080fd5b50610511600480360381019061050c91906134dd565b610fdc565b005b34801561051f57600080fd5b50610528611048565b005b34801561053657600080fd5b5061053f61112f565b60405161054c91906137c9565b60405180910390f35b61056f600480360381019061056a91906136e3565b611141565b005b34801561057d57600080fd5b50610598600480360381019061059391906134dd565b611190565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906134dd565b61122e565b005b3480156105cf57600080fd5b506105d8611240565b6040516105e591906133e4565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190613919565b611246565b005b34801561062357600080fd5b5061063e600480360381019061063991906139c2565b611261565b60405161064b9190613b72565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906134dd565b611324565b604051610688919061354b565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906135d2565b611336565b005b3480156106c657600080fd5b506106cf611382565b6040516106dc919061348f565b60405180910390f35b3480156106f157600080fd5b5061070c600480360381019061070791906135d2565b611410565b60405161071991906133e4565b60405180910390f35b34801561072e57600080fd5b506107376114c8565b005b34801561074557600080fd5b5061074e6114dc565b60405161075b919061354b565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190613bc0565b611502565b005b34801561079957600080fd5b506107b460048036038101906107af91906135d2565b611514565b6040516107c19190613cab565b60405180910390f35b3480156107d657600080fd5b506107df611657565b6040516107ec919061354b565b60405180910390f35b34801561080157600080fd5b5061080a61167d565b604051610817919061354b565b60405180910390f35b34801561082c57600080fd5b50610847600480360381019061084291906134dd565b6116a7565b005b34801561085557600080fd5b5061085e6116b9565b60405161086b919061348f565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613ccd565b61174b565b6040516108a89190613cab565b60405180910390f35b3480156108bd57600080fd5b506108c6611957565b6040516108d391906133e4565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190613d4c565b61195d565b005b34801561091157600080fd5b5061091a611976565b60405161092791906133e4565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613de2565b611985565b60405161096491906133b0565b60405180910390f35b61098760048036038101906109829190613ef7565b6119e8565b005b34801561099557600080fd5b506109b060048036038101906109ab91906134dd565b611a39565b6040516109bd9190613fcf565b60405180910390f35b3480156109d257600080fd5b506109ed60048036038101906109e891906134dd565b611aa3565b6040516109fa919061348f565b60405180910390f35b348015610a0f57600080fd5b50610a18611b41565b604051610a2591906133e4565b60405180910390f35b610a486004803603810190610a439190613fea565b611b47565b005b348015610a5657600080fd5b50610a716004803603810190610a6c919061405e565b611dda565b604051610a7e91906133b0565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa991906135d2565b611e6e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b606060028054610b57906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b83906140cd565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b6000610be582611ef1565b610c1b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c6381611f50565b610c6d838361204d565b505050565b6000610c7d82612191565b9050919050565b610c8c6121e8565b80600d8190555050565b610c9e6121e8565b80600b60146101000a81548160ff02191690836002811115610cc357610cc2613651565b5b021790555050565b6000610cd5612266565b6001546000540303905090565b600b60149054906101000a900460ff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d3357610d3233611f50565b5b610d3e84848461226f565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da99061414a565b60405180910390fd5b600280811115610dc557610dc4613651565b5b600b60149054906101000a900460ff166002811115610de757610de6613651565b5b14610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e906141b6565b60405180910390fd5b80600e54610e359190614205565b341015610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90614293565b60405180910390fd5b600d5481610e83612591565b610e8d91906142b3565b1115610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590614333565b60405180910390fd5b600c5481610eda612591565b610ee491906142b3565b1115610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c9061439f565b60405180910390fd5b600f5481610f3233612191565b610f3c91906142b3565b1115610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061440b565b60405180910390fd5b610f8733826125a4565b50565b600a5481565b610f986121e8565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610fe46121e8565b600c5481610ff0612591565b610ffa91906142b3565b111561103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061439f565b60405180910390fd5b61104533826125a4565b50565b6110506121e8565b60004790506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff16836040516110a29061445c565b60006040518083038185875af1925050503d80600081146110df576040519150601f19603f3d011682016040523d82523d6000602084013e6110e4565b606091505b5050809150508061112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906144bd565b60405180910390fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461117f5761117e33611f50565b5b61118a8484846125c2565b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112179061454f565b60405180910390fd5b61122b8160006125e2565b50565b6112366121e8565b80600f8190555050565b600f5481565b61124e6121e8565b806009908161125d9190614711565b5050565b6060600083839050905060008167ffffffffffffffff811115611287576112866137ee565b5b6040519080825280602002602001820160405280156112c057816020015b6112ad6132ad565b8152602001906001900390816112a55790505b50905060005b828114611318576112ef8686838181106112e3576112e26147e3565b5b90506020020135611a39565b828281518110611302576113016147e3565b5b60200260200101819052508060010190506112c6565b50809250505092915050565b600061132f82612834565b9050919050565b61133e6121e8565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6009805461138f906140cd565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb906140cd565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611477576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114d06121e8565b6114da6000612900565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61150a6121e8565b80600a8190555050565b6060600080600061152485611410565b905060008167ffffffffffffffff811115611542576115416137ee565b5b6040519080825280602002602001820160405280156115705781602001602082028036833780820191505090505b50905061157b6132ad565b6000611585612266565b90505b83861461164957611598816129c6565b9150816040015161163e57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115e357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361163d57808387806001019850815181106116305761162f6147e3565b5b6020026020010181815250505b5b806001019050611588565b508195505050505050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116af6121e8565b80600e8190555050565b6060600380546116c8906140cd565b80601f01602080910402602001604051908101604052809291908181526020018280546116f4906140cd565b80156117415780601f1061171657610100808354040283529160200191611741565b820191906000526020600020905b81548152906001019060200180831161172457829003601f168201915b5050505050905090565b6060818310611786576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117916129f1565b905061179b612266565b8510156117ad576117aa612266565b94505b808411156117b9578093505b60006117c487611410565b9050848610156117e75760008686039050818110156117e1578091505b506117ec565b600090505b60008167ffffffffffffffff811115611808576118076137ee565b5b6040519080825280602002602001820160405280156118365781602001602082028036833780820191505090505b5090506000820361184d5780945050505050611950565b600061185888611a39565b90506000816040015161186d57816000015190505b60008990505b8881141580156118835750848714155b1561194257611891816129c6565b9250826040015161193757600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146118dc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119365780848880600101995081518110611929576119286147e3565b5b6020026020010181815250505b5b806001019050611873565b508583528296505050505050505b9392505050565b600e5481565b8161196781611f50565b61197183836129fa565b505050565b6000611980612591565b905090565b60006119de838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a546119d98888612b05565b612b38565b9050949350505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a2657611a2533611f50565b5b611a3285858585612b4f565b5050505050565b611a416132ad565b611a496132ad565b611a51612266565b831080611a655750611a616129f1565b8310155b15611a735780915050611a9e565b611a7c836129c6565b9050806040015115611a915780915050611a9e565b611a9a83612bc2565b9150505b919050565b6060611aae82611ef1565b611ae4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611aee612be2565b90506000815103611b0e5760405180602001604052806000815250611b39565b80611b1884612c74565b604051602001611b2992919061484e565b6040516020818303038152906040525b915050919050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac9061414a565b60405180910390fd5b60006002811115611bc957611bc8613651565b5b600b60149054906101000a900460ff166002811115611beb57611bea613651565b5b14611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c22906148be565b60405180910390fd5b83600e54611c399190614205565b341015611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290614293565b60405180910390fd5b600d5484611c87612591565b611c9191906142b3565b1115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614333565b60405180910390fd5b600c5484611cde612591565b611ce891906142b3565b1115611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d209061439f565b60405180910390fd5b611d3533848484611985565b611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b9061492a565b60405180910390fd5b8284611d7f33612191565b611d8991906142b3565b1115611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc19061440b565b60405180910390fd5b611dd433856125a4565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e766121e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc906149bc565b60405180910390fd5b611eee81612900565b50565b600081611efc612266565b11158015611f0b575060005482105b8015611f49575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561204a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611fc79291906149dc565b602060405180830381865afa158015611fe4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120089190614a1a565b61204957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612040919061354b565b60405180910390fd5b5b50565b600061205882611324565b90508073ffffffffffffffffffffffffffffffffffffffff16612079612cc4565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576120a5816120a0612cc4565b611dda565b6120db576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121f0612ccc565b73ffffffffffffffffffffffffffffffffffffffff1661220e61167d565b73ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b90614a93565b60405180910390fd5b565b60006001905090565b600061227a82612834565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122e1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806122ed84612cd4565b9150915061230381876122fe612cc4565b612cfb565b61234f5761231886612313612cc4565b611dda565b61234e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c28686866001612d3f565b80156123cd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061249b85612477888887612d45565b7c020000000000000000000000000000000000000000000000000000000017612d6d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612521576000600185019050600060046000838152602001908152602001600020540361251f57600054811461251e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125898686866001612d98565b505050505050565b600061259b612266565b60005403905090565b6125be828260405180602001604052806000815250612d9e565b5050565b6125dd838383604051806020016040528060008152506119e8565b505050565b60006125ed83612834565b9050600081905060008061260086612cd4565b9150915084156126695761261c8184612617612cc4565b612cfb565b612668576126318361262c612cc4565b611dda565b612667576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612677836000886001612d3f565b801561268257600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061272a836126e785600088612d45565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612d6d565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036127b057600060018701905060006004600083815260200190815260200160002054036127ae5760005481146127ad578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281a836000886001612d98565b600160008154809291906001019190505550505050505050565b60008082905080612843612266565b116128c9576000548110156128c85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036128c6575b600081036128bc576004600083600190039350838152602001908152602001600020549050612892565b80925050506128fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ce6132ad565b6129ea6004600084815260200190815260200160002054612e3b565b9050919050565b60008054905090565b8060076000612a07612cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ab4612cc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612af991906133b0565b60405180910390a35050565b60008282604051602001612b1a929190614b1c565b60405160208183030381529060405280519060200120905092915050565b600082612b458584612ef1565b1490509392505050565b612b5a848484610cf5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612bbc57612b8584848484612f47565b612bbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612bca6132ad565b612bdb612bd683612834565b612e3b565b9050919050565b606060098054612bf1906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1d906140cd565b8015612c6a5780601f10612c3f57610100808354040283529160200191612c6a565b820191906000526020600020905b815481529060010190602001808311612c4d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612caf57600184039350600a81066030018453600a8104905080612c8d575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d5c868684613097565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612da883836130a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e3657600080549050600083820390505b612de86000868380600101945086612f47565b612e1e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612dd5578160005414612e3357600080fd5b50505b505050565b612e436132ad565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612f3c57612f2782868381518110612f1a57612f196147e3565b5b602002602001015161325b565b91508080612f3490614b48565b915050612efa565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6d612cc4565b8786866040518563ffffffff1660e01b8152600401612f8f9493929190614be5565b6020604051808303816000875af1925050508015612fcb57506040513d601f19601f82011682018060405250810190612fc89190614c46565b60015b613044573d8060008114612ffb576040519150601f19603f3d011682016040523d82523d6000602084013e613000565b606091505b50600081510361303c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036130e0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130ed6000848385612d3f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613164836131556000866000612d45565b61315e85613286565b17612d6d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461320557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506131ca565b5060008203613240576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506132566000848385612d98565b505050565b60008183106132735761326e8284613296565b61327e565b61327d8383613296565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61334581613310565b811461335057600080fd5b50565b6000813590506133628161333c565b92915050565b60006020828403121561337e5761337d613306565b5b600061338c84828501613353565b91505092915050565b60008115159050919050565b6133aa81613395565b82525050565b60006020820190506133c560008301846133a1565b92915050565b6000819050919050565b6133de816133cb565b82525050565b60006020820190506133f960008301846133d5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561343957808201518184015260208101905061341e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613461826133ff565b61346b818561340a565b935061347b81856020860161341b565b61348481613445565b840191505092915050565b600060208201905081810360008301526134a98184613456565b905092915050565b6134ba816133cb565b81146134c557600080fd5b50565b6000813590506134d7816134b1565b92915050565b6000602082840312156134f3576134f2613306565b5b6000613501848285016134c8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135358261350a565b9050919050565b6135458161352a565b82525050565b6000602082019050613560600083018461353c565b92915050565b61356f8161352a565b811461357a57600080fd5b50565b60008135905061358c81613566565b92915050565b600080604083850312156135a9576135a8613306565b5b60006135b78582860161357d565b92505060206135c8858286016134c8565b9150509250929050565b6000602082840312156135e8576135e7613306565b5b60006135f68482850161357d565b91505092915050565b6003811061360c57600080fd5b50565b60008135905061361e816135ff565b92915050565b60006020828403121561363a57613639613306565b5b60006136488482850161360f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061369157613690613651565b5b50565b60008190506136a282613680565b919050565b60006136b282613694565b9050919050565b6136c2816136a7565b82525050565b60006020820190506136dd60008301846136b9565b92915050565b6000806000606084860312156136fc576136fb613306565b5b600061370a8682870161357d565b935050602061371b8682870161357d565b925050604061372c868287016134c8565b9150509250925092565b6000819050919050565b61374981613736565b82525050565b60006020820190506137646000830184613740565b92915050565b6000819050919050565b600061378f61378a6137858461350a565b61376a565b61350a565b9050919050565b60006137a182613774565b9050919050565b60006137b382613796565b9050919050565b6137c3816137a8565b82525050565b60006020820190506137de60008301846137ba565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382682613445565b810181811067ffffffffffffffff82111715613845576138446137ee565b5b80604052505050565b60006138586132fc565b9050613864828261381d565b919050565b600067ffffffffffffffff821115613884576138836137ee565b5b61388d82613445565b9050602081019050919050565b82818337600083830152505050565b60006138bc6138b784613869565b61384e565b9050828152602081018484840111156138d8576138d76137e9565b5b6138e384828561389a565b509392505050565b600082601f830112613900576138ff6137e4565b5b81356139108482602086016138a9565b91505092915050565b60006020828403121561392f5761392e613306565b5b600082013567ffffffffffffffff81111561394d5761394c61330b565b5b613959848285016138eb565b91505092915050565b600080fd5b600080fd5b60008083601f840112613982576139816137e4565b5b8235905067ffffffffffffffff81111561399f5761399e613962565b5b6020830191508360208202830111156139bb576139ba613967565b5b9250929050565b600080602083850312156139d9576139d8613306565b5b600083013567ffffffffffffffff8111156139f7576139f661330b565b5b613a038582860161396c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a448161352a565b82525050565b600067ffffffffffffffff82169050919050565b613a6781613a4a565b82525050565b613a7681613395565b82525050565b600062ffffff82169050919050565b613a9481613a7c565b82525050565b608082016000820151613ab06000850182613a3b565b506020820151613ac36020850182613a5e565b506040820151613ad66040850182613a6d565b506060820151613ae96060850182613a8b565b50505050565b6000613afb8383613a9a565b60808301905092915050565b6000602082019050919050565b6000613b1f82613a0f565b613b298185613a1a565b9350613b3483613a2b565b8060005b83811015613b65578151613b4c8882613aef565b9750613b5783613b07565b925050600181019050613b38565b5085935050505092915050565b60006020820190508181036000830152613b8c8184613b14565b905092915050565b613b9d81613736565b8114613ba857600080fd5b50565b600081359050613bba81613b94565b92915050565b600060208284031215613bd657613bd5613306565b5b6000613be484828501613bab565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c22816133cb565b82525050565b6000613c348383613c19565b60208301905092915050565b6000602082019050919050565b6000613c5882613bed565b613c628185613bf8565b9350613c6d83613c09565b8060005b83811015613c9e578151613c858882613c28565b9750613c9083613c40565b925050600181019050613c71565b5085935050505092915050565b60006020820190508181036000830152613cc58184613c4d565b905092915050565b600080600060608486031215613ce657613ce5613306565b5b6000613cf48682870161357d565b9350506020613d05868287016134c8565b9250506040613d16868287016134c8565b9150509250925092565b613d2981613395565b8114613d3457600080fd5b50565b600081359050613d4681613d20565b92915050565b60008060408385031215613d6357613d62613306565b5b6000613d718582860161357d565b9250506020613d8285828601613d37565b9150509250929050565b60008083601f840112613da257613da16137e4565b5b8235905067ffffffffffffffff811115613dbf57613dbe613962565b5b602083019150836020820283011115613ddb57613dda613967565b5b9250929050565b60008060008060608587031215613dfc57613dfb613306565b5b6000613e0a8782880161357d565b9450506020613e1b878288016134c8565b935050604085013567ffffffffffffffff811115613e3c57613e3b61330b565b5b613e4887828801613d8c565b925092505092959194509250565b600067ffffffffffffffff821115613e7157613e706137ee565b5b613e7a82613445565b9050602081019050919050565b6000613e9a613e9584613e56565b61384e565b905082815260208101848484011115613eb657613eb56137e9565b5b613ec184828561389a565b509392505050565b600082601f830112613ede57613edd6137e4565b5b8135613eee848260208601613e87565b91505092915050565b60008060008060808587031215613f1157613f10613306565b5b6000613f1f8782880161357d565b9450506020613f308782880161357d565b9350506040613f41878288016134c8565b925050606085013567ffffffffffffffff811115613f6257613f6161330b565b5b613f6e87828801613ec9565b91505092959194509250565b608082016000820151613f906000850182613a3b565b506020820151613fa36020850182613a5e565b506040820151613fb66040850182613a6d565b506060820151613fc96060850182613a8b565b50505050565b6000608082019050613fe46000830184613f7a565b92915050565b6000806000806060858703121561400457614003613306565b5b6000614012878288016134c8565b9450506020614023878288016134c8565b935050604085013567ffffffffffffffff8111156140445761404361330b565b5b61405087828801613d8c565b925092505092959194509250565b6000806040838503121561407557614074613306565b5b60006140838582860161357d565b92505060206140948582860161357d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140e557607f821691505b6020821081036140f8576140f761409e565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614134601e8361340a565b915061413f826140fe565b602082019050919050565b6000602082019050818103600083015261416381614127565b9050919050565b7f5075626c69632073616c65206e6f7420617661696c61626c6500000000000000600082015250565b60006141a060198361340a565b91506141ab8261416a565b602082019050919050565b600060208201905081810360008301526141cf81614193565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614210826133cb565b915061421b836133cb565b9250828202614229816133cb565b915082820484148315176142405761423f6141d6565b5b5092915050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b600061427d60138361340a565b915061428882614247565b602082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b60006142be826133cb565b91506142c9836133cb565b92508282019050808211156142e1576142e06141d6565b5b92915050565b7f43757272656e746c79206e6f7420656e6f75676820737570706c790000000000600082015250565b600061431d601b8361340a565b9150614328826142e7565b602082019050919050565b6000602082019050818103600083015261434c81614310565b9050919050565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b600061438960118361340a565b915061439482614353565b602082019050919050565b600060208201905081810360008301526143b88161437c565b9050919050565b7f4578636565647320616c6c6f7765642077616c6c6574207175616e7469747900600082015250565b60006143f5601f8361340a565b9150614400826143bf565b602082019050919050565b60006020820190508181036000830152614424816143e8565b9050919050565b600081905092915050565b50565b600061444660008361442b565b915061445182614436565b600082019050919050565b600061446782614439565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006144a760188361340a565b91506144b282614471565b602082019050919050565b600060208201905081810360008301526144d68161449a565b9050919050565b7f5468652063616c6c6572206973206e6f74207468652062616c6c657220636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b600061453960258361340a565b9150614544826144dd565b604082019050919050565b600060208201905081810360008301526145688161452c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614594565b6145db8683614594565b95508019841693508086168417925050509392505050565b600061460e614609614604846133cb565b61376a565b6133cb565b9050919050565b6000819050919050565b614628836145f3565b61463c61463482614615565b8484546145a1565b825550505050565b600090565b614651614644565b61465c81848461461f565b505050565b5b8181101561468057614675600082614649565b600181019050614662565b5050565b601f8211156146c5576146968161456f565b61469f84614584565b810160208510156146ae578190505b6146c26146ba85614584565b830182614661565b50505b505050565b600082821c905092915050565b60006146e8600019846008026146ca565b1980831691505092915050565b600061470183836146d7565b9150826002028217905092915050565b61471a826133ff565b67ffffffffffffffff811115614733576147326137ee565b5b61473d82546140cd565b614748828285614684565b600060209050601f83116001811461477b5760008415614769578287015190505b61477385826146f5565b8655506147db565b601f1984166147898661456f565b60005b828110156147b15784890151825560018201915060208501945060208101905061478c565b868310156147ce57848901516147ca601f8916826146d7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000614828826133ff565b6148328185614812565b935061484281856020860161341b565b80840191505092915050565b600061485a828561481d565b9150614866828461481d565b91508190509392505050565b7f53616c65206e6f7420617661696c61626c650000000000000000000000000000600082015250565b60006148a860128361340a565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b9050919050565b7f57616c6c657420766572696669636174696f6e206661696c6564000000000000600082015250565b6000614914601a8361340a565b915061491f826148de565b602082019050919050565b6000602082019050818103600083015261494381614907565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149a660268361340a565b91506149b18261494a565b604082019050919050565b600060208201905081810360008301526149d581614999565b9050919050565b60006040820190506149f1600083018561353c565b6149fe602083018461353c565b9392505050565b600081519050614a1481613d20565b92915050565b600060208284031215614a3057614a2f613306565b5b6000614a3e84828501614a05565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a7d60208361340a565b9150614a8882614a47565b602082019050919050565b60006020820190508181036000830152614aac81614a70565b9050919050565b60008160601b9050919050565b6000614acb82614ab3565b9050919050565b6000614add82614ac0565b9050919050565b614af5614af08261352a565b614ad2565b82525050565b6000819050919050565b614b16614b11826133cb565b614afb565b82525050565b6000614b288285614ae4565b601482019150614b388284614b05565b6020820191508190509392505050565b6000614b53826133cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b8557614b846141d6565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614bb782614b90565b614bc18185614b9b565b9350614bd181856020860161341b565b614bda81613445565b840191505092915050565b6000608082019050614bfa600083018761353c565b614c07602083018661353c565b614c1460408301856133d5565b8181036060830152614c268184614bac565b905095945050505050565b600081519050614c408161333c565b92915050565b600060208284031215614c5c57614c5b613306565b5b6000614c6a84828501614c31565b9150509291505056fea264697066735822122042bf5f3f023b1f324b3d416021b63b4556cbdc65e9464e8eac5aaea271b580b664736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6173736574732e6b69636b7a6d6574612e696f2f626f6f737465722f6d657461646174612f00000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102885760003560e01c80636352211e1161015a57806399a2557a116100c1578063c23dc68f1161007a578063c23dc68f14610989578063c87b56dd146109c6578063d5abeb0114610a03578063e6d37b8814610a2e578063e985e9c514610a4a578063f2fde38b14610a8757610288565b806399a2557a14610874578063a035b1fe146108b1578063a22cb465146108dc578063a2309ff814610905578063b324044e14610930578063b88d4fde1461096d57610288565b80637cb64759116101135780637cb64759146107645780638462151c1461078d5780638488bb4e146107ca5780638da5cb5b146107f557806391b7f5ed1461082057806395d89b411461084957610288565b80636352211e146106545780636b8f9c43146106915780636c0360eb146106ba57806370a08231146106e5578063715018a6146107225780637c59aa351461073957610288565b80632db11544116101fe57806342842e0e116101b757806342842e0e1461055557806342966c681461057157806351f02e8a1461059a578063536ebc60146105c357806355f804b3146105ee5780635bbb21771461061757610288565b80632db115441461047a5780632eb4a7ab146104965780632fc5a4cf146104c1578063375a069a146104ea5780633ccfd60b1461051357806341f434341461052a57610288565b80630a5dda72116102505780630a5dda721461037957806311e6ad7b146103b657806311f706ec146103df57806318160ddd14610408578063200d2ed21461043357806323b872dd1461045e57610288565b806301ffc9a71461028d57806306af692d146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613368565b610ab0565b6040516102c191906133b0565b60405180910390f35b3480156102d657600080fd5b506102df610b42565b6040516102ec91906133e4565b60405180910390f35b34801561030157600080fd5b5061030a610b48565b604051610317919061348f565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906134dd565b610bda565b604051610354919061354b565b60405180910390f35b61037760048036038101906103729190613592565b610c59565b005b34801561038557600080fd5b506103a0600480360381019061039b91906135d2565b610c72565b6040516103ad91906133e4565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906134dd565b610c84565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613624565b610c96565b005b34801561041457600080fd5b5061041d610ccb565b60405161042a91906133e4565b60405180910390f35b34801561043f57600080fd5b50610448610ce2565b60405161045591906136c8565b60405180910390f35b610478600480360381019061047391906136e3565b610cf5565b005b610494600480360381019061048f91906134dd565b610d44565b005b3480156104a257600080fd5b506104ab610f8a565b6040516104b8919061374f565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e391906135d2565b610f90565b005b3480156104f657600080fd5b50610511600480360381019061050c91906134dd565b610fdc565b005b34801561051f57600080fd5b50610528611048565b005b34801561053657600080fd5b5061053f61112f565b60405161054c91906137c9565b60405180910390f35b61056f600480360381019061056a91906136e3565b611141565b005b34801561057d57600080fd5b50610598600480360381019061059391906134dd565b611190565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906134dd565b61122e565b005b3480156105cf57600080fd5b506105d8611240565b6040516105e591906133e4565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190613919565b611246565b005b34801561062357600080fd5b5061063e600480360381019061063991906139c2565b611261565b60405161064b9190613b72565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906134dd565b611324565b604051610688919061354b565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906135d2565b611336565b005b3480156106c657600080fd5b506106cf611382565b6040516106dc919061348f565b60405180910390f35b3480156106f157600080fd5b5061070c600480360381019061070791906135d2565b611410565b60405161071991906133e4565b60405180910390f35b34801561072e57600080fd5b506107376114c8565b005b34801561074557600080fd5b5061074e6114dc565b60405161075b919061354b565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190613bc0565b611502565b005b34801561079957600080fd5b506107b460048036038101906107af91906135d2565b611514565b6040516107c19190613cab565b60405180910390f35b3480156107d657600080fd5b506107df611657565b6040516107ec919061354b565b60405180910390f35b34801561080157600080fd5b5061080a61167d565b604051610817919061354b565b60405180910390f35b34801561082c57600080fd5b50610847600480360381019061084291906134dd565b6116a7565b005b34801561085557600080fd5b5061085e6116b9565b60405161086b919061348f565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613ccd565b61174b565b6040516108a89190613cab565b60405180910390f35b3480156108bd57600080fd5b506108c6611957565b6040516108d391906133e4565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190613d4c565b61195d565b005b34801561091157600080fd5b5061091a611976565b60405161092791906133e4565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613de2565b611985565b60405161096491906133b0565b60405180910390f35b61098760048036038101906109829190613ef7565b6119e8565b005b34801561099557600080fd5b506109b060048036038101906109ab91906134dd565b611a39565b6040516109bd9190613fcf565b60405180910390f35b3480156109d257600080fd5b506109ed60048036038101906109e891906134dd565b611aa3565b6040516109fa919061348f565b60405180910390f35b348015610a0f57600080fd5b50610a18611b41565b604051610a2591906133e4565b60405180910390f35b610a486004803603810190610a439190613fea565b611b47565b005b348015610a5657600080fd5b50610a716004803603810190610a6c919061405e565b611dda565b604051610a7e91906133b0565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa991906135d2565b611e6e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b606060028054610b57906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b83906140cd565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b6000610be582611ef1565b610c1b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c6381611f50565b610c6d838361204d565b505050565b6000610c7d82612191565b9050919050565b610c8c6121e8565b80600d8190555050565b610c9e6121e8565b80600b60146101000a81548160ff02191690836002811115610cc357610cc2613651565b5b021790555050565b6000610cd5612266565b6001546000540303905090565b600b60149054906101000a900460ff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d3357610d3233611f50565b5b610d3e84848461226f565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da99061414a565b60405180910390fd5b600280811115610dc557610dc4613651565b5b600b60149054906101000a900460ff166002811115610de757610de6613651565b5b14610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e906141b6565b60405180910390fd5b80600e54610e359190614205565b341015610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90614293565b60405180910390fd5b600d5481610e83612591565b610e8d91906142b3565b1115610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590614333565b60405180910390fd5b600c5481610eda612591565b610ee491906142b3565b1115610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c9061439f565b60405180910390fd5b600f5481610f3233612191565b610f3c91906142b3565b1115610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061440b565b60405180910390fd5b610f8733826125a4565b50565b600a5481565b610f986121e8565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610fe46121e8565b600c5481610ff0612591565b610ffa91906142b3565b111561103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061439f565b60405180910390fd5b61104533826125a4565b50565b6110506121e8565b60004790506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff16836040516110a29061445c565b60006040518083038185875af1925050503d80600081146110df576040519150601f19603f3d011682016040523d82523d6000602084013e6110e4565b606091505b5050809150508061112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906144bd565b60405180910390fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461117f5761117e33611f50565b5b61118a8484846125c2565b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112179061454f565b60405180910390fd5b61122b8160006125e2565b50565b6112366121e8565b80600f8190555050565b600f5481565b61124e6121e8565b806009908161125d9190614711565b5050565b6060600083839050905060008167ffffffffffffffff811115611287576112866137ee565b5b6040519080825280602002602001820160405280156112c057816020015b6112ad6132ad565b8152602001906001900390816112a55790505b50905060005b828114611318576112ef8686838181106112e3576112e26147e3565b5b90506020020135611a39565b828281518110611302576113016147e3565b5b60200260200101819052508060010190506112c6565b50809250505092915050565b600061132f82612834565b9050919050565b61133e6121e8565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6009805461138f906140cd565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb906140cd565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611477576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114d06121e8565b6114da6000612900565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61150a6121e8565b80600a8190555050565b6060600080600061152485611410565b905060008167ffffffffffffffff811115611542576115416137ee565b5b6040519080825280602002602001820160405280156115705781602001602082028036833780820191505090505b50905061157b6132ad565b6000611585612266565b90505b83861461164957611598816129c6565b9150816040015161163e57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115e357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361163d57808387806001019850815181106116305761162f6147e3565b5b6020026020010181815250505b5b806001019050611588565b508195505050505050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116af6121e8565b80600e8190555050565b6060600380546116c8906140cd565b80601f01602080910402602001604051908101604052809291908181526020018280546116f4906140cd565b80156117415780601f1061171657610100808354040283529160200191611741565b820191906000526020600020905b81548152906001019060200180831161172457829003601f168201915b5050505050905090565b6060818310611786576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117916129f1565b905061179b612266565b8510156117ad576117aa612266565b94505b808411156117b9578093505b60006117c487611410565b9050848610156117e75760008686039050818110156117e1578091505b506117ec565b600090505b60008167ffffffffffffffff811115611808576118076137ee565b5b6040519080825280602002602001820160405280156118365781602001602082028036833780820191505090505b5090506000820361184d5780945050505050611950565b600061185888611a39565b90506000816040015161186d57816000015190505b60008990505b8881141580156118835750848714155b1561194257611891816129c6565b9250826040015161193757600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146118dc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119365780848880600101995081518110611929576119286147e3565b5b6020026020010181815250505b5b806001019050611873565b508583528296505050505050505b9392505050565b600e5481565b8161196781611f50565b61197183836129fa565b505050565b6000611980612591565b905090565b60006119de838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a546119d98888612b05565b612b38565b9050949350505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a2657611a2533611f50565b5b611a3285858585612b4f565b5050505050565b611a416132ad565b611a496132ad565b611a51612266565b831080611a655750611a616129f1565b8310155b15611a735780915050611a9e565b611a7c836129c6565b9050806040015115611a915780915050611a9e565b611a9a83612bc2565b9150505b919050565b6060611aae82611ef1565b611ae4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611aee612be2565b90506000815103611b0e5760405180602001604052806000815250611b39565b80611b1884612c74565b604051602001611b2992919061484e565b6040516020818303038152906040525b915050919050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac9061414a565b60405180910390fd5b60006002811115611bc957611bc8613651565b5b600b60149054906101000a900460ff166002811115611beb57611bea613651565b5b14611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c22906148be565b60405180910390fd5b83600e54611c399190614205565b341015611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290614293565b60405180910390fd5b600d5484611c87612591565b611c9191906142b3565b1115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614333565b60405180910390fd5b600c5484611cde612591565b611ce891906142b3565b1115611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d209061439f565b60405180910390fd5b611d3533848484611985565b611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b9061492a565b60405180910390fd5b8284611d7f33612191565b611d8991906142b3565b1115611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc19061440b565b60405180910390fd5b611dd433856125a4565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e766121e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc906149bc565b60405180910390fd5b611eee81612900565b50565b600081611efc612266565b11158015611f0b575060005482105b8015611f49575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561204a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611fc79291906149dc565b602060405180830381865afa158015611fe4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120089190614a1a565b61204957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612040919061354b565b60405180910390fd5b5b50565b600061205882611324565b90508073ffffffffffffffffffffffffffffffffffffffff16612079612cc4565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576120a5816120a0612cc4565b611dda565b6120db576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121f0612ccc565b73ffffffffffffffffffffffffffffffffffffffff1661220e61167d565b73ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b90614a93565b60405180910390fd5b565b60006001905090565b600061227a82612834565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122e1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806122ed84612cd4565b9150915061230381876122fe612cc4565b612cfb565b61234f5761231886612313612cc4565b611dda565b61234e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c28686866001612d3f565b80156123cd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061249b85612477888887612d45565b7c020000000000000000000000000000000000000000000000000000000017612d6d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612521576000600185019050600060046000838152602001908152602001600020540361251f57600054811461251e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125898686866001612d98565b505050505050565b600061259b612266565b60005403905090565b6125be828260405180602001604052806000815250612d9e565b5050565b6125dd838383604051806020016040528060008152506119e8565b505050565b60006125ed83612834565b9050600081905060008061260086612cd4565b9150915084156126695761261c8184612617612cc4565b612cfb565b612668576126318361262c612cc4565b611dda565b612667576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612677836000886001612d3f565b801561268257600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061272a836126e785600088612d45565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612d6d565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036127b057600060018701905060006004600083815260200190815260200160002054036127ae5760005481146127ad578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281a836000886001612d98565b600160008154809291906001019190505550505050505050565b60008082905080612843612266565b116128c9576000548110156128c85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036128c6575b600081036128bc576004600083600190039350838152602001908152602001600020549050612892565b80925050506128fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ce6132ad565b6129ea6004600084815260200190815260200160002054612e3b565b9050919050565b60008054905090565b8060076000612a07612cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ab4612cc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612af991906133b0565b60405180910390a35050565b60008282604051602001612b1a929190614b1c565b60405160208183030381529060405280519060200120905092915050565b600082612b458584612ef1565b1490509392505050565b612b5a848484610cf5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612bbc57612b8584848484612f47565b612bbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612bca6132ad565b612bdb612bd683612834565b612e3b565b9050919050565b606060098054612bf1906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1d906140cd565b8015612c6a5780601f10612c3f57610100808354040283529160200191612c6a565b820191906000526020600020905b815481529060010190602001808311612c4d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612caf57600184039350600a81066030018453600a8104905080612c8d575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d5c868684613097565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612da883836130a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e3657600080549050600083820390505b612de86000868380600101945086612f47565b612e1e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612dd5578160005414612e3357600080fd5b50505b505050565b612e436132ad565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612f3c57612f2782868381518110612f1a57612f196147e3565b5b602002602001015161325b565b91508080612f3490614b48565b915050612efa565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6d612cc4565b8786866040518563ffffffff1660e01b8152600401612f8f9493929190614be5565b6020604051808303816000875af1925050508015612fcb57506040513d601f19601f82011682018060405250810190612fc89190614c46565b60015b613044573d8060008114612ffb576040519150601f19603f3d011682016040523d82523d6000602084013e613000565b606091505b50600081510361303c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036130e0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130ed6000848385612d3f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613164836131556000866000612d45565b61315e85613286565b17612d6d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461320557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506131ca565b5060008203613240576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506132566000848385612d98565b505050565b60008183106132735761326e8284613296565b61327e565b61327d8383613296565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61334581613310565b811461335057600080fd5b50565b6000813590506133628161333c565b92915050565b60006020828403121561337e5761337d613306565b5b600061338c84828501613353565b91505092915050565b60008115159050919050565b6133aa81613395565b82525050565b60006020820190506133c560008301846133a1565b92915050565b6000819050919050565b6133de816133cb565b82525050565b60006020820190506133f960008301846133d5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561343957808201518184015260208101905061341e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613461826133ff565b61346b818561340a565b935061347b81856020860161341b565b61348481613445565b840191505092915050565b600060208201905081810360008301526134a98184613456565b905092915050565b6134ba816133cb565b81146134c557600080fd5b50565b6000813590506134d7816134b1565b92915050565b6000602082840312156134f3576134f2613306565b5b6000613501848285016134c8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135358261350a565b9050919050565b6135458161352a565b82525050565b6000602082019050613560600083018461353c565b92915050565b61356f8161352a565b811461357a57600080fd5b50565b60008135905061358c81613566565b92915050565b600080604083850312156135a9576135a8613306565b5b60006135b78582860161357d565b92505060206135c8858286016134c8565b9150509250929050565b6000602082840312156135e8576135e7613306565b5b60006135f68482850161357d565b91505092915050565b6003811061360c57600080fd5b50565b60008135905061361e816135ff565b92915050565b60006020828403121561363a57613639613306565b5b60006136488482850161360f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061369157613690613651565b5b50565b60008190506136a282613680565b919050565b60006136b282613694565b9050919050565b6136c2816136a7565b82525050565b60006020820190506136dd60008301846136b9565b92915050565b6000806000606084860312156136fc576136fb613306565b5b600061370a8682870161357d565b935050602061371b8682870161357d565b925050604061372c868287016134c8565b9150509250925092565b6000819050919050565b61374981613736565b82525050565b60006020820190506137646000830184613740565b92915050565b6000819050919050565b600061378f61378a6137858461350a565b61376a565b61350a565b9050919050565b60006137a182613774565b9050919050565b60006137b382613796565b9050919050565b6137c3816137a8565b82525050565b60006020820190506137de60008301846137ba565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382682613445565b810181811067ffffffffffffffff82111715613845576138446137ee565b5b80604052505050565b60006138586132fc565b9050613864828261381d565b919050565b600067ffffffffffffffff821115613884576138836137ee565b5b61388d82613445565b9050602081019050919050565b82818337600083830152505050565b60006138bc6138b784613869565b61384e565b9050828152602081018484840111156138d8576138d76137e9565b5b6138e384828561389a565b509392505050565b600082601f830112613900576138ff6137e4565b5b81356139108482602086016138a9565b91505092915050565b60006020828403121561392f5761392e613306565b5b600082013567ffffffffffffffff81111561394d5761394c61330b565b5b613959848285016138eb565b91505092915050565b600080fd5b600080fd5b60008083601f840112613982576139816137e4565b5b8235905067ffffffffffffffff81111561399f5761399e613962565b5b6020830191508360208202830111156139bb576139ba613967565b5b9250929050565b600080602083850312156139d9576139d8613306565b5b600083013567ffffffffffffffff8111156139f7576139f661330b565b5b613a038582860161396c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a448161352a565b82525050565b600067ffffffffffffffff82169050919050565b613a6781613a4a565b82525050565b613a7681613395565b82525050565b600062ffffff82169050919050565b613a9481613a7c565b82525050565b608082016000820151613ab06000850182613a3b565b506020820151613ac36020850182613a5e565b506040820151613ad66040850182613a6d565b506060820151613ae96060850182613a8b565b50505050565b6000613afb8383613a9a565b60808301905092915050565b6000602082019050919050565b6000613b1f82613a0f565b613b298185613a1a565b9350613b3483613a2b565b8060005b83811015613b65578151613b4c8882613aef565b9750613b5783613b07565b925050600181019050613b38565b5085935050505092915050565b60006020820190508181036000830152613b8c8184613b14565b905092915050565b613b9d81613736565b8114613ba857600080fd5b50565b600081359050613bba81613b94565b92915050565b600060208284031215613bd657613bd5613306565b5b6000613be484828501613bab565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c22816133cb565b82525050565b6000613c348383613c19565b60208301905092915050565b6000602082019050919050565b6000613c5882613bed565b613c628185613bf8565b9350613c6d83613c09565b8060005b83811015613c9e578151613c858882613c28565b9750613c9083613c40565b925050600181019050613c71565b5085935050505092915050565b60006020820190508181036000830152613cc58184613c4d565b905092915050565b600080600060608486031215613ce657613ce5613306565b5b6000613cf48682870161357d565b9350506020613d05868287016134c8565b9250506040613d16868287016134c8565b9150509250925092565b613d2981613395565b8114613d3457600080fd5b50565b600081359050613d4681613d20565b92915050565b60008060408385031215613d6357613d62613306565b5b6000613d718582860161357d565b9250506020613d8285828601613d37565b9150509250929050565b60008083601f840112613da257613da16137e4565b5b8235905067ffffffffffffffff811115613dbf57613dbe613962565b5b602083019150836020820283011115613ddb57613dda613967565b5b9250929050565b60008060008060608587031215613dfc57613dfb613306565b5b6000613e0a8782880161357d565b9450506020613e1b878288016134c8565b935050604085013567ffffffffffffffff811115613e3c57613e3b61330b565b5b613e4887828801613d8c565b925092505092959194509250565b600067ffffffffffffffff821115613e7157613e706137ee565b5b613e7a82613445565b9050602081019050919050565b6000613e9a613e9584613e56565b61384e565b905082815260208101848484011115613eb657613eb56137e9565b5b613ec184828561389a565b509392505050565b600082601f830112613ede57613edd6137e4565b5b8135613eee848260208601613e87565b91505092915050565b60008060008060808587031215613f1157613f10613306565b5b6000613f1f8782880161357d565b9450506020613f308782880161357d565b9350506040613f41878288016134c8565b925050606085013567ffffffffffffffff811115613f6257613f6161330b565b5b613f6e87828801613ec9565b91505092959194509250565b608082016000820151613f906000850182613a3b565b506020820151613fa36020850182613a5e565b506040820151613fb66040850182613a6d565b506060820151613fc96060850182613a8b565b50505050565b6000608082019050613fe46000830184613f7a565b92915050565b6000806000806060858703121561400457614003613306565b5b6000614012878288016134c8565b9450506020614023878288016134c8565b935050604085013567ffffffffffffffff8111156140445761404361330b565b5b61405087828801613d8c565b925092505092959194509250565b6000806040838503121561407557614074613306565b5b60006140838582860161357d565b92505060206140948582860161357d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140e557607f821691505b6020821081036140f8576140f761409e565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614134601e8361340a565b915061413f826140fe565b602082019050919050565b6000602082019050818103600083015261416381614127565b9050919050565b7f5075626c69632073616c65206e6f7420617661696c61626c6500000000000000600082015250565b60006141a060198361340a565b91506141ab8261416a565b602082019050919050565b600060208201905081810360008301526141cf81614193565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614210826133cb565b915061421b836133cb565b9250828202614229816133cb565b915082820484148315176142405761423f6141d6565b5b5092915050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b600061427d60138361340a565b915061428882614247565b602082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b60006142be826133cb565b91506142c9836133cb565b92508282019050808211156142e1576142e06141d6565b5b92915050565b7f43757272656e746c79206e6f7420656e6f75676820737570706c790000000000600082015250565b600061431d601b8361340a565b9150614328826142e7565b602082019050919050565b6000602082019050818103600083015261434c81614310565b9050919050565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b600061438960118361340a565b915061439482614353565b602082019050919050565b600060208201905081810360008301526143b88161437c565b9050919050565b7f4578636565647320616c6c6f7765642077616c6c6574207175616e7469747900600082015250565b60006143f5601f8361340a565b9150614400826143bf565b602082019050919050565b60006020820190508181036000830152614424816143e8565b9050919050565b600081905092915050565b50565b600061444660008361442b565b915061445182614436565b600082019050919050565b600061446782614439565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006144a760188361340a565b91506144b282614471565b602082019050919050565b600060208201905081810360008301526144d68161449a565b9050919050565b7f5468652063616c6c6572206973206e6f74207468652062616c6c657220636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b600061453960258361340a565b9150614544826144dd565b604082019050919050565b600060208201905081810360008301526145688161452c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614594565b6145db8683614594565b95508019841693508086168417925050509392505050565b600061460e614609614604846133cb565b61376a565b6133cb565b9050919050565b6000819050919050565b614628836145f3565b61463c61463482614615565b8484546145a1565b825550505050565b600090565b614651614644565b61465c81848461461f565b505050565b5b8181101561468057614675600082614649565b600181019050614662565b5050565b601f8211156146c5576146968161456f565b61469f84614584565b810160208510156146ae578190505b6146c26146ba85614584565b830182614661565b50505b505050565b600082821c905092915050565b60006146e8600019846008026146ca565b1980831691505092915050565b600061470183836146d7565b9150826002028217905092915050565b61471a826133ff565b67ffffffffffffffff811115614733576147326137ee565b5b61473d82546140cd565b614748828285614684565b600060209050601f83116001811461477b5760008415614769578287015190505b61477385826146f5565b8655506147db565b601f1984166147898661456f565b60005b828110156147b15784890151825560018201915060208501945060208101905061478c565b868310156147ce57848901516147ca601f8916826146d7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000614828826133ff565b6148328185614812565b935061484281856020860161341b565b80840191505092915050565b600061485a828561481d565b9150614866828461481d565b91508190509392505050565b7f53616c65206e6f7420617661696c61626c650000000000000000000000000000600082015250565b60006148a860128361340a565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b9050919050565b7f57616c6c657420766572696669636174696f6e206661696c6564000000000000600082015250565b6000614914601a8361340a565b915061491f826148de565b602082019050919050565b6000602082019050818103600083015261494381614907565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149a660268361340a565b91506149b18261494a565b604082019050919050565b600060208201905081810360008301526149d581614999565b9050919050565b60006040820190506149f1600083018561353c565b6149fe602083018461353c565b9392505050565b600081519050614a1481613d20565b92915050565b600060208284031215614a3057614a2f613306565b5b6000614a3e84828501614a05565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a7d60208361340a565b9150614a8882614a47565b602082019050919050565b60006020820190508181036000830152614aac81614a70565b9050919050565b60008160601b9050919050565b6000614acb82614ab3565b9050919050565b6000614add82614ac0565b9050919050565b614af5614af08261352a565b614ad2565b82525050565b6000819050919050565b614b16614b11826133cb565b614afb565b82525050565b6000614b288285614ae4565b601482019150614b388284614b05565b6020820191508190509392505050565b6000614b53826133cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b8557614b846141d6565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614bb782614b90565b614bc18185614b9b565b9350614bd181856020860161341b565b614bda81613445565b840191505092915050565b6000608082019050614bfa600083018761353c565b614c07602083018661353c565b614c1460408301856133d5565b8181036060830152614c268184614bac565b905095945050505050565b600081519050614c408161333c565b92915050565b600060208284031215614c5c57614c5b613306565b5b6000614c6a84828501614c31565b9150509291505056fea264697066735822122042bf5f3f023b1f324b3d416021b63b4556cbdc65e9464e8eac5aaea271b580b664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6173736574732e6b69636b7a6d6574612e696f2f626f6f737465722f6d657461646174612f00000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : contractBaseURI (string): https://assets.kickzmeta.io/booster/metadata/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [2] : 68747470733a2f2f6173736574732e6b69636b7a6d6574612e696f2f626f6f73
Arg [3] : 7465722f6d657461646174612f00000000000000000000000000000000000000
Deployed Bytecode Sourcemap
86073:5755:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45635:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86459:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46537:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53028:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90990:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89613:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87806:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88046:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42288:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86360:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91172:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88858:556;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86290:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89755:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89422:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90227:284;;;;;;;;;;;;;:::i;:::-;;7735:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91378:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90109:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87914:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86539:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87083:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80939:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47930:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89999:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86261:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43472:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23425:103;;;;;;;;;;;;;:::i;:::-;;86322:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89885:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84815:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86586:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22777:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87712:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46713:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81855:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86498:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90779:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87181:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87282:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91592;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80352:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46923:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86421:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88159:691;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53977:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23683:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45635:639;45720:4;46059:10;46044:25;;:11;:25;;;;:102;;;;46136:10;46121:25;;:11;:25;;;;46044:102;:179;;;;46213:10;46198:25;;:11;:25;;;;46044:179;46024:199;;45635:639;;;:::o;86459:32::-;;;;:::o;46537:100::-;46591:13;46624:5;46617:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46537:100;:::o;53028:218::-;53104:7;53129:16;53137:7;53129;:16::i;:::-;53124:64;;53154:34;;;;;;;;;;;;;;53124:64;53208:15;:24;53224:7;53208:24;;;;;;;;;;;:30;;;;;;;;;;;;53201:37;;53028:218;;;:::o;90990:174::-;91115:2;9517:30;9538:8;9517:20;:30::i;:::-;91130:26:::1;91144:2;91148:7;91130:13;:26::i;:::-;90990:174:::0;;;:::o;89613:134::-;89690:7;89717:22;89731:7;89717:13;:22::i;:::-;89710:29;;89613:134;;;:::o;87806:100::-;22663:13;:11;:13::i;:::-;87891:7:::1;87877:11;:21;;;;87806:100:::0;:::o;88046:105::-;22663:13;:11;:13::i;:::-;88136:7:::1;88127:6;;:16;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;88046:105:::0;:::o;42288:323::-;42349:7;42577:15;:13;:15::i;:::-;42562:12;;42546:13;;:28;:46;42539:53;;42288:323;:::o;86360:52::-;;;;;;;;;;;;;:::o;91172:198::-;91308:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;91325:37:::1;91344:4;91350:2;91354:7;91325:18;:37::i;:::-;91172:198:::0;;;;:::o;88858:556::-;86723:10;86710:23;;:9;:23;;;86702:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;88955:21:::1;88945:31:::0;::::1;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;88937:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;89046:8;89038:5;;:16;;;;:::i;:::-;89025:9;:29;;89017:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;89126:11;;89114:8;89097:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:40;;89089:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;89217:9;;89205:8;89188:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;89180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89307:21;;89295:8;89267:25;89281:10;89267:13;:25::i;:::-;:36;;;;:::i;:::-;:61;;89259:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;89375:31;89385:10;89397:8;89375:9;:31::i;:::-;88858:556:::0;:::o;86290:25::-;;;;:::o;89755:122::-;22663:13;:11;:13::i;:::-;89854:15:::1;89837:14;;:32;;;;;;;;;;;;;;;;;;89755:122:::0;:::o;89422:183::-;22663:13;:11;:13::i;:::-;89524:9:::1;;89512:8;89495:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;89487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89566:31;89576:10;89588:8;89566:9;:31::i;:::-;89422:183:::0;:::o;90227:284::-;22663:13;:11;:13::i;:::-;90277:14:::1;90294:21;90277:38;;90328:13;90352:12;;;;;;;;;;;90328:37;;90378:12;90416:5;:10;;90436:6;90416:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90403:45;;;;;90467:7;90459:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;90266:245;;;90227:284::o:0;7735:143::-;151:42;7735:143;:::o;91378:206::-;91518:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;91535:41:::1;91558:4;91564:2;91568:7;91535:22;:41::i;:::-;91378:206:::0;;;;:::o;90109:110::-;86863:14;;;;;;;;;;;86849:28;;:10;:28;;;86841:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;90190:21:::1;90196:7;90205:5;90190;:21::i;:::-;90109:110:::0;:::o;87914:124::-;22663:13;:11;:13::i;:::-;88021:9:::1;87997:21;:33;;;;87914:124:::0;:::o;86539:40::-;;;;:::o;87083:90::-;22663:13;:11;:13::i;:::-;87162:3:::1;87152:7;:13;;;;;;:::i;:::-;;87083:90:::0;:::o;80939:528::-;81083:23;81149:22;81174:8;;:15;;81149:40;;81204:34;81262:14;81241:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;81204:73;;81297:9;81292:125;81313:14;81308:1;:19;81292:125;;81369:32;81389:8;;81398:1;81389:11;;;;;;;:::i;:::-;;;;;;;;81369:19;:32::i;:::-;81353:10;81364:1;81353:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;81329:3;;;;;81292:125;;;;81438:10;81431:17;;;;80939:528;;;;:::o;47930:152::-;48002:7;48045:27;48064:7;48045:18;:27::i;:::-;48022:52;;47930:152;;;:::o;89999:102::-;22663:13;:11;:13::i;:::-;90086:7:::1;90071:12;;:22;;;;;;;;;;;;;;;;;;89999:102:::0;:::o;86261:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43472:233::-;43544:7;43585:1;43568:19;;:5;:19;;;43564:60;;43596:28;;;;;;;;;;;;;;43564:60;37631:13;43642:18;:25;43661:5;43642:25;;;;;;;;;;;;;;;;:55;43635:62;;43472:233;;;:::o;23425:103::-;22663:13;:11;:13::i;:::-;23490:30:::1;23517:1;23490:18;:30::i;:::-;23425:103::o:0;86322:29::-;;;;;;;;;;;;;:::o;89885:106::-;22663:13;:11;:13::i;:::-;89972:11:::1;89959:10;:24;;;;89885:106:::0;:::o;84815:900::-;84893:16;84947:19;84981:25;85021:22;85046:16;85056:5;85046:9;:16::i;:::-;85021:41;;85077:25;85119:14;85105:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85077:57;;85149:31;;:::i;:::-;85200:9;85212:15;:13;:15::i;:::-;85200:27;;85195:472;85244:14;85229:11;:29;85195:472;;85296:15;85309:1;85296:12;:15::i;:::-;85284:27;;85334:9;:16;;;85375:8;85330:73;85451:1;85425:28;;:9;:14;;;:28;;;85421:111;;85498:9;:14;;;85478:34;;85421:111;85575:5;85554:26;;:17;:26;;;85550:102;;85631:1;85605:8;85614:13;;;;;;85605:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;85550:102;85195:472;85260:3;;;;;85195:472;;;;85688:8;85681:15;;;;;;;84815:900;;;:::o;86586:72::-;;;;;;;;;;;;;:::o;22777:87::-;22823:7;22850:6;;;;;;;;;;;22843:13;;22777:87;:::o;87712:86::-;22663:13;:11;:13::i;:::-;87784:6:::1;87776:5;:14;;;;87712:86:::0;:::o;46713:104::-;46769:13;46802:7;46795:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46713:104;:::o;81855:2513::-;81998:16;82065:4;82056:5;:13;82052:45;;82078:19;;;;;;;;;;;;;;82052:45;82112:19;82146:17;82166:14;:12;:14::i;:::-;82146:34;;82266:15;:13;:15::i;:::-;82258:5;:23;82254:87;;;82310:15;:13;:15::i;:::-;82302:23;;82254:87;82417:9;82410:4;:16;82406:73;;;82454:9;82447:16;;82406:73;82493:25;82521:16;82531:5;82521:9;:16::i;:::-;82493:44;;82715:4;82707:5;:12;82703:278;;;82740:19;82769:5;82762:4;:12;82740:34;;82811:17;82797:11;:31;82793:111;;;82873:11;82853:31;;82793:111;82721:198;82703:278;;;82964:1;82944:21;;82703:278;82995:25;83037:17;83023:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82995:60;;83095:1;83074:17;:22;83070:78;;83124:8;83117:15;;;;;;;;83070:78;83292:31;83326:26;83346:5;83326:19;:26::i;:::-;83292:60;;83367:25;83612:9;:16;;;83607:92;;83669:9;:14;;;83649:34;;83607:92;83718:9;83730:5;83718:17;;83713:478;83742:4;83737:1;:9;;:45;;;;;83765:17;83750:11;:32;;83737:45;83713:478;;;83820:15;83833:1;83820:12;:15::i;:::-;83808:27;;83858:9;:16;;;83899:8;83854:73;83975:1;83949:28;;:9;:14;;;:28;;;83945:111;;84022:9;:14;;;84002:34;;83945:111;84099:5;84078:26;;:17;:26;;;84074:102;;84155:1;84129:8;84138:13;;;;;;84129:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;84074:102;83713:478;83784:3;;;;;83713:478;;;;84293:11;84283:8;84276:29;84341:8;84334:15;;;;;;;;81855:2513;;;;;;:::o;86498:34::-;;;;:::o;90779:203::-;90910:8;9517:30;9538:8;9517:20;:30::i;:::-;90931:43:::1;90955:8;90965;90931:23;:43::i;:::-;90779:203:::0;;;:::o;87181:93::-;87225:7;87252:14;:12;:14::i;:::-;87245:21;;87181:93;:::o;87282:233::-;87400:4;87424:83;87443:5;;87424:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87450:10;;87462:44;87481:7;87490:15;87462:18;:44::i;:::-;87424:18;:83::i;:::-;87417:90;;87282:233;;;;;;:::o;91592:::-;91752:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;91769:48:::1;91792:4;91798:2;91802:7;91811:5;91769:22;:48::i;:::-;91592:233:::0;;;;;:::o;80352:428::-;80436:21;;:::i;:::-;80470:31;;:::i;:::-;80526:15;:13;:15::i;:::-;80516:7;:25;:54;;;;80556:14;:12;:14::i;:::-;80545:7;:25;;80516:54;80512:103;;;80594:9;80587:16;;;;;80512:103;80637:21;80650:7;80637:12;:21::i;:::-;80625:33;;80673:9;:16;;;80669:65;;;80713:9;80706:16;;;;;80669:65;80751:21;80764:7;80751:12;:21::i;:::-;80744:28;;;80352:428;;;;:::o;46923:318::-;46996:13;47027:16;47035:7;47027;:16::i;:::-;47022:59;;47052:29;;;;;;;;;;;;;;47022:59;47094:21;47118:10;:8;:10::i;:::-;47094:34;;47171:1;47152:7;47146:21;:26;:87;;;;;;;;;;;;;;;;;47199:7;47208:18;47218:7;47208:9;:18::i;:::-;47182:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47146:87;47139:94;;;46923:318;;;:::o;86421:31::-;;;;:::o;88159:691::-;86723:10;86710:23;;:9;:23;;;86702:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;88301:19:::1;88291:29;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:29;;;;;;;;:::i;:::-;;;88283:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;88383:8;88375:5;;:16;;;;:::i;:::-;88362:9;:29;;88354:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;88463:11;;88451:8;88434:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:40;;88426:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;88554:9;;88542:8;88525:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;88517:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88604:55;88624:10;88636:15;88653:5;;88604:19;:55::i;:::-;88596:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;88749:15;88737:8;88709:25;88723:10;88709:13;:25::i;:::-;:36;;;;:::i;:::-;:55;;88701:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;88811:31;88821:10;88833:8;88811:9;:31::i;:::-;88159:691:::0;;;;:::o;53977:164::-;54074:4;54098:18;:25;54117:5;54098:25;;;;;;;;;;;;;;;:35;54124:8;54098:35;;;;;;;;;;;;;;;;;;;;;;;;;54091:42;;53977:164;;;;:::o;23683:201::-;22663:13;:11;:13::i;:::-;23792:1:::1;23772:22;;:8;:22;;::::0;23764:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23848:28;23867:8;23848:18;:28::i;:::-;23683:201:::0;:::o;54399:282::-;54464:4;54520:7;54501:15;:13;:15::i;:::-;:26;;:66;;;;;54554:13;;54544:7;:23;54501:66;:153;;;;;54653:1;38407:8;54605:17;:26;54623:7;54605:26;;;;;;;;;;;;:44;:49;54501:153;54481:173;;54399:282;;;:::o;9660:647::-;9899:1;151:42;9851:45;;;:49;9847:453;;;151:42;10150;;;10201:4;10208:8;10150:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10264:8;10245:28;;;;;;;;;;;:::i;:::-;;;;;;;;10145:144;9847:453;9660:647;:::o;52461:408::-;52550:13;52566:16;52574:7;52566;:16::i;:::-;52550:32;;52622:5;52599:28;;:19;:17;:19::i;:::-;:28;;;52595:175;;52647:44;52664:5;52671:19;:17;:19::i;:::-;52647:16;:44::i;:::-;52642:128;;52719:35;;;;;;;;;;;;;;52642:128;52595:175;52815:2;52782:15;:24;52798:7;52782:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52853:7;52849:2;52833:28;;52842:5;52833:28;;;;;;;;;;;;52539:330;52461:408;;:::o;43787:178::-;43848:7;37631:13;37769:2;43876:18;:25;43895:5;43876:25;;;;;;;;;;;;;;;;:50;;43875:82;43868:89;;43787:178;;;:::o;22942:132::-;23017:12;:10;:12::i;:::-;23006:23;;:7;:5;:7::i;:::-;:23;;;22998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22942:132::o;90661:110::-;90735:7;90762:1;90755:8;;90661:110;:::o;56667:2825::-;56809:27;56839;56858:7;56839:18;:27::i;:::-;56809:57;;56924:4;56883:45;;56899:19;56883:45;;;56879:86;;56937:28;;;;;;;;;;;;;;56879:86;56979:27;57008:23;57035:35;57062:7;57035:26;:35::i;:::-;56978:92;;;;57170:68;57195:15;57212:4;57218:19;:17;:19::i;:::-;57170:24;:68::i;:::-;57165:180;;57258:43;57275:4;57281:19;:17;:19::i;:::-;57258:16;:43::i;:::-;57253:92;;57310:35;;;;;;;;;;;;;;57253:92;57165:180;57376:1;57362:16;;:2;:16;;;57358:52;;57387:23;;;;;;;;;;;;;;57358:52;57423:43;57445:4;57451:2;57455:7;57464:1;57423:21;:43::i;:::-;57559:15;57556:160;;;57699:1;57678:19;57671:30;57556:160;58096:18;:24;58115:4;58096:24;;;;;;;;;;;;;;;;58094:26;;;;;;;;;;;;58165:18;:22;58184:2;58165:22;;;;;;;;;;;;;;;;58163:24;;;;;;;;;;;58487:146;58524:2;58573:45;58588:4;58594:2;58598:19;58573:14;:45::i;:::-;38687:8;58545:73;58487:18;:146::i;:::-;58458:17;:26;58476:7;58458:26;;;;;;;;;;;:175;;;;58804:1;38687:8;58753:19;:47;:52;58749:627;;58826:19;58858:1;58848:7;:11;58826:33;;59015:1;58981:17;:30;58999:11;58981:30;;;;;;;;;;;;:35;58977:384;;59119:13;;59104:11;:28;59100:242;;59299:19;59266:17;:30;59284:11;59266:30;;;;;;;;;;;:52;;;;59100:242;58977:384;58807:569;58749:627;59423:7;59419:2;59404:27;;59413:4;59404:27;;;;;;;;;;;;59442:42;59463:4;59469:2;59473:7;59482:1;59442:20;:42::i;:::-;56798:2694;;;56667:2825;;;:::o;42709:296::-;42764:7;42971:15;:13;:15::i;:::-;42955:13;;:31;42948:38;;42709:296;:::o;70539:112::-;70616:27;70626:2;70630:8;70616:27;;;;;;;;;;;;:9;:27::i;:::-;70539:112;;:::o;59588:193::-;59734:39;59751:4;59757:2;59761:7;59734:39;;;;;;;;;;;;:16;:39::i;:::-;59588:193;;;:::o;71236:3081::-;71316:27;71346;71365:7;71346:18;:27::i;:::-;71316:57;;71386:12;71417:19;71386:52;;71452:27;71481:23;71508:35;71535:7;71508:26;:35::i;:::-;71451:92;;;;71560:13;71556:316;;;71681:68;71706:15;71723:4;71729:19;:17;:19::i;:::-;71681:24;:68::i;:::-;71676:184;;71773:43;71790:4;71796:19;:17;:19::i;:::-;71773:16;:43::i;:::-;71768:92;;71825:35;;;;;;;;;;;;;;71768:92;71676:184;71556:316;71884:51;71906:4;71920:1;71924:7;71933:1;71884:21;:51::i;:::-;72028:15;72025:160;;;72168:1;72147:19;72140:30;72025:160;72846:1;37896:3;72816:1;:26;;72815:32;72787:18;:24;72806:4;72787:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;73114:176;73151:4;73222:53;73237:4;73251:1;73255:19;73222:14;:53::i;:::-;38687:8;38407;73175:43;73174:101;73114:18;:176::i;:::-;73085:17;:26;73103:7;73085:26;;;;;;;;;;;:205;;;;73461:1;38687:8;73410:19;:47;:52;73406:627;;73483:19;73515:1;73505:7;:11;73483:33;;73672:1;73638:17;:30;73656:11;73638:30;;;;;;;;;;;;:35;73634:384;;73776:13;;73761:11;:28;73757:242;;73956:19;73923:17;:30;73941:11;73923:30;;;;;;;;;;;:52;;;;73757:242;73634:384;73464:569;73406:627;74088:7;74084:1;74061:35;;74070:4;74061:35;;;;;;;;;;;;74107:50;74128:4;74142:1;74146:7;74155:1;74107:20;:50::i;:::-;74284:12;;:14;;;;;;;;;;;;;71305:3012;;;;71236:3081;;:::o;49085:1275::-;49152:7;49172:12;49187:7;49172:22;;49255:4;49236:15;:13;:15::i;:::-;:23;49232:1061;;49289:13;;49282:4;:20;49278:1015;;;49327:14;49344:17;:23;49362:4;49344:23;;;;;;;;;;;;49327:40;;49461:1;38407:8;49433:6;:24;:29;49429:845;;50098:113;50115:1;50105:6;:11;50098:113;;50158:17;:25;50176:6;;;;;;;50158:25;;;;;;;;;;;;50149:34;;50098:113;;;50244:6;50237:13;;;;;;49429:845;49304:989;49278:1015;49232:1061;50321:31;;;;;;;;;;;;;;49085:1275;;;;:::o;24044:191::-;24118:16;24137:6;;;;;;;;;;;24118:25;;24163:8;24154:6;;:17;;;;;;;;;;;;;;;;;;24218:8;24187:40;;24208:8;24187:40;;;;;;;;;;;;24107:128;24044:191;:::o;48533:161::-;48601:21;;:::i;:::-;48642:44;48661:17;:24;48679:5;48661:24;;;;;;;;;;;;48642:18;:44::i;:::-;48635:51;;48533:161;;;:::o;41975:103::-;42030:7;42057:13;;42050:20;;41975:103;:::o;53586:234::-;53733:8;53681:18;:39;53700:19;:17;:19::i;:::-;53681:39;;;;;;;;;;;;;;;:49;53721:8;53681:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53793:8;53757:55;;53772:19;:17;:19::i;:::-;53757:55;;;53803:8;53757:55;;;;;;:::i;:::-;;;;;;;;53586:234;;:::o;87523:181::-;87616:7;87670;87679:15;87653:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;87643:53;;;;;;87636:60;;87523:181;;;;:::o;12310:190::-;12435:4;12488;12459:25;12472:5;12479:4;12459:12;:25::i;:::-;:33;12452:40;;12310:190;;;;;:::o;60379:407::-;60554:31;60567:4;60573:2;60577:7;60554:12;:31::i;:::-;60618:1;60600:2;:14;;;:19;60596:183;;60639:56;60670:4;60676:2;60680:7;60689:5;60639:30;:56::i;:::-;60634:145;;60723:40;;;;;;;;;;;;;;60634:145;60596:183;60379:407;;;;:::o;48271:166::-;48341:21;;:::i;:::-;48382:47;48401:27;48420:7;48401:18;:27::i;:::-;48382:18;:47::i;:::-;48375:54;;48271:166;;;:::o;90544:109::-;90605:13;90638:7;90631:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90544:109;:::o;76914:1745::-;76979:17;77413:4;77406;77400:11;77396:22;77505:1;77499:4;77492:15;77580:4;77577:1;77573:12;77566:19;;77662:1;77657:3;77650:14;77766:3;78005:5;77987:428;78013:1;77987:428;;;78053:1;78048:3;78044:11;78037:18;;78224:2;78218:4;78214:13;78210:2;78206:22;78201:3;78193:36;78318:2;78312:4;78308:13;78300:21;;78385:4;77987:428;78375:25;77987:428;77991:21;78454:3;78449;78445:13;78569:4;78564:3;78560:14;78553:21;;78634:6;78629:3;78622:19;77018:1634;;;76914:1745;;;:::o;76707:105::-;76767:7;76794:10;76787:17;;76707:105;:::o;21328:98::-;21381:7;21408:10;21401:17;;21328:98;:::o;55562:485::-;55664:27;55693:23;55734:38;55775:15;:24;55791:7;55775:24;;;;;;;;;;;55734:65;;55952:18;55929:41;;56009:19;56003:26;55984:45;;55914:126;55562:485;;;:::o;54790:659::-;54939:11;55104:16;55097:5;55093:28;55084:37;;55264:16;55253:9;55249:32;55236:45;;55414:15;55403:9;55400:30;55392:5;55381:9;55378:20;55375:56;55365:66;;54790:659;;;;;:::o;61448:159::-;;;;;:::o;76016:311::-;76151:7;76171:16;38811:3;76197:19;:41;;76171:68;;38811:3;76265:31;76276:4;76282:2;76286:9;76265:10;:31::i;:::-;76257:40;;:62;;76250:69;;;76016:311;;;;;:::o;50908:450::-;50988:14;51156:16;51149:5;51145:28;51136:37;;51333:5;51319:11;51294:23;51290:41;51287:52;51280:5;51277:63;51267:73;;50908:450;;;;:::o;62272:158::-;;;;;:::o;69766:689::-;69897:19;69903:2;69907:8;69897:5;:19::i;:::-;69976:1;69958:2;:14;;;:19;69954:483;;69998:11;70012:13;;69998:27;;70044:13;70066:8;70060:3;:14;70044:30;;70093:233;70124:62;70163:1;70167:2;70171:7;;;;;;70180:5;70124:30;:62::i;:::-;70119:167;;70222:40;;;;;;;;;;;;;;70119:167;70321:3;70313:5;:11;70093:233;;70408:3;70391:13;;:20;70387:34;;70413:8;;;70387:34;69979:458;;69954:483;69766:689;;;:::o;50459:366::-;50525:31;;:::i;:::-;50602:6;50569:9;:14;;:41;;;;;;;;;;;38290:3;50655:6;:33;;50621:9;:24;;:68;;;;;;;;;;;50747:1;38407:8;50719:6;:24;:29;;50700:9;:16;;:48;;;;;;;;;;;38811:3;50788:6;:28;;50759:9;:19;;:58;;;;;;;;;;;50459:366;;;:::o;13177:296::-;13260:7;13280:20;13303:4;13280:27;;13323:9;13318:118;13342:5;:12;13338:1;:16;13318:118;;;13391:33;13401:12;13415:5;13421:1;13415:8;;;;;;;;:::i;:::-;;;;;;;;13391:9;:33::i;:::-;13376:48;;13356:3;;;;;:::i;:::-;;;;13318:118;;;;13453:12;13446:19;;;13177:296;;;;:::o;62870:716::-;63033:4;63079:2;63054:45;;;63100:19;:17;:19::i;:::-;63121:4;63127:7;63136:5;63054:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63050:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63354:1;63337:6;:13;:18;63333:235;;63383:40;;;;;;;;;;;;;;63333:235;63526:6;63520:13;63511:6;63507:2;63503:15;63496:38;63050:529;63223:54;;;63213:64;;;:6;:64;;;;63206:71;;;62870:716;;;;;;:::o;75717:147::-;75854:6;75717:147;;;;;:::o;64048:2966::-;64121:20;64144:13;;64121:36;;64184:1;64172:8;:13;64168:44;;64194:18;;;;;;;;;;;;;;64168:44;64225:61;64255:1;64259:2;64263:12;64277:8;64225:21;:61::i;:::-;64769:1;37769:2;64739:1;:26;;64738:32;64726:8;:45;64700:18;:22;64719:2;64700:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65048:139;65085:2;65139:33;65162:1;65166:2;65170:1;65139:14;:33::i;:::-;65106:30;65127:8;65106:20;:30::i;:::-;:66;65048:18;:139::i;:::-;65014:17;:31;65032:12;65014:31;;;;;;;;;;;:173;;;;65204:16;65235:11;65264:8;65249:12;:23;65235:37;;65785:16;65781:2;65777:25;65765:37;;66157:12;66117:8;66076:1;66014:25;65955:1;65894;65867:335;66528:1;66514:12;66510:20;66468:346;66569:3;66560:7;66557:16;66468:346;;66787:7;66777:8;66774:1;66747:25;66744:1;66741;66736:59;66622:1;66613:7;66609:15;66598:26;;66468:346;;;66472:77;66859:1;66847:8;:13;66843:45;;66869:19;;;;;;;;;;;;;;66843:45;66921:3;66905:13;:19;;;;64474:2462;;66946:60;66975:1;66979:2;66983:12;66997:8;66946:20;:60::i;:::-;64110:2904;64048:2966;;:::o;20217:149::-;20280:7;20311:1;20307;:5;:51;;20338:20;20353:1;20356;20338:14;:20::i;:::-;20307:51;;;20315:20;20330:1;20333;20315:14;:20::i;:::-;20307:51;20300:58;;20217:149;;;;:::o;51460:324::-;51530:14;51763:1;51753:8;51750:15;51724:24;51720:46;51710:56;;51460:324;;;:::o;20374:268::-;20442:13;20549:1;20543:4;20536:15;20578:1;20572:4;20565:15;20619:4;20613;20603:21;20594:30;;20374:268;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:118::-;5669:1;5662:5;5659:12;5649:40;;5685:1;5682;5675:12;5649:40;5577:118;:::o;5701:177::-;5766:5;5804:6;5791:20;5782:29;;5820:52;5866:5;5820:52;:::i;:::-;5701:177;;;;:::o;5884:367::-;5962:6;6011:2;5999:9;5990:7;5986:23;5982:32;5979:119;;;6017:79;;:::i;:::-;5979:119;6137:1;6162:72;6226:7;6217:6;6206:9;6202:22;6162:72;:::i;:::-;6152:82;;6108:136;5884:367;;;;:::o;6257:180::-;6305:77;6302:1;6295:88;6402:4;6399:1;6392:15;6426:4;6423:1;6416:15;6443:124;6535:1;6528:5;6525:12;6515:46;;6541:18;;:::i;:::-;6515:46;6443:124;:::o;6573:149::-;6629:7;6658:5;6647:16;;6664:52;6710:5;6664:52;:::i;:::-;6573:149;;;:::o;6728:::-;6795:9;6828:43;6865:5;6828:43;:::i;:::-;6815:56;;6728:149;;;:::o;6883:165::-;6987:54;7035:5;6987:54;:::i;:::-;6982:3;6975:67;6883:165;;:::o;7054:256::-;7164:4;7202:2;7191:9;7187:18;7179:26;;7215:88;7300:1;7289:9;7285:17;7276:6;7215:88;:::i;:::-;7054:256;;;;:::o;7316:619::-;7393:6;7401;7409;7458:2;7446:9;7437:7;7433:23;7429:32;7426:119;;;7464:79;;:::i;:::-;7426:119;7584:1;7609:53;7654:7;7645:6;7634:9;7630:22;7609:53;:::i;:::-;7599:63;;7555:117;7711:2;7737:53;7782:7;7773:6;7762:9;7758:22;7737:53;:::i;:::-;7727:63;;7682:118;7839:2;7865:53;7910:7;7901:6;7890:9;7886:22;7865:53;:::i;:::-;7855:63;;7810:118;7316:619;;;;;:::o;7941:77::-;7978:7;8007:5;7996:16;;7941:77;;;:::o;8024:118::-;8111:24;8129:5;8111:24;:::i;:::-;8106:3;8099:37;8024:118;;:::o;8148:222::-;8241:4;8279:2;8268:9;8264:18;8256:26;;8292:71;8360:1;8349:9;8345:17;8336:6;8292:71;:::i;:::-;8148:222;;;;:::o;8376:60::-;8404:3;8425:5;8418:12;;8376:60;;;:::o;8442:142::-;8492:9;8525:53;8543:34;8552:24;8570:5;8552:24;:::i;:::-;8543:34;:::i;:::-;8525:53;:::i;:::-;8512:66;;8442:142;;;:::o;8590:126::-;8640:9;8673:37;8704:5;8673:37;:::i;:::-;8660:50;;8590:126;;;:::o;8722:157::-;8803:9;8836:37;8867:5;8836:37;:::i;:::-;8823:50;;8722:157;;;:::o;8885:193::-;9003:68;9065:5;9003:68;:::i;:::-;8998:3;8991:81;8885:193;;:::o;9084:284::-;9208:4;9246:2;9235:9;9231:18;9223:26;;9259:102;9358:1;9347:9;9343:17;9334:6;9259:102;:::i;:::-;9084:284;;;;:::o;9374:117::-;9483:1;9480;9473:12;9497:117;9606:1;9603;9596:12;9620:180;9668:77;9665:1;9658:88;9765:4;9762:1;9755:15;9789:4;9786:1;9779:15;9806:281;9889:27;9911:4;9889:27;:::i;:::-;9881:6;9877:40;10019:6;10007:10;10004:22;9983:18;9971:10;9968:34;9965:62;9962:88;;;10030:18;;:::i;:::-;9962:88;10070:10;10066:2;10059:22;9849:238;9806:281;;:::o;10093:129::-;10127:6;10154:20;;:::i;:::-;10144:30;;10183:33;10211:4;10203:6;10183:33;:::i;:::-;10093:129;;;:::o;10228:308::-;10290:4;10380:18;10372:6;10369:30;10366:56;;;10402:18;;:::i;:::-;10366:56;10440:29;10462:6;10440:29;:::i;:::-;10432:37;;10524:4;10518;10514:15;10506:23;;10228:308;;;:::o;10542:146::-;10639:6;10634:3;10629;10616:30;10680:1;10671:6;10666:3;10662:16;10655:27;10542:146;;;:::o;10694:425::-;10772:5;10797:66;10813:49;10855:6;10813:49;:::i;:::-;10797:66;:::i;:::-;10788:75;;10886:6;10879:5;10872:21;10924:4;10917:5;10913:16;10962:3;10953:6;10948:3;10944:16;10941:25;10938:112;;;10969:79;;:::i;:::-;10938:112;11059:54;11106:6;11101:3;11096;11059:54;:::i;:::-;10778:341;10694:425;;;;;:::o;11139:340::-;11195:5;11244:3;11237:4;11229:6;11225:17;11221:27;11211:122;;11252:79;;:::i;:::-;11211:122;11369:6;11356:20;11394:79;11469:3;11461:6;11454:4;11446:6;11442:17;11394:79;:::i;:::-;11385:88;;11201:278;11139:340;;;;:::o;11485:509::-;11554:6;11603:2;11591:9;11582:7;11578:23;11574:32;11571:119;;;11609:79;;:::i;:::-;11571:119;11757:1;11746:9;11742:17;11729:31;11787:18;11779:6;11776:30;11773:117;;;11809:79;;:::i;:::-;11773:117;11914:63;11969:7;11960:6;11949:9;11945:22;11914:63;:::i;:::-;11904:73;;11700:287;11485:509;;;;:::o;12000:117::-;12109:1;12106;12099:12;12123:117;12232:1;12229;12222:12;12263:568;12336:8;12346:6;12396:3;12389:4;12381:6;12377:17;12373:27;12363:122;;12404:79;;:::i;:::-;12363:122;12517:6;12504:20;12494:30;;12547:18;12539:6;12536:30;12533:117;;;12569:79;;:::i;:::-;12533:117;12683:4;12675:6;12671:17;12659:29;;12737:3;12729:4;12721:6;12717:17;12707:8;12703:32;12700:41;12697:128;;;12744:79;;:::i;:::-;12697:128;12263:568;;;;;:::o;12837:559::-;12923:6;12931;12980:2;12968:9;12959:7;12955:23;12951:32;12948:119;;;12986:79;;:::i;:::-;12948:119;13134:1;13123:9;13119:17;13106:31;13164:18;13156:6;13153:30;13150:117;;;13186:79;;:::i;:::-;13150:117;13299:80;13371:7;13362:6;13351:9;13347:22;13299:80;:::i;:::-;13281:98;;;;13077:312;12837:559;;;;;:::o;13402:146::-;13501:6;13535:5;13529:12;13519:22;;13402:146;;;:::o;13554:216::-;13685:11;13719:6;13714:3;13707:19;13759:4;13754:3;13750:14;13735:29;;13554:216;;;;:::o;13776:164::-;13875:4;13898:3;13890:11;;13928:4;13923:3;13919:14;13911:22;;13776:164;;;:::o;13946:108::-;14023:24;14041:5;14023:24;:::i;:::-;14018:3;14011:37;13946:108;;:::o;14060:101::-;14096:7;14136:18;14129:5;14125:30;14114:41;;14060:101;;;:::o;14167:105::-;14242:23;14259:5;14242:23;:::i;:::-;14237:3;14230:36;14167:105;;:::o;14278:99::-;14349:21;14364:5;14349:21;:::i;:::-;14344:3;14337:34;14278:99;;:::o;14383:91::-;14419:7;14459:8;14452:5;14448:20;14437:31;;14383:91;;;:::o;14480:105::-;14555:23;14572:5;14555:23;:::i;:::-;14550:3;14543:36;14480:105;;:::o;14663:866::-;14814:4;14809:3;14805:14;14901:4;14894:5;14890:16;14884:23;14920:63;14977:4;14972:3;14968:14;14954:12;14920:63;:::i;:::-;14829:164;15085:4;15078:5;15074:16;15068:23;15104:61;15159:4;15154:3;15150:14;15136:12;15104:61;:::i;:::-;15003:172;15259:4;15252:5;15248:16;15242:23;15278:57;15329:4;15324:3;15320:14;15306:12;15278:57;:::i;:::-;15185:160;15432:4;15425:5;15421:16;15415:23;15451:61;15506:4;15501:3;15497:14;15483:12;15451:61;:::i;:::-;15355:167;14783:746;14663:866;;:::o;15535:307::-;15668:10;15689:110;15795:3;15787:6;15689:110;:::i;:::-;15831:4;15826:3;15822:14;15808:28;;15535:307;;;;:::o;15848:145::-;15950:4;15982;15977:3;15973:14;15965:22;;15848:145;;;:::o;16075:988::-;16258:3;16287:86;16367:5;16287:86;:::i;:::-;16389:118;16500:6;16495:3;16389:118;:::i;:::-;16382:125;;16531:88;16613:5;16531:88;:::i;:::-;16642:7;16673:1;16658:380;16683:6;16680:1;16677:13;16658:380;;;16759:6;16753:13;16786:127;16909:3;16894:13;16786:127;:::i;:::-;16779:134;;16936:92;17021:6;16936:92;:::i;:::-;16926:102;;16718:320;16705:1;16702;16698:9;16693:14;;16658:380;;;16662:14;17054:3;17047:10;;16263:800;;;16075:988;;;;:::o;17069:501::-;17276:4;17314:2;17303:9;17299:18;17291:26;;17363:9;17357:4;17353:20;17349:1;17338:9;17334:17;17327:47;17391:172;17558:4;17549:6;17391:172;:::i;:::-;17383:180;;17069:501;;;;:::o;17576:122::-;17649:24;17667:5;17649:24;:::i;:::-;17642:5;17639:35;17629:63;;17688:1;17685;17678:12;17629:63;17576:122;:::o;17704:139::-;17750:5;17788:6;17775:20;17766:29;;17804:33;17831:5;17804:33;:::i;:::-;17704:139;;;;:::o;17849:329::-;17908:6;17957:2;17945:9;17936:7;17932:23;17928:32;17925:119;;;17963:79;;:::i;:::-;17925:119;18083:1;18108:53;18153:7;18144:6;18133:9;18129:22;18108:53;:::i;:::-;18098:63;;18054:117;17849:329;;;;:::o;18184:114::-;18251:6;18285:5;18279:12;18269:22;;18184:114;;;:::o;18304:184::-;18403:11;18437:6;18432:3;18425:19;18477:4;18472:3;18468:14;18453:29;;18304:184;;;;:::o;18494:132::-;18561:4;18584:3;18576:11;;18614:4;18609:3;18605:14;18597:22;;18494:132;;;:::o;18632:108::-;18709:24;18727:5;18709:24;:::i;:::-;18704:3;18697:37;18632:108;;:::o;18746:179::-;18815:10;18836:46;18878:3;18870:6;18836:46;:::i;:::-;18914:4;18909:3;18905:14;18891:28;;18746:179;;;;:::o;18931:113::-;19001:4;19033;19028:3;19024:14;19016:22;;18931:113;;;:::o;19080:732::-;19199:3;19228:54;19276:5;19228:54;:::i;:::-;19298:86;19377:6;19372:3;19298:86;:::i;:::-;19291:93;;19408:56;19458:5;19408:56;:::i;:::-;19487:7;19518:1;19503:284;19528:6;19525:1;19522:13;19503:284;;;19604:6;19598:13;19631:63;19690:3;19675:13;19631:63;:::i;:::-;19624:70;;19717:60;19770:6;19717:60;:::i;:::-;19707:70;;19563:224;19550:1;19547;19543:9;19538:14;;19503:284;;;19507:14;19803:3;19796:10;;19204:608;;;19080:732;;;;:::o;19818:373::-;19961:4;19999:2;19988:9;19984:18;19976:26;;20048:9;20042:4;20038:20;20034:1;20023:9;20019:17;20012:47;20076:108;20179:4;20170:6;20076:108;:::i;:::-;20068:116;;19818:373;;;;:::o;20197:619::-;20274:6;20282;20290;20339:2;20327:9;20318:7;20314:23;20310:32;20307:119;;;20345:79;;:::i;:::-;20307:119;20465:1;20490:53;20535:7;20526:6;20515:9;20511:22;20490:53;:::i;:::-;20480:63;;20436:117;20592:2;20618:53;20663:7;20654:6;20643:9;20639:22;20618:53;:::i;:::-;20608:63;;20563:118;20720:2;20746:53;20791:7;20782:6;20771:9;20767:22;20746:53;:::i;:::-;20736:63;;20691:118;20197:619;;;;;:::o;20822:116::-;20892:21;20907:5;20892:21;:::i;:::-;20885:5;20882:32;20872:60;;20928:1;20925;20918:12;20872:60;20822:116;:::o;20944:133::-;20987:5;21025:6;21012:20;21003:29;;21041:30;21065:5;21041:30;:::i;:::-;20944:133;;;;:::o;21083:468::-;21148:6;21156;21205:2;21193:9;21184:7;21180:23;21176:32;21173:119;;;21211:79;;:::i;:::-;21173:119;21331:1;21356:53;21401:7;21392:6;21381:9;21377:22;21356:53;:::i;:::-;21346:63;;21302:117;21458:2;21484:50;21526:7;21517:6;21506:9;21502:22;21484:50;:::i;:::-;21474:60;;21429:115;21083:468;;;;;:::o;21574:568::-;21647:8;21657:6;21707:3;21700:4;21692:6;21688:17;21684:27;21674:122;;21715:79;;:::i;:::-;21674:122;21828:6;21815:20;21805:30;;21858:18;21850:6;21847:30;21844:117;;;21880:79;;:::i;:::-;21844:117;21994:4;21986:6;21982:17;21970:29;;22048:3;22040:4;22032:6;22028:17;22018:8;22014:32;22011:41;22008:128;;;22055:79;;:::i;:::-;22008:128;21574:568;;;;;:::o;22148:849::-;22252:6;22260;22268;22276;22325:2;22313:9;22304:7;22300:23;22296:32;22293:119;;;22331:79;;:::i;:::-;22293:119;22451:1;22476:53;22521:7;22512:6;22501:9;22497:22;22476:53;:::i;:::-;22466:63;;22422:117;22578:2;22604:53;22649:7;22640:6;22629:9;22625:22;22604:53;:::i;:::-;22594:63;;22549:118;22734:2;22723:9;22719:18;22706:32;22765:18;22757:6;22754:30;22751:117;;;22787:79;;:::i;:::-;22751:117;22900:80;22972:7;22963:6;22952:9;22948:22;22900:80;:::i;:::-;22882:98;;;;22677:313;22148:849;;;;;;;:::o;23003:307::-;23064:4;23154:18;23146:6;23143:30;23140:56;;;23176:18;;:::i;:::-;23140:56;23214:29;23236:6;23214:29;:::i;:::-;23206:37;;23298:4;23292;23288:15;23280:23;;23003:307;;;:::o;23316:423::-;23393:5;23418:65;23434:48;23475:6;23434:48;:::i;:::-;23418:65;:::i;:::-;23409:74;;23506:6;23499:5;23492:21;23544:4;23537:5;23533:16;23582:3;23573:6;23568:3;23564:16;23561:25;23558:112;;;23589:79;;:::i;:::-;23558:112;23679:54;23726:6;23721:3;23716;23679:54;:::i;:::-;23399:340;23316:423;;;;;:::o;23758:338::-;23813:5;23862:3;23855:4;23847:6;23843:17;23839:27;23829:122;;23870:79;;:::i;:::-;23829:122;23987:6;23974:20;24012:78;24086:3;24078:6;24071:4;24063:6;24059:17;24012:78;:::i;:::-;24003:87;;23819:277;23758:338;;;;:::o;24102:943::-;24197:6;24205;24213;24221;24270:3;24258:9;24249:7;24245:23;24241:33;24238:120;;;24277:79;;:::i;:::-;24238:120;24397:1;24422:53;24467:7;24458:6;24447:9;24443:22;24422:53;:::i;:::-;24412:63;;24368:117;24524:2;24550:53;24595:7;24586:6;24575:9;24571:22;24550:53;:::i;:::-;24540:63;;24495:118;24652:2;24678:53;24723:7;24714:6;24703:9;24699:22;24678:53;:::i;:::-;24668:63;;24623:118;24808:2;24797:9;24793:18;24780:32;24839:18;24831:6;24828:30;24825:117;;;24861:79;;:::i;:::-;24825:117;24966:62;25020:7;25011:6;25000:9;24996:22;24966:62;:::i;:::-;24956:72;;24751:287;24102:943;;;;;;;:::o;25123:876::-;25284:4;25279:3;25275:14;25371:4;25364:5;25360:16;25354:23;25390:63;25447:4;25442:3;25438:14;25424:12;25390:63;:::i;:::-;25299:164;25555:4;25548:5;25544:16;25538:23;25574:61;25629:4;25624:3;25620:14;25606:12;25574:61;:::i;:::-;25473:172;25729:4;25722:5;25718:16;25712:23;25748:57;25799:4;25794:3;25790:14;25776:12;25748:57;:::i;:::-;25655:160;25902:4;25895:5;25891:16;25885:23;25921:61;25976:4;25971:3;25967:14;25953:12;25921:61;:::i;:::-;25825:167;25253:746;25123:876;;:::o;26005:351::-;26162:4;26200:3;26189:9;26185:19;26177:27;;26214:135;26346:1;26335:9;26331:17;26322:6;26214:135;:::i;:::-;26005:351;;;;:::o;26362:849::-;26466:6;26474;26482;26490;26539:2;26527:9;26518:7;26514:23;26510:32;26507:119;;;26545:79;;:::i;:::-;26507:119;26665:1;26690:53;26735:7;26726:6;26715:9;26711:22;26690:53;:::i;:::-;26680:63;;26636:117;26792:2;26818:53;26863:7;26854:6;26843:9;26839:22;26818:53;:::i;:::-;26808:63;;26763:118;26948:2;26937:9;26933:18;26920:32;26979:18;26971:6;26968:30;26965:117;;;27001:79;;:::i;:::-;26965:117;27114:80;27186:7;27177:6;27166:9;27162:22;27114:80;:::i;:::-;27096:98;;;;26891:313;26362:849;;;;;;;:::o;27217:474::-;27285:6;27293;27342:2;27330:9;27321:7;27317:23;27313:32;27310:119;;;27348:79;;:::i;:::-;27310:119;27468:1;27493:53;27538:7;27529:6;27518:9;27514:22;27493:53;:::i;:::-;27483:63;;27439:117;27595:2;27621:53;27666:7;27657:6;27646:9;27642:22;27621:53;:::i;:::-;27611:63;;27566:118;27217:474;;;;;:::o;27697:180::-;27745:77;27742:1;27735:88;27842:4;27839:1;27832:15;27866:4;27863:1;27856:15;27883:320;27927:6;27964:1;27958:4;27954:12;27944:22;;28011:1;28005:4;28001:12;28032:18;28022:81;;28088:4;28080:6;28076:17;28066:27;;28022:81;28150:2;28142:6;28139:14;28119:18;28116:38;28113:84;;28169:18;;:::i;:::-;28113:84;27934:269;27883:320;;;:::o;28209:180::-;28349:32;28345:1;28337:6;28333:14;28326:56;28209:180;:::o;28395:366::-;28537:3;28558:67;28622:2;28617:3;28558:67;:::i;:::-;28551:74;;28634:93;28723:3;28634:93;:::i;:::-;28752:2;28747:3;28743:12;28736:19;;28395:366;;;:::o;28767:419::-;28933:4;28971:2;28960:9;28956:18;28948:26;;29020:9;29014:4;29010:20;29006:1;28995:9;28991:17;28984:47;29048:131;29174:4;29048:131;:::i;:::-;29040:139;;28767:419;;;:::o;29192:175::-;29332:27;29328:1;29320:6;29316:14;29309:51;29192:175;:::o;29373:366::-;29515:3;29536:67;29600:2;29595:3;29536:67;:::i;:::-;29529:74;;29612:93;29701:3;29612:93;:::i;:::-;29730:2;29725:3;29721:12;29714:19;;29373:366;;;:::o;29745:419::-;29911:4;29949:2;29938:9;29934:18;29926:26;;29998:9;29992:4;29988:20;29984:1;29973:9;29969:17;29962:47;30026:131;30152:4;30026:131;:::i;:::-;30018:139;;29745:419;;;:::o;30170:180::-;30218:77;30215:1;30208:88;30315:4;30312:1;30305:15;30339:4;30336:1;30329:15;30356:410;30396:7;30419:20;30437:1;30419:20;:::i;:::-;30414:25;;30453:20;30471:1;30453:20;:::i;:::-;30448:25;;30508:1;30505;30501:9;30530:30;30548:11;30530:30;:::i;:::-;30519:41;;30709:1;30700:7;30696:15;30693:1;30690:22;30670:1;30663:9;30643:83;30620:139;;30739:18;;:::i;:::-;30620:139;30404:362;30356:410;;;;:::o;30772:169::-;30912:21;30908:1;30900:6;30896:14;30889:45;30772:169;:::o;30947:366::-;31089:3;31110:67;31174:2;31169:3;31110:67;:::i;:::-;31103:74;;31186:93;31275:3;31186:93;:::i;:::-;31304:2;31299:3;31295:12;31288:19;;30947:366;;;:::o;31319:419::-;31485:4;31523:2;31512:9;31508:18;31500:26;;31572:9;31566:4;31562:20;31558:1;31547:9;31543:17;31536:47;31600:131;31726:4;31600:131;:::i;:::-;31592:139;;31319:419;;;:::o;31744:191::-;31784:3;31803:20;31821:1;31803:20;:::i;:::-;31798:25;;31837:20;31855:1;31837:20;:::i;:::-;31832:25;;31880:1;31877;31873:9;31866:16;;31901:3;31898:1;31895:10;31892:36;;;31908:18;;:::i;:::-;31892:36;31744:191;;;;:::o;31941:177::-;32081:29;32077:1;32069:6;32065:14;32058:53;31941:177;:::o;32124:366::-;32266:3;32287:67;32351:2;32346:3;32287:67;:::i;:::-;32280:74;;32363:93;32452:3;32363:93;:::i;:::-;32481:2;32476:3;32472:12;32465:19;;32124:366;;;:::o;32496:419::-;32662:4;32700:2;32689:9;32685:18;32677:26;;32749:9;32743:4;32739:20;32735:1;32724:9;32720:17;32713:47;32777:131;32903:4;32777:131;:::i;:::-;32769:139;;32496:419;;;:::o;32921:167::-;33061:19;33057:1;33049:6;33045:14;33038:43;32921:167;:::o;33094:366::-;33236:3;33257:67;33321:2;33316:3;33257:67;:::i;:::-;33250:74;;33333:93;33422:3;33333:93;:::i;:::-;33451:2;33446:3;33442:12;33435:19;;33094:366;;;:::o;33466:419::-;33632:4;33670:2;33659:9;33655:18;33647:26;;33719:9;33713:4;33709:20;33705:1;33694:9;33690:17;33683:47;33747:131;33873:4;33747:131;:::i;:::-;33739:139;;33466:419;;;:::o;33891:181::-;34031:33;34027:1;34019:6;34015:14;34008:57;33891:181;:::o;34078:366::-;34220:3;34241:67;34305:2;34300:3;34241:67;:::i;:::-;34234:74;;34317:93;34406:3;34317:93;:::i;:::-;34435:2;34430:3;34426:12;34419:19;;34078:366;;;:::o;34450:419::-;34616:4;34654:2;34643:9;34639:18;34631:26;;34703:9;34697:4;34693:20;34689:1;34678:9;34674:17;34667:47;34731:131;34857:4;34731:131;:::i;:::-;34723:139;;34450:419;;;:::o;34875:147::-;34976:11;35013:3;34998:18;;34875:147;;;;:::o;35028:114::-;;:::o;35148:398::-;35307:3;35328:83;35409:1;35404:3;35328:83;:::i;:::-;35321:90;;35420:93;35509:3;35420:93;:::i;:::-;35538:1;35533:3;35529:11;35522:18;;35148:398;;;:::o;35552:379::-;35736:3;35758:147;35901:3;35758:147;:::i;:::-;35751:154;;35922:3;35915:10;;35552:379;;;:::o;35937:174::-;36077:26;36073:1;36065:6;36061:14;36054:50;35937:174;:::o;36117:366::-;36259:3;36280:67;36344:2;36339:3;36280:67;:::i;:::-;36273:74;;36356:93;36445:3;36356:93;:::i;:::-;36474:2;36469:3;36465:12;36458:19;;36117:366;;;:::o;36489:419::-;36655:4;36693:2;36682:9;36678:18;36670:26;;36742:9;36736:4;36732:20;36728:1;36717:9;36713:17;36706:47;36770:131;36896:4;36770:131;:::i;:::-;36762:139;;36489:419;;;:::o;36914:224::-;37054:34;37050:1;37042:6;37038:14;37031:58;37123:7;37118:2;37110:6;37106:15;37099:32;36914:224;:::o;37144:366::-;37286:3;37307:67;37371:2;37366:3;37307:67;:::i;:::-;37300:74;;37383:93;37472:3;37383:93;:::i;:::-;37501:2;37496:3;37492:12;37485:19;;37144:366;;;:::o;37516:419::-;37682:4;37720:2;37709:9;37705:18;37697:26;;37769:9;37763:4;37759:20;37755:1;37744:9;37740:17;37733:47;37797:131;37923:4;37797:131;:::i;:::-;37789:139;;37516:419;;;:::o;37941:141::-;37990:4;38013:3;38005:11;;38036:3;38033:1;38026:14;38070:4;38067:1;38057:18;38049:26;;37941:141;;;:::o;38088:93::-;38125:6;38172:2;38167;38160:5;38156:14;38152:23;38142:33;;38088:93;;;:::o;38187:107::-;38231:8;38281:5;38275:4;38271:16;38250:37;;38187:107;;;;:::o;38300:393::-;38369:6;38419:1;38407:10;38403:18;38442:97;38472:66;38461:9;38442:97;:::i;:::-;38560:39;38590:8;38579:9;38560:39;:::i;:::-;38548:51;;38632:4;38628:9;38621:5;38617:21;38608:30;;38681:4;38671:8;38667:19;38660:5;38657:30;38647:40;;38376:317;;38300:393;;;;;:::o;38699:142::-;38749:9;38782:53;38800:34;38809:24;38827:5;38809:24;:::i;:::-;38800:34;:::i;:::-;38782:53;:::i;:::-;38769:66;;38699:142;;;:::o;38847:75::-;38890:3;38911:5;38904:12;;38847:75;;;:::o;38928:269::-;39038:39;39069:7;39038:39;:::i;:::-;39099:91;39148:41;39172:16;39148:41;:::i;:::-;39140:6;39133:4;39127:11;39099:91;:::i;:::-;39093:4;39086:105;39004:193;38928:269;;;:::o;39203:73::-;39248:3;39203:73;:::o;39282:189::-;39359:32;;:::i;:::-;39400:65;39458:6;39450;39444:4;39400:65;:::i;:::-;39335:136;39282:189;;:::o;39477:186::-;39537:120;39554:3;39547:5;39544:14;39537:120;;;39608:39;39645:1;39638:5;39608:39;:::i;:::-;39581:1;39574:5;39570:13;39561:22;;39537:120;;;39477:186;;:::o;39669:543::-;39770:2;39765:3;39762:11;39759:446;;;39804:38;39836:5;39804:38;:::i;:::-;39888:29;39906:10;39888:29;:::i;:::-;39878:8;39874:44;40071:2;40059:10;40056:18;40053:49;;;40092:8;40077:23;;40053:49;40115:80;40171:22;40189:3;40171:22;:::i;:::-;40161:8;40157:37;40144:11;40115:80;:::i;:::-;39774:431;;39759:446;39669:543;;;:::o;40218:117::-;40272:8;40322:5;40316:4;40312:16;40291:37;;40218:117;;;;:::o;40341:169::-;40385:6;40418:51;40466:1;40462:6;40454:5;40451:1;40447:13;40418:51;:::i;:::-;40414:56;40499:4;40493;40489:15;40479:25;;40392:118;40341:169;;;;:::o;40515:295::-;40591:4;40737:29;40762:3;40756:4;40737:29;:::i;:::-;40729:37;;40799:3;40796:1;40792:11;40786:4;40783:21;40775:29;;40515:295;;;;:::o;40815:1395::-;40932:37;40965:3;40932:37;:::i;:::-;41034:18;41026:6;41023:30;41020:56;;;41056:18;;:::i;:::-;41020:56;41100:38;41132:4;41126:11;41100:38;:::i;:::-;41185:67;41245:6;41237;41231:4;41185:67;:::i;:::-;41279:1;41303:4;41290:17;;41335:2;41327:6;41324:14;41352:1;41347:618;;;;42009:1;42026:6;42023:77;;;42075:9;42070:3;42066:19;42060:26;42051:35;;42023:77;42126:67;42186:6;42179:5;42126:67;:::i;:::-;42120:4;42113:81;41982:222;41317:887;;41347:618;41399:4;41395:9;41387:6;41383:22;41433:37;41465:4;41433:37;:::i;:::-;41492:1;41506:208;41520:7;41517:1;41514:14;41506:208;;;41599:9;41594:3;41590:19;41584:26;41576:6;41569:42;41650:1;41642:6;41638:14;41628:24;;41697:2;41686:9;41682:18;41669:31;;41543:4;41540:1;41536:12;41531:17;;41506:208;;;41742:6;41733:7;41730:19;41727:179;;;41800:9;41795:3;41791:19;41785:26;41843:48;41885:4;41877:6;41873:17;41862:9;41843:48;:::i;:::-;41835:6;41828:64;41750:156;41727:179;41952:1;41948;41940:6;41936:14;41932:22;41926:4;41919:36;41354:611;;;41317:887;;40907:1303;;;40815:1395;;:::o;42216:180::-;42264:77;42261:1;42254:88;42361:4;42358:1;42351:15;42385:4;42382:1;42375:15;42402:148;42504:11;42541:3;42526:18;;42402:148;;;;:::o;42556:390::-;42662:3;42690:39;42723:5;42690:39;:::i;:::-;42745:89;42827:6;42822:3;42745:89;:::i;:::-;42738:96;;42843:65;42901:6;42896:3;42889:4;42882:5;42878:16;42843:65;:::i;:::-;42933:6;42928:3;42924:16;42917:23;;42666:280;42556:390;;;;:::o;42952:435::-;43132:3;43154:95;43245:3;43236:6;43154:95;:::i;:::-;43147:102;;43266:95;43357:3;43348:6;43266:95;:::i;:::-;43259:102;;43378:3;43371:10;;42952:435;;;;;:::o;43393:168::-;43533:20;43529:1;43521:6;43517:14;43510:44;43393:168;:::o;43567:366::-;43709:3;43730:67;43794:2;43789:3;43730:67;:::i;:::-;43723:74;;43806:93;43895:3;43806:93;:::i;:::-;43924:2;43919:3;43915:12;43908:19;;43567:366;;;:::o;43939:419::-;44105:4;44143:2;44132:9;44128:18;44120:26;;44192:9;44186:4;44182:20;44178:1;44167:9;44163:17;44156:47;44220:131;44346:4;44220:131;:::i;:::-;44212:139;;43939:419;;;:::o;44364:176::-;44504:28;44500:1;44492:6;44488:14;44481:52;44364:176;:::o;44546:366::-;44688:3;44709:67;44773:2;44768:3;44709:67;:::i;:::-;44702:74;;44785:93;44874:3;44785:93;:::i;:::-;44903:2;44898:3;44894:12;44887:19;;44546:366;;;:::o;44918:419::-;45084:4;45122:2;45111:9;45107:18;45099:26;;45171:9;45165:4;45161:20;45157:1;45146:9;45142:17;45135:47;45199:131;45325:4;45199:131;:::i;:::-;45191:139;;44918:419;;;:::o;45343:225::-;45483:34;45479:1;45471:6;45467:14;45460:58;45552:8;45547:2;45539:6;45535:15;45528:33;45343:225;:::o;45574:366::-;45716:3;45737:67;45801:2;45796:3;45737:67;:::i;:::-;45730:74;;45813:93;45902:3;45813:93;:::i;:::-;45931:2;45926:3;45922:12;45915:19;;45574:366;;;:::o;45946:419::-;46112:4;46150:2;46139:9;46135:18;46127:26;;46199:9;46193:4;46189:20;46185:1;46174:9;46170:17;46163:47;46227:131;46353:4;46227:131;:::i;:::-;46219:139;;45946:419;;;:::o;46371:332::-;46492:4;46530:2;46519:9;46515:18;46507:26;;46543:71;46611:1;46600:9;46596:17;46587:6;46543:71;:::i;:::-;46624:72;46692:2;46681:9;46677:18;46668:6;46624:72;:::i;:::-;46371:332;;;;;:::o;46709:137::-;46763:5;46794:6;46788:13;46779:22;;46810:30;46834:5;46810:30;:::i;:::-;46709:137;;;;:::o;46852:345::-;46919:6;46968:2;46956:9;46947:7;46943:23;46939:32;46936:119;;;46974:79;;:::i;:::-;46936:119;47094:1;47119:61;47172:7;47163:6;47152:9;47148:22;47119:61;:::i;:::-;47109:71;;47065:125;46852:345;;;;:::o;47203:182::-;47343:34;47339:1;47331:6;47327:14;47320:58;47203:182;:::o;47391:366::-;47533:3;47554:67;47618:2;47613:3;47554:67;:::i;:::-;47547:74;;47630:93;47719:3;47630:93;:::i;:::-;47748:2;47743:3;47739:12;47732:19;;47391:366;;;:::o;47763:419::-;47929:4;47967:2;47956:9;47952:18;47944:26;;48016:9;48010:4;48006:20;48002:1;47991:9;47987:17;47980:47;48044:131;48170:4;48044:131;:::i;:::-;48036:139;;47763:419;;;:::o;48188:94::-;48221:8;48269:5;48265:2;48261:14;48240:35;;48188:94;;;:::o;48288:::-;48327:7;48356:20;48370:5;48356:20;:::i;:::-;48345:31;;48288:94;;;:::o;48388:100::-;48427:7;48456:26;48476:5;48456:26;:::i;:::-;48445:37;;48388:100;;;:::o;48494:157::-;48599:45;48619:24;48637:5;48619:24;:::i;:::-;48599:45;:::i;:::-;48594:3;48587:58;48494:157;;:::o;48657:79::-;48696:7;48725:5;48714:16;;48657:79;;;:::o;48742:157::-;48847:45;48867:24;48885:5;48867:24;:::i;:::-;48847:45;:::i;:::-;48842:3;48835:58;48742:157;;:::o;48905:397::-;49045:3;49060:75;49131:3;49122:6;49060:75;:::i;:::-;49160:2;49155:3;49151:12;49144:19;;49173:75;49244:3;49235:6;49173:75;:::i;:::-;49273:2;49268:3;49264:12;49257:19;;49293:3;49286:10;;48905:397;;;;;:::o;49308:233::-;49347:3;49370:24;49388:5;49370:24;:::i;:::-;49361:33;;49416:66;49409:5;49406:77;49403:103;;49486:18;;:::i;:::-;49403:103;49533:1;49526:5;49522:13;49515:20;;49308:233;;;:::o;49547:98::-;49598:6;49632:5;49626:12;49616:22;;49547:98;;;:::o;49651:168::-;49734:11;49768:6;49763:3;49756:19;49808:4;49803:3;49799:14;49784:29;;49651:168;;;;:::o;49825:373::-;49911:3;49939:38;49971:5;49939:38;:::i;:::-;49993:70;50056:6;50051:3;49993:70;:::i;:::-;49986:77;;50072:65;50130:6;50125:3;50118:4;50111:5;50107:16;50072:65;:::i;:::-;50162:29;50184:6;50162:29;:::i;:::-;50157:3;50153:39;50146:46;;49915:283;49825:373;;;;:::o;50204:640::-;50399:4;50437:3;50426:9;50422:19;50414:27;;50451:71;50519:1;50508:9;50504:17;50495:6;50451:71;:::i;:::-;50532:72;50600:2;50589:9;50585:18;50576:6;50532:72;:::i;:::-;50614;50682:2;50671:9;50667:18;50658:6;50614:72;:::i;:::-;50733:9;50727:4;50723:20;50718:2;50707:9;50703:18;50696:48;50761:76;50832:4;50823:6;50761:76;:::i;:::-;50753:84;;50204:640;;;;;;;:::o;50850:141::-;50906:5;50937:6;50931:13;50922:22;;50953:32;50979:5;50953:32;:::i;:::-;50850:141;;;;:::o;50997:349::-;51066:6;51115:2;51103:9;51094:7;51090:23;51086:32;51083:119;;;51121:79;;:::i;:::-;51083:119;51241:1;51266:63;51321:7;51312:6;51301:9;51297:22;51266:63;:::i;:::-;51256:73;;51212:127;50997:349;;;;:::o
Swarm Source
ipfs://42bf5f3f023b1f324b3d416021b63b4556cbdc65e9464e8eac5aaea271b580b6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.