ERC-721
Overview
Max Total Supply
1,382 BTAC
Holders
284
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BTACLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoredTrialApeClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-29 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/BoredTrialApeClub.sol pragma solidity ^0.8.7; ///@dev // Dependencies: // npm i --save-dev erc721a // npm i @openzeppelin/contracts // import "erc721a/contracts/ERC721A.sol"; // created by: Xaikyō contract BoredTrialApeClub is ERC721A, Ownable, ReentrancyGuard, Pausable{ // uint256 mint variables uint256 public maxSupply = 6969; uint256 public mintPrice = 0.005 ether; // @dev 10 finney = 0.01 ether uint256 public wlMaxMint = 10; uint256 public wlMintPrice = 0.003 ether; uint256 public freeMax = 1; //base uri, base extension string public baseExtension = ".json"; string public baseURI; // booleans for if mint is enabled bool public publicMintEnabled = false; bool public wlMintEnabled = false; bool public revealed = false; // mappings to keep track of # of minted tokens per user mapping(address => uint256) public totalWlMint; mapping(address => uint256) public totalFreeMints; // merkle root bytes32 public root; constructor ( string memory _initBaseURI, bytes32 _root ) ERC721A("Bored Trial Ape Club", "BTAC") { setBaseURI(_initBaseURI); setRoot(_root); } function teamMint(address[] calldata _address, uint256 _amount) external onlyOwner nonReentrant { require(totalSupply() + _amount <= maxSupply, "Error: max supply reached"); for (uint i = 0; i < _address.length; i++) { _safeMint(_address[i], _amount); } } // Whitelist mint that requires merkle proof; user receives 1 free function whitelistMint(uint256 _quantity, bytes32[] memory proof) external payable whenNotPaused nonReentrant { if (totalFreeMints[msg.sender] == 0 && freeMax <= 1000) { require(freeMax <= 1000, "No more free apes left!"); require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of whitelist"); require(wlMintEnabled, "Whitelist mint is currently paused"); require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached"); require((totalWlMint[msg.sender] + _quantity) <= wlMaxMint, "Error: Cannot mint more than 10"); require(msg.value >= ((_quantity * wlMintPrice) - wlMintPrice), "Not enough ether sent"); totalFreeMints[msg.sender] += 1; freeMax += 1; totalWlMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } else { require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of whitelist"); require(wlMintEnabled, "Whitelist mint is currently paused"); require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached"); require((totalWlMint[msg.sender] + _quantity) <= wlMaxMint, "Error: Cannot mint more than 10"); require(msg.value >= (_quantity * wlMintPrice), "Not enough ether sent"); totalWlMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } } // verify merkle proof with a buf2hex(keccak256(address)) or keccak256(abi.encodePacked(address)) function isValid(bytes32[] memory proof, bytes32 leaf) public view returns(bool) { return MerkleProof.verify(proof, root, leaf); } // Public mint with 20 per tx limit function publicMint(uint256 _quantity) external payable whenNotPaused nonReentrant { require(_quantity <= 20, "Cannot mint more than 20 per tx"); require(publicMintEnabled, "Public mint is currently paused"); require(msg.value >= (_quantity * mintPrice), "Not enough ether sent"); require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached"); _safeMint(msg.sender, _quantity); } // returns the baseuri of collection, private function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // override _statTokenId() from erc721a to start tokenId at 1 function _startTokenId() internal view virtual override returns (uint256) { return 1; } // return tokenUri given the tokenId function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return baseURI; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), baseExtension)) : ""; } } // owner updates and functions function togglePublicMint() external onlyOwner nonReentrant{ publicMintEnabled = !publicMintEnabled; } function toggleWlMint() external onlyOwner nonReentrant{ wlMintEnabled = !wlMintEnabled; } function enableBothMints() external onlyOwner nonReentrant{ wlMintEnabled = true; publicMintEnabled = true; } function setPrice(uint256 _mintPrice) external onlyOwner nonReentrant{ mintPrice = _mintPrice; } function setWlPrice(uint256 _wlMintPrice) external onlyOwner nonReentrant{ wlMintPrice = _wlMintPrice; } function setmaxWl(uint256 _wlMaxMint) external onlyOwner nonReentrant{ wlMaxMint = _wlMaxMint; } function pause() public onlyOwner nonReentrant{ _pause(); } function unpause() public onlyOwner nonReentrant{ _unpause(); } function setBaseURI(string memory _newURI) public onlyOwner nonReentrant{ baseURI = _newURI; } function toggleReveal() public onlyOwner nonReentrant { revealed = !revealed; } function setRoot(bytes32 _root) public onlyOwner nonReentrant { root = _root; } // withdraw to owner(), i.e only if msg.sender is owner function withdraw() external onlyOwner nonReentrant { payable(0x3e242C5CFfbF57cB3575Bc0e0327eaE8bD7f0252).transfer(address(this).balance * 15 / 100); payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableBothMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","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":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMintPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMaxMint","type":"uint256"}],"name":"setmaxWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWlMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWlMint","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052611b39600b556611c37937e08000600c55600a600d55660aa87bee538000600e556001600f556040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506010908051906020019062000077929190620004a9565b506000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000d657600080fd5b5060405162004f4538038062004f458339818101604052810190620000fc9190620005ee565b6040518060400160405280601481526020017f426f72656420547269616c2041706520436c75620000000000000000000000008152506040518060400160405280600481526020017f4254414300000000000000000000000000000000000000000000000000000000815250816002908051906020019062000180929190620004a9565b50806003908051906020019062000199929190620004a9565b50620001aa6200021f60201b60201c565b6000819055505050620001d2620001c66200022860201b60201c565b6200023060201b60201c565b60016009819055506000600a60006101000a81548160ff0219169083151502179055506200020682620002f660201b60201c565b62000217816200037b60201b60201c565b5050620008f1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000306620003ee60201b60201c565b600260095414156200034f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034690620006c4565b60405180910390fd5b600260098190555080601190805190602001906200036f929190620004a9565b50600160098190555050565b6200038b620003ee60201b60201c565b60026009541415620003d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cb90620006c4565b60405180910390fd5b600260098190555080601581905550600160098190555050565b620003fe6200022860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004246200047f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200047d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047490620006a2565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004b79062000796565b90600052602060002090601f016020900481019282620004db576000855562000527565b82601f10620004f657805160ff191683800117855562000527565b8280016001018555821562000527579182015b828111156200052657825182559160200191906001019062000509565b5b5090506200053691906200053a565b5090565b5b80821115620005555760008160009055506001016200053b565b5090565b6000620005706200056a846200070f565b620006e6565b9050828152602081018484840111156200058f576200058e62000865565b5b6200059c84828562000760565b509392505050565b600081519050620005b581620008d7565b92915050565b600082601f830112620005d357620005d262000860565b5b8151620005e584826020860162000559565b91505092915050565b600080604083850312156200060857620006076200086f565b5b600083015167ffffffffffffffff8111156200062957620006286200086a565b5b6200063785828601620005bb565b92505060206200064a85828601620005a4565b9150509250929050565b60006200066360208362000745565b9150620006708262000885565b602082019050919050565b60006200068a601f8362000745565b91506200069782620008ae565b602082019050919050565b60006020820190508181036000830152620006bd8162000654565b9050919050565b60006020820190508181036000830152620006df816200067b565b9050919050565b6000620006f262000705565b9050620007008282620007cc565b919050565b6000604051905090565b600067ffffffffffffffff8211156200072d576200072c62000831565b5b620007388262000874565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200078057808201518184015260208101905062000763565b8381111562000790576000848401525b50505050565b60006002820490506001821680620007af57607f821691505b60208210811415620007c657620007c562000802565b5b50919050565b620007d78262000874565b810181811067ffffffffffffffff82111715620007f957620007f862000831565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b620008e28162000756565b8114620008ee57600080fd5b50565b61464480620009016000396000f3fe6080604052600436106102885760003560e01c80636c0360eb1161015a578063b8a20ed0116100c1578063e4b356831161007a578063e4b35683146108e8578063e985e9c514610913578063ebf0c71714610950578063f2dc824c1461097b578063f2e83403146109a4578063f2fde38b146109e157610288565b8063b8a20ed0146107d3578063c668286214610810578063c87b56dd1461083b578063d2cab05614610878578063d5abeb0114610894578063dab5f340146108bf57610288565b806391b7f5ed1161011357806391b7f5ed146106f857806395d89b41146107215780639c08feb21461074c578063a22cb46514610763578063b85861871461078c578063b88d4fde146107b757610288565b80636c0360eb1461060e57806370a0823114610639578063715018a6146106765780638456cb591461068d5780638da5cb5b146106a45780638dd07d0f146106cf57610288565b806337321ec8116101fe57806351830227116101b7578063518302271461051057806355f804b31461053b5780635b8ad429146105645780635c975abb1461057b5780636352211e146105a65780636817c76c146105e357610288565b806337321ec81461045b5780633ccfd60b146104985780633f4ba83a146104af5780634047638d146104c657806342842e0e146104dd578063450f6b86146104f957610288565b806311f95ac31161025057806311f95ac31461037957806318160ddd146103a457806323b872dd146103cf578063258e835b146103eb5780632c4e9fc6146104145780632db115441461043f57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780630f4161aa1461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906136a3565b610a0a565b6040516102c19190613be1565b60405180910390f35b3480156102d657600080fd5b506102df610a9c565b6040516102ec9190613c17565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613746565b610b2e565b6040516103299190613b7a565b60405180910390f35b61034c6004803603810190610347919061357a565b610bad565b005b34801561035a57600080fd5b50610363610cf1565b6040516103709190613be1565b60405180910390f35b34801561038557600080fd5b5061038e610d04565b60405161039b9190613be1565b60405180910390f35b3480156103b057600080fd5b506103b9610d17565b6040516103c69190613df9565b60405180910390f35b6103e960048036038101906103e49190613464565b610d2e565b005b3480156103f757600080fd5b50610412600480360381019061040d9190613746565b611053565b005b34801561042057600080fd5b506104296110bb565b6040516104369190613df9565b60405180910390f35b61045960048036038101906104549190613746565b6110c1565b005b34801561046757600080fd5b50610482600480360381019061047d91906133f7565b611266565b60405161048f9190613df9565b60405180910390f35b3480156104a457600080fd5b506104ad61127e565b005b3480156104bb57600080fd5b506104c461139f565b005b3480156104d257600080fd5b506104db611407565b005b6104f760048036038101906104f29190613464565b611491565b005b34801561050557600080fd5b5061050e6114b1565b005b34801561051c57600080fd5b50610525611547565b6040516105329190613be1565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906136fd565b61155a565b005b34801561057057600080fd5b506105796115d2565b005b34801561058757600080fd5b5061059061165c565b60405161059d9190613be1565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613746565b611673565b6040516105da9190613b7a565b60405180910390f35b3480156105ef57600080fd5b506105f8611685565b6040516106059190613df9565b60405180910390f35b34801561061a57600080fd5b5061062361168b565b6040516106309190613c17565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b91906133f7565b611719565b60405161066d9190613df9565b60405180910390f35b34801561068257600080fd5b5061068b6117d2565b005b34801561069957600080fd5b506106a26117e6565b005b3480156106b057600080fd5b506106b961184e565b6040516106c69190613b7a565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613746565b611878565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613746565b6118e0565b005b34801561072d57600080fd5b50610736611948565b6040516107439190613c17565b60405180910390f35b34801561075857600080fd5b506107616119da565b005b34801561076f57600080fd5b5061078a6004803603810190610785919061353a565b611a64565b005b34801561079857600080fd5b506107a1611b6f565b6040516107ae9190613df9565b60405180910390f35b6107d160048036038101906107cc91906134b7565b611b75565b005b3480156107df57600080fd5b506107fa60048036038101906107f5919061361a565b611be8565b6040516108079190613be1565b60405180910390f35b34801561081c57600080fd5b50610825611bff565b6040516108329190613c17565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613746565b611c8d565b60405161086f9190613c17565b60405180910390f35b610892600480360381019061088d9190613773565b611de6565b005b3480156108a057600080fd5b506108a9612413565b6040516108b69190613df9565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613676565b612419565b005b3480156108f457600080fd5b506108fd612481565b60405161090a9190613df9565b60405180910390f35b34801561091f57600080fd5b5061093a60048036038101906109359190613424565b612487565b6040516109479190613be1565b60405180910390f35b34801561095c57600080fd5b5061096561251b565b6040516109729190613bfc565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d91906135ba565b612521565b005b3480156109b057600080fd5b506109cb60048036038101906109c691906133f7565b61262e565b6040516109d89190613df9565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906133f7565b612646565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610aab906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad7906140f4565b8015610b245780601f10610af957610100808354040283529160200191610b24565b820191906000526020600020905b815481529060010190602001808311610b0757829003601f168201915b5050505050905090565b6000610b39826126ca565b610b6f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb882611673565b90508073ffffffffffffffffffffffffffffffffffffffff16610bd9612729565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c57610c0581610c00612729565b612487565b610c3b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000610d21612731565b6001546000540303905090565b6000610d398261273a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dac84612808565b91509150610dc28187610dbd612729565b61282f565b610e0e57610dd786610dd2612729565b612487565b610e0d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e828686866001612873565b8015610e8d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f5b85610f37888887612879565b7c0200000000000000000000000000000000000000000000000000000000176128a1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fe3576000600185019050600060046000838152602001908152602001600020541415610fe1576000548114610fe0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461104b86868660016128cc565b505050505050565b61105b6128d2565b600260095414156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890613dd9565b60405180910390fd5b600260098190555080600d81905550600160098190555050565b600e5481565b6110c9612950565b6002600954141561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613dd9565b60405180910390fd5b6002600981905550601481111561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290613d59565b60405180910390fd5b601260009054906101000a900460ff166111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613d99565b60405180910390fd5b600c54816111b89190613fa6565b3410156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613d79565b60405180910390fd5b600b5481611206610d17565b6112109190613f1f565b1115611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613d39565b60405180910390fd5b61125b338261299a565b600160098190555050565b60146020528060005260406000206000915090505481565b6112866128d2565b600260095414156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613dd9565b60405180910390fd5b6002600981905550733e242c5cffbf57cb3575bc0e0327eae8bd7f025273ffffffffffffffffffffffffffffffffffffffff166108fc6064600f476113119190613fa6565b61131b9190613f75565b9081150290604051600060405180830381858888f19350505050158015611346573d6000803e3d6000fd5b5061134f61184e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611394573d6000803e3d6000fd5b506001600981905550565b6113a76128d2565b600260095414156113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490613dd9565b60405180910390fd5b60026009819055506113fd6129b8565b6001600981905550565b61140f6128d2565b60026009541415611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613dd9565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615601260006101000a81548160ff0219169083151502179055506001600981905550565b6114ac83838360405180602001604052806000815250611b75565b505050565b6114b96128d2565b600260095414156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613dd9565b60405180910390fd5b60026009819055506001601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff0219169083151502179055506001600981905550565b601260029054906101000a900460ff1681565b6115626128d2565b600260095414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613dd9565b60405180910390fd5b600260098190555080601190805190602001906115c6929190613102565b50600160098190555050565b6115da6128d2565b60026009541415611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613dd9565b60405180910390fd5b6002600981905550601260029054906101000a900460ff1615601260026101000a81548160ff0219169083151502179055506001600981905550565b6000600a60009054906101000a900460ff16905090565b600061167e8261273a565b9050919050565b600c5481565b60118054611698906140f4565b80601f01602080910402602001604051908101604052809291908181526020018280546116c4906140f4565b80156117115780601f106116e657610100808354040283529160200191611711565b820191906000526020600020905b8154815290600101906020018083116116f457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611781576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117da6128d2565b6117e46000612a1b565b565b6117ee6128d2565b60026009541415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613dd9565b60405180910390fd5b6002600981905550611844612ae1565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118806128d2565b600260095414156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613dd9565b60405180910390fd5b600260098190555080600e81905550600160098190555050565b6118e86128d2565b6002600954141561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613dd9565b60405180910390fd5b600260098190555080600c81905550600160098190555050565b606060038054611957906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611983906140f4565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b5050505050905090565b6119e26128d2565b60026009541415611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613dd9565b60405180910390fd5b6002600981905550601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506001600981905550565b8060076000611a71612729565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1e612729565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b639190613be1565b60405180910390a35050565b600f5481565b611b80848484610d2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611be257611bab84848484612b44565b611be1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611bf78360155484612ca4565b905092915050565b60108054611c0c906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c38906140f4565b8015611c855780601f10611c5a57610100808354040283529160200191611c85565b820191906000526020600020905b815481529060010190602001808311611c6857829003601f168201915b505050505081565b6060611c98826126ca565b611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613cf9565b60405180910390fd5b60001515601260029054906101000a900460ff1615151415611d855760118054611d00906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2c906140f4565b8015611d795780601f10611d4e57610100808354040283529160200191611d79565b820191906000526020600020905b815481529060010190602001808311611d5c57829003601f168201915b50505050509050611de1565b6000611d8f612cbb565b90506000815111611daf5760405180602001604052806000815250611ddd565b80611db984612d4d565b6010604051602001611dcd93929190613b49565b6040516020818303038152906040525b9150505b919050565b611dee612950565b60026009541415611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613dd9565b60405180910390fd5b60026009819055506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611e8f57506103e8600f5411155b156121b2576103e8600f541115611edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed290613db9565b60405180910390fd5b611f0b8133604051602001611ef09190613b2e565b60405160208183030381529060405280519060200120611be8565b611f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4190613cb9565b60405180910390fd5b601260019054906101000a900460ff16611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613d19565b60405180910390fd5b600b5482611fa5610d17565b611faf9190613f1f565b1115611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613d39565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461203e9190613f1f565b111561207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690613c79565b60405180910390fd5b600e54600e54836120909190613fa6565b61209a9190614000565b3410156120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390613d79565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212c9190613f1f565b925050819055506001600f60008282546121469190613f1f565b9250508190555081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219c9190613f1f565b925050819055506121ad338361299a565b612407565b6121e281336040516020016121c79190613b2e565b60405160208183030381529060405280519060200120611be8565b612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890613cb9565b60405180910390fd5b601260019054906101000a900460ff16612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790613d19565b60405180910390fd5b600b548261227c610d17565b6122869190613f1f565b11156122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90613d39565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123159190613f1f565b1115612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90613c79565b60405180910390fd5b600e54826123649190613fa6565b3410156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90613d79565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f59190613f1f565b92505081905550612406338361299a565b5b60016009819055505050565b600b5481565b6124216128d2565b60026009541415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90613dd9565b60405180910390fd5b600260098190555080601581905550600160098190555050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b6125296128d2565b6002600954141561256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613dd9565b60405180910390fd5b6002600981905550600b5481612583610d17565b61258d9190613f1f565b11156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c590613d39565b60405180910390fd5b60005b838390508110156126205761260d8484838181106125f2576125f1614251565b5b905060200201602081019061260791906133f7565b8361299a565b808061261890614157565b9150506125d1565b506001600981905550505050565b60136020528060005260406000206000915090505481565b61264e6128d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590613c59565b60405180910390fd5b6126c781612a1b565b50565b6000816126d5612731565b111580156126e4575060005482105b8015612722575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612749612731565b116127d1576000548110156127d05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156127ce575b60008114156127c4576004600083600190039350838152602001908152602001600020549050612799565b8092505050612803565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612890868684612da6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6128da612daf565b73ffffffffffffffffffffffffffffffffffffffff166128f861184e565b73ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590613cd9565b60405180910390fd5b565b61295861165c565b15612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f90613c99565b60405180910390fd5b565b6129b4828260405180602001604052806000815250612db7565b5050565b6129c0612e54565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a04612daf565b604051612a119190613b7a565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ae9612950565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b2d612daf565b604051612b3a9190613b7a565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6a612729565b8786866040518563ffffffff1660e01b8152600401612b8c9493929190613b95565b602060405180830381600087803b158015612ba657600080fd5b505af1925050508015612bd757506040513d601f19601f82011682018060405250810190612bd491906136d0565b60015b612c51573d8060008114612c07576040519150601f19603f3d011682016040523d82523d6000602084013e612c0c565b606091505b50600081511415612c49576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082612cb18584612e9d565b1490509392505050565b606060118054612cca906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054612cf6906140f4565b8015612d435780601f10612d1857610100808354040283529160200191612d43565b820191906000526020600020905b815481529060010190602001808311612d2657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612d9157600184039350600a81066030018453600a8104905080612d8c57612d91565b612d66565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b612dc18383612ef3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e4f57600080549050600083820390505b612e016000868380600101945086612b44565b612e37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612dee578160005414612e4c57600080fd5b50505b505050565b612e5c61165c565b612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290613c39565b60405180910390fd5b565b60008082905060005b8451811015612ee857612ed382868381518110612ec657612ec5614251565b5b60200260200101516130b0565b91508080612ee090614157565b915050612ea6565b508091505092915050565b6000805490506000821415612f34576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f416000848385612873565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fb883612fa96000866000612879565b612fb2856130db565b176128a1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461305957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061301e565b506000821415613095576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130ab60008483856128cc565b505050565b60008183106130c8576130c382846130eb565b6130d3565b6130d283836130eb565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461310e906140f4565b90600052602060002090601f0160209004810192826131305760008555613177565b82601f1061314957805160ff1916838001178555613177565b82800160010185558215613177579182015b8281111561317657825182559160200191906001019061315b565b5b5090506131849190613188565b5090565b5b808211156131a1576000816000905550600101613189565b5090565b60006131b86131b384613e39565b613e14565b905080838252602082019050828560208602820111156131db576131da6142b9565b5b60005b8581101561320b57816131f18882613347565b8452602084019350602083019250506001810190506131de565b5050509392505050565b600061322861322384613e65565b613e14565b905082815260208101848484011115613244576132436142be565b5b61324f8482856140b2565b509392505050565b600061326a61326584613e96565b613e14565b905082815260208101848484011115613286576132856142be565b5b6132918482856140b2565b509392505050565b6000813590506132a88161459b565b92915050565b60008083601f8401126132c4576132c36142b4565b5b8235905067ffffffffffffffff8111156132e1576132e06142af565b5b6020830191508360208202830111156132fd576132fc6142b9565b5b9250929050565b600082601f830112613319576133186142b4565b5b81356133298482602086016131a5565b91505092915050565b600081359050613341816145b2565b92915050565b600081359050613356816145c9565b92915050565b60008135905061336b816145e0565b92915050565b600081519050613380816145e0565b92915050565b600082601f83011261339b5761339a6142b4565b5b81356133ab848260208601613215565b91505092915050565b600082601f8301126133c9576133c86142b4565b5b81356133d9848260208601613257565b91505092915050565b6000813590506133f1816145f7565b92915050565b60006020828403121561340d5761340c6142c8565b5b600061341b84828501613299565b91505092915050565b6000806040838503121561343b5761343a6142c8565b5b600061344985828601613299565b925050602061345a85828601613299565b9150509250929050565b60008060006060848603121561347d5761347c6142c8565b5b600061348b86828701613299565b935050602061349c86828701613299565b92505060406134ad868287016133e2565b9150509250925092565b600080600080608085870312156134d1576134d06142c8565b5b60006134df87828801613299565b94505060206134f087828801613299565b9350506040613501878288016133e2565b925050606085013567ffffffffffffffff811115613522576135216142c3565b5b61352e87828801613386565b91505092959194509250565b60008060408385031215613551576135506142c8565b5b600061355f85828601613299565b925050602061357085828601613332565b9150509250929050565b60008060408385031215613591576135906142c8565b5b600061359f85828601613299565b92505060206135b0858286016133e2565b9150509250929050565b6000806000604084860312156135d3576135d26142c8565b5b600084013567ffffffffffffffff8111156135f1576135f06142c3565b5b6135fd868287016132ae565b93509350506020613610868287016133e2565b9150509250925092565b60008060408385031215613631576136306142c8565b5b600083013567ffffffffffffffff81111561364f5761364e6142c3565b5b61365b85828601613304565b925050602061366c85828601613347565b9150509250929050565b60006020828403121561368c5761368b6142c8565b5b600061369a84828501613347565b91505092915050565b6000602082840312156136b9576136b86142c8565b5b60006136c78482850161335c565b91505092915050565b6000602082840312156136e6576136e56142c8565b5b60006136f484828501613371565b91505092915050565b600060208284031215613713576137126142c8565b5b600082013567ffffffffffffffff811115613731576137306142c3565b5b61373d848285016133b4565b91505092915050565b60006020828403121561375c5761375b6142c8565b5b600061376a848285016133e2565b91505092915050565b6000806040838503121561378a576137896142c8565b5b6000613798858286016133e2565b925050602083013567ffffffffffffffff8111156137b9576137b86142c3565b5b6137c585828601613304565b9150509250929050565b6137d881614034565b82525050565b6137ef6137ea82614034565b6141a0565b82525050565b6137fe81614046565b82525050565b61380d81614052565b82525050565b600061381e82613edc565b6138288185613ef2565b93506138388185602086016140c1565b613841816142cd565b840191505092915050565b600061385782613ee7565b6138618185613f03565b93506138718185602086016140c1565b61387a816142cd565b840191505092915050565b600061389082613ee7565b61389a8185613f14565b93506138aa8185602086016140c1565b80840191505092915050565b600081546138c3816140f4565b6138cd8186613f14565b945060018216600081146138e857600181146138f95761392c565b60ff1983168652818601935061392c565b61390285613ec7565b60005b8381101561392457815481890152600182019150602081019050613905565b838801955050505b50505092915050565b6000613942601483613f03565b915061394d826142eb565b602082019050919050565b6000613965602683613f03565b915061397082614314565b604082019050919050565b6000613988601f83613f03565b915061399382614363565b602082019050919050565b60006139ab601083613f03565b91506139b68261438c565b602082019050919050565b60006139ce601783613f03565b91506139d9826143b5565b602082019050919050565b60006139f1602083613f03565b91506139fc826143de565b602082019050919050565b6000613a14602f83613f03565b9150613a1f82614407565b604082019050919050565b6000613a37602283613f03565b9150613a4282614456565b604082019050919050565b6000613a5a601983613f03565b9150613a65826144a5565b602082019050919050565b6000613a7d601f83613f03565b9150613a88826144ce565b602082019050919050565b6000613aa0601583613f03565b9150613aab826144f7565b602082019050919050565b6000613ac3601f83613f03565b9150613ace82614520565b602082019050919050565b6000613ae6601783613f03565b9150613af182614549565b602082019050919050565b6000613b09601f83613f03565b9150613b1482614572565b602082019050919050565b613b28816140a8565b82525050565b6000613b3a82846137de565b60148201915081905092915050565b6000613b558286613885565b9150613b618285613885565b9150613b6d82846138b6565b9150819050949350505050565b6000602082019050613b8f60008301846137cf565b92915050565b6000608082019050613baa60008301876137cf565b613bb760208301866137cf565b613bc46040830185613b1f565b8181036060830152613bd68184613813565b905095945050505050565b6000602082019050613bf660008301846137f5565b92915050565b6000602082019050613c116000830184613804565b92915050565b60006020820190508181036000830152613c31818461384c565b905092915050565b60006020820190508181036000830152613c5281613935565b9050919050565b60006020820190508181036000830152613c7281613958565b9050919050565b60006020820190508181036000830152613c928161397b565b9050919050565b60006020820190508181036000830152613cb28161399e565b9050919050565b60006020820190508181036000830152613cd2816139c1565b9050919050565b60006020820190508181036000830152613cf2816139e4565b9050919050565b60006020820190508181036000830152613d1281613a07565b9050919050565b60006020820190508181036000830152613d3281613a2a565b9050919050565b60006020820190508181036000830152613d5281613a4d565b9050919050565b60006020820190508181036000830152613d7281613a70565b9050919050565b60006020820190508181036000830152613d9281613a93565b9050919050565b60006020820190508181036000830152613db281613ab6565b9050919050565b60006020820190508181036000830152613dd281613ad9565b9050919050565b60006020820190508181036000830152613df281613afc565b9050919050565b6000602082019050613e0e6000830184613b1f565b92915050565b6000613e1e613e2f565b9050613e2a8282614126565b919050565b6000604051905090565b600067ffffffffffffffff821115613e5457613e53614280565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e8057613e7f614280565b5b613e89826142cd565b9050602081019050919050565b600067ffffffffffffffff821115613eb157613eb0614280565b5b613eba826142cd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f2a826140a8565b9150613f35836140a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6a57613f696141c4565b5b828201905092915050565b6000613f80826140a8565b9150613f8b836140a8565b925082613f9b57613f9a6141f3565b5b828204905092915050565b6000613fb1826140a8565b9150613fbc836140a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff557613ff46141c4565b5b828202905092915050565b600061400b826140a8565b9150614016836140a8565b925082821015614029576140286141c4565b5b828203905092915050565b600061403f82614088565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140df5780820151818401526020810190506140c4565b838111156140ee576000848401525b50505050565b6000600282049050600182168061410c57607f821691505b602082108114156141205761411f614222565b5b50919050565b61412f826142cd565b810181811067ffffffffffffffff8211171561414e5761414d614280565b5b80604052505050565b6000614162826140a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614195576141946141c4565b5b600182019050919050565b60006141ab826141b2565b9050919050565b60006141bd826142de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20313000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e6f7420612070617274206f662077686974656c697374000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e742069732063757272656e746c79207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032302070657220747800600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f4e6f206d6f726520667265652061706573206c65667421000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6145a481614034565b81146145af57600080fd5b50565b6145bb81614046565b81146145c657600080fd5b50565b6145d281614052565b81146145dd57600080fd5b50565b6145e98161405c565b81146145f457600080fd5b50565b614600816140a8565b811461460b57600080fd5b5056fea2646970667358221220ea4012f875484573b6a4f6a1376c11c2c4c7b63cf514781872e9cca4e673c57b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004082201842d8696cb7e9c4e2f47324ec1f199bfcb94c1631ff6e46736ae1af3c25000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a3467786d504c783274686e474b4b32757a6b73484e345031754b64746742646359586e3758673267346b572f68696464656e2e6a736f6e00000000
Deployed Bytecode
0x6080604052600436106102885760003560e01c80636c0360eb1161015a578063b8a20ed0116100c1578063e4b356831161007a578063e4b35683146108e8578063e985e9c514610913578063ebf0c71714610950578063f2dc824c1461097b578063f2e83403146109a4578063f2fde38b146109e157610288565b8063b8a20ed0146107d3578063c668286214610810578063c87b56dd1461083b578063d2cab05614610878578063d5abeb0114610894578063dab5f340146108bf57610288565b806391b7f5ed1161011357806391b7f5ed146106f857806395d89b41146107215780639c08feb21461074c578063a22cb46514610763578063b85861871461078c578063b88d4fde146107b757610288565b80636c0360eb1461060e57806370a0823114610639578063715018a6146106765780638456cb591461068d5780638da5cb5b146106a45780638dd07d0f146106cf57610288565b806337321ec8116101fe57806351830227116101b7578063518302271461051057806355f804b31461053b5780635b8ad429146105645780635c975abb1461057b5780636352211e146105a65780636817c76c146105e357610288565b806337321ec81461045b5780633ccfd60b146104985780633f4ba83a146104af5780634047638d146104c657806342842e0e146104dd578063450f6b86146104f957610288565b806311f95ac31161025057806311f95ac31461037957806318160ddd146103a457806323b872dd146103cf578063258e835b146103eb5780632c4e9fc6146104145780632db115441461043f57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780630f4161aa1461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906136a3565b610a0a565b6040516102c19190613be1565b60405180910390f35b3480156102d657600080fd5b506102df610a9c565b6040516102ec9190613c17565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613746565b610b2e565b6040516103299190613b7a565b60405180910390f35b61034c6004803603810190610347919061357a565b610bad565b005b34801561035a57600080fd5b50610363610cf1565b6040516103709190613be1565b60405180910390f35b34801561038557600080fd5b5061038e610d04565b60405161039b9190613be1565b60405180910390f35b3480156103b057600080fd5b506103b9610d17565b6040516103c69190613df9565b60405180910390f35b6103e960048036038101906103e49190613464565b610d2e565b005b3480156103f757600080fd5b50610412600480360381019061040d9190613746565b611053565b005b34801561042057600080fd5b506104296110bb565b6040516104369190613df9565b60405180910390f35b61045960048036038101906104549190613746565b6110c1565b005b34801561046757600080fd5b50610482600480360381019061047d91906133f7565b611266565b60405161048f9190613df9565b60405180910390f35b3480156104a457600080fd5b506104ad61127e565b005b3480156104bb57600080fd5b506104c461139f565b005b3480156104d257600080fd5b506104db611407565b005b6104f760048036038101906104f29190613464565b611491565b005b34801561050557600080fd5b5061050e6114b1565b005b34801561051c57600080fd5b50610525611547565b6040516105329190613be1565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906136fd565b61155a565b005b34801561057057600080fd5b506105796115d2565b005b34801561058757600080fd5b5061059061165c565b60405161059d9190613be1565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613746565b611673565b6040516105da9190613b7a565b60405180910390f35b3480156105ef57600080fd5b506105f8611685565b6040516106059190613df9565b60405180910390f35b34801561061a57600080fd5b5061062361168b565b6040516106309190613c17565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b91906133f7565b611719565b60405161066d9190613df9565b60405180910390f35b34801561068257600080fd5b5061068b6117d2565b005b34801561069957600080fd5b506106a26117e6565b005b3480156106b057600080fd5b506106b961184e565b6040516106c69190613b7a565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613746565b611878565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613746565b6118e0565b005b34801561072d57600080fd5b50610736611948565b6040516107439190613c17565b60405180910390f35b34801561075857600080fd5b506107616119da565b005b34801561076f57600080fd5b5061078a6004803603810190610785919061353a565b611a64565b005b34801561079857600080fd5b506107a1611b6f565b6040516107ae9190613df9565b60405180910390f35b6107d160048036038101906107cc91906134b7565b611b75565b005b3480156107df57600080fd5b506107fa60048036038101906107f5919061361a565b611be8565b6040516108079190613be1565b60405180910390f35b34801561081c57600080fd5b50610825611bff565b6040516108329190613c17565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613746565b611c8d565b60405161086f9190613c17565b60405180910390f35b610892600480360381019061088d9190613773565b611de6565b005b3480156108a057600080fd5b506108a9612413565b6040516108b69190613df9565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613676565b612419565b005b3480156108f457600080fd5b506108fd612481565b60405161090a9190613df9565b60405180910390f35b34801561091f57600080fd5b5061093a60048036038101906109359190613424565b612487565b6040516109479190613be1565b60405180910390f35b34801561095c57600080fd5b5061096561251b565b6040516109729190613bfc565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d91906135ba565b612521565b005b3480156109b057600080fd5b506109cb60048036038101906109c691906133f7565b61262e565b6040516109d89190613df9565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906133f7565b612646565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610aab906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad7906140f4565b8015610b245780601f10610af957610100808354040283529160200191610b24565b820191906000526020600020905b815481529060010190602001808311610b0757829003601f168201915b5050505050905090565b6000610b39826126ca565b610b6f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb882611673565b90508073ffffffffffffffffffffffffffffffffffffffff16610bd9612729565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c57610c0581610c00612729565b612487565b610c3b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000610d21612731565b6001546000540303905090565b6000610d398261273a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dac84612808565b91509150610dc28187610dbd612729565b61282f565b610e0e57610dd786610dd2612729565b612487565b610e0d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e828686866001612873565b8015610e8d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f5b85610f37888887612879565b7c0200000000000000000000000000000000000000000000000000000000176128a1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fe3576000600185019050600060046000838152602001908152602001600020541415610fe1576000548114610fe0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461104b86868660016128cc565b505050505050565b61105b6128d2565b600260095414156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890613dd9565b60405180910390fd5b600260098190555080600d81905550600160098190555050565b600e5481565b6110c9612950565b6002600954141561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613dd9565b60405180910390fd5b6002600981905550601481111561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290613d59565b60405180910390fd5b601260009054906101000a900460ff166111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613d99565b60405180910390fd5b600c54816111b89190613fa6565b3410156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613d79565b60405180910390fd5b600b5481611206610d17565b6112109190613f1f565b1115611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613d39565b60405180910390fd5b61125b338261299a565b600160098190555050565b60146020528060005260406000206000915090505481565b6112866128d2565b600260095414156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613dd9565b60405180910390fd5b6002600981905550733e242c5cffbf57cb3575bc0e0327eae8bd7f025273ffffffffffffffffffffffffffffffffffffffff166108fc6064600f476113119190613fa6565b61131b9190613f75565b9081150290604051600060405180830381858888f19350505050158015611346573d6000803e3d6000fd5b5061134f61184e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611394573d6000803e3d6000fd5b506001600981905550565b6113a76128d2565b600260095414156113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490613dd9565b60405180910390fd5b60026009819055506113fd6129b8565b6001600981905550565b61140f6128d2565b60026009541415611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613dd9565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615601260006101000a81548160ff0219169083151502179055506001600981905550565b6114ac83838360405180602001604052806000815250611b75565b505050565b6114b96128d2565b600260095414156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613dd9565b60405180910390fd5b60026009819055506001601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff0219169083151502179055506001600981905550565b601260029054906101000a900460ff1681565b6115626128d2565b600260095414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613dd9565b60405180910390fd5b600260098190555080601190805190602001906115c6929190613102565b50600160098190555050565b6115da6128d2565b60026009541415611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613dd9565b60405180910390fd5b6002600981905550601260029054906101000a900460ff1615601260026101000a81548160ff0219169083151502179055506001600981905550565b6000600a60009054906101000a900460ff16905090565b600061167e8261273a565b9050919050565b600c5481565b60118054611698906140f4565b80601f01602080910402602001604051908101604052809291908181526020018280546116c4906140f4565b80156117115780601f106116e657610100808354040283529160200191611711565b820191906000526020600020905b8154815290600101906020018083116116f457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611781576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117da6128d2565b6117e46000612a1b565b565b6117ee6128d2565b60026009541415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613dd9565b60405180910390fd5b6002600981905550611844612ae1565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118806128d2565b600260095414156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613dd9565b60405180910390fd5b600260098190555080600e81905550600160098190555050565b6118e86128d2565b6002600954141561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613dd9565b60405180910390fd5b600260098190555080600c81905550600160098190555050565b606060038054611957906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611983906140f4565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b5050505050905090565b6119e26128d2565b60026009541415611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613dd9565b60405180910390fd5b6002600981905550601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506001600981905550565b8060076000611a71612729565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1e612729565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b639190613be1565b60405180910390a35050565b600f5481565b611b80848484610d2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611be257611bab84848484612b44565b611be1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611bf78360155484612ca4565b905092915050565b60108054611c0c906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c38906140f4565b8015611c855780601f10611c5a57610100808354040283529160200191611c85565b820191906000526020600020905b815481529060010190602001808311611c6857829003601f168201915b505050505081565b6060611c98826126ca565b611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613cf9565b60405180910390fd5b60001515601260029054906101000a900460ff1615151415611d855760118054611d00906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2c906140f4565b8015611d795780601f10611d4e57610100808354040283529160200191611d79565b820191906000526020600020905b815481529060010190602001808311611d5c57829003601f168201915b50505050509050611de1565b6000611d8f612cbb565b90506000815111611daf5760405180602001604052806000815250611ddd565b80611db984612d4d565b6010604051602001611dcd93929190613b49565b6040516020818303038152906040525b9150505b919050565b611dee612950565b60026009541415611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613dd9565b60405180910390fd5b60026009819055506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611e8f57506103e8600f5411155b156121b2576103e8600f541115611edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed290613db9565b60405180910390fd5b611f0b8133604051602001611ef09190613b2e565b60405160208183030381529060405280519060200120611be8565b611f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4190613cb9565b60405180910390fd5b601260019054906101000a900460ff16611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613d19565b60405180910390fd5b600b5482611fa5610d17565b611faf9190613f1f565b1115611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613d39565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461203e9190613f1f565b111561207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690613c79565b60405180910390fd5b600e54600e54836120909190613fa6565b61209a9190614000565b3410156120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390613d79565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212c9190613f1f565b925050819055506001600f60008282546121469190613f1f565b9250508190555081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219c9190613f1f565b925050819055506121ad338361299a565b612407565b6121e281336040516020016121c79190613b2e565b60405160208183030381529060405280519060200120611be8565b612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890613cb9565b60405180910390fd5b601260019054906101000a900460ff16612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790613d19565b60405180910390fd5b600b548261227c610d17565b6122869190613f1f565b11156122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90613d39565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123159190613f1f565b1115612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90613c79565b60405180910390fd5b600e54826123649190613fa6565b3410156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90613d79565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f59190613f1f565b92505081905550612406338361299a565b5b60016009819055505050565b600b5481565b6124216128d2565b60026009541415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90613dd9565b60405180910390fd5b600260098190555080601581905550600160098190555050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b6125296128d2565b6002600954141561256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613dd9565b60405180910390fd5b6002600981905550600b5481612583610d17565b61258d9190613f1f565b11156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c590613d39565b60405180910390fd5b60005b838390508110156126205761260d8484838181106125f2576125f1614251565b5b905060200201602081019061260791906133f7565b8361299a565b808061261890614157565b9150506125d1565b506001600981905550505050565b60136020528060005260406000206000915090505481565b61264e6128d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590613c59565b60405180910390fd5b6126c781612a1b565b50565b6000816126d5612731565b111580156126e4575060005482105b8015612722575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612749612731565b116127d1576000548110156127d05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156127ce575b60008114156127c4576004600083600190039350838152602001908152602001600020549050612799565b8092505050612803565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612890868684612da6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6128da612daf565b73ffffffffffffffffffffffffffffffffffffffff166128f861184e565b73ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590613cd9565b60405180910390fd5b565b61295861165c565b15612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f90613c99565b60405180910390fd5b565b6129b4828260405180602001604052806000815250612db7565b5050565b6129c0612e54565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a04612daf565b604051612a119190613b7a565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ae9612950565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b2d612daf565b604051612b3a9190613b7a565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6a612729565b8786866040518563ffffffff1660e01b8152600401612b8c9493929190613b95565b602060405180830381600087803b158015612ba657600080fd5b505af1925050508015612bd757506040513d601f19601f82011682018060405250810190612bd491906136d0565b60015b612c51573d8060008114612c07576040519150601f19603f3d011682016040523d82523d6000602084013e612c0c565b606091505b50600081511415612c49576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082612cb18584612e9d565b1490509392505050565b606060118054612cca906140f4565b80601f0160208091040260200160405190810160405280929190818152602001828054612cf6906140f4565b8015612d435780601f10612d1857610100808354040283529160200191612d43565b820191906000526020600020905b815481529060010190602001808311612d2657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612d9157600184039350600a81066030018453600a8104905080612d8c57612d91565b612d66565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b612dc18383612ef3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e4f57600080549050600083820390505b612e016000868380600101945086612b44565b612e37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612dee578160005414612e4c57600080fd5b50505b505050565b612e5c61165c565b612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290613c39565b60405180910390fd5b565b60008082905060005b8451811015612ee857612ed382868381518110612ec657612ec5614251565b5b60200260200101516130b0565b91508080612ee090614157565b915050612ea6565b508091505092915050565b6000805490506000821415612f34576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f416000848385612873565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fb883612fa96000866000612879565b612fb2856130db565b176128a1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461305957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061301e565b506000821415613095576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130ab60008483856128cc565b505050565b60008183106130c8576130c382846130eb565b6130d3565b6130d283836130eb565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461310e906140f4565b90600052602060002090601f0160209004810192826131305760008555613177565b82601f1061314957805160ff1916838001178555613177565b82800160010185558215613177579182015b8281111561317657825182559160200191906001019061315b565b5b5090506131849190613188565b5090565b5b808211156131a1576000816000905550600101613189565b5090565b60006131b86131b384613e39565b613e14565b905080838252602082019050828560208602820111156131db576131da6142b9565b5b60005b8581101561320b57816131f18882613347565b8452602084019350602083019250506001810190506131de565b5050509392505050565b600061322861322384613e65565b613e14565b905082815260208101848484011115613244576132436142be565b5b61324f8482856140b2565b509392505050565b600061326a61326584613e96565b613e14565b905082815260208101848484011115613286576132856142be565b5b6132918482856140b2565b509392505050565b6000813590506132a88161459b565b92915050565b60008083601f8401126132c4576132c36142b4565b5b8235905067ffffffffffffffff8111156132e1576132e06142af565b5b6020830191508360208202830111156132fd576132fc6142b9565b5b9250929050565b600082601f830112613319576133186142b4565b5b81356133298482602086016131a5565b91505092915050565b600081359050613341816145b2565b92915050565b600081359050613356816145c9565b92915050565b60008135905061336b816145e0565b92915050565b600081519050613380816145e0565b92915050565b600082601f83011261339b5761339a6142b4565b5b81356133ab848260208601613215565b91505092915050565b600082601f8301126133c9576133c86142b4565b5b81356133d9848260208601613257565b91505092915050565b6000813590506133f1816145f7565b92915050565b60006020828403121561340d5761340c6142c8565b5b600061341b84828501613299565b91505092915050565b6000806040838503121561343b5761343a6142c8565b5b600061344985828601613299565b925050602061345a85828601613299565b9150509250929050565b60008060006060848603121561347d5761347c6142c8565b5b600061348b86828701613299565b935050602061349c86828701613299565b92505060406134ad868287016133e2565b9150509250925092565b600080600080608085870312156134d1576134d06142c8565b5b60006134df87828801613299565b94505060206134f087828801613299565b9350506040613501878288016133e2565b925050606085013567ffffffffffffffff811115613522576135216142c3565b5b61352e87828801613386565b91505092959194509250565b60008060408385031215613551576135506142c8565b5b600061355f85828601613299565b925050602061357085828601613332565b9150509250929050565b60008060408385031215613591576135906142c8565b5b600061359f85828601613299565b92505060206135b0858286016133e2565b9150509250929050565b6000806000604084860312156135d3576135d26142c8565b5b600084013567ffffffffffffffff8111156135f1576135f06142c3565b5b6135fd868287016132ae565b93509350506020613610868287016133e2565b9150509250925092565b60008060408385031215613631576136306142c8565b5b600083013567ffffffffffffffff81111561364f5761364e6142c3565b5b61365b85828601613304565b925050602061366c85828601613347565b9150509250929050565b60006020828403121561368c5761368b6142c8565b5b600061369a84828501613347565b91505092915050565b6000602082840312156136b9576136b86142c8565b5b60006136c78482850161335c565b91505092915050565b6000602082840312156136e6576136e56142c8565b5b60006136f484828501613371565b91505092915050565b600060208284031215613713576137126142c8565b5b600082013567ffffffffffffffff811115613731576137306142c3565b5b61373d848285016133b4565b91505092915050565b60006020828403121561375c5761375b6142c8565b5b600061376a848285016133e2565b91505092915050565b6000806040838503121561378a576137896142c8565b5b6000613798858286016133e2565b925050602083013567ffffffffffffffff8111156137b9576137b86142c3565b5b6137c585828601613304565b9150509250929050565b6137d881614034565b82525050565b6137ef6137ea82614034565b6141a0565b82525050565b6137fe81614046565b82525050565b61380d81614052565b82525050565b600061381e82613edc565b6138288185613ef2565b93506138388185602086016140c1565b613841816142cd565b840191505092915050565b600061385782613ee7565b6138618185613f03565b93506138718185602086016140c1565b61387a816142cd565b840191505092915050565b600061389082613ee7565b61389a8185613f14565b93506138aa8185602086016140c1565b80840191505092915050565b600081546138c3816140f4565b6138cd8186613f14565b945060018216600081146138e857600181146138f95761392c565b60ff1983168652818601935061392c565b61390285613ec7565b60005b8381101561392457815481890152600182019150602081019050613905565b838801955050505b50505092915050565b6000613942601483613f03565b915061394d826142eb565b602082019050919050565b6000613965602683613f03565b915061397082614314565b604082019050919050565b6000613988601f83613f03565b915061399382614363565b602082019050919050565b60006139ab601083613f03565b91506139b68261438c565b602082019050919050565b60006139ce601783613f03565b91506139d9826143b5565b602082019050919050565b60006139f1602083613f03565b91506139fc826143de565b602082019050919050565b6000613a14602f83613f03565b9150613a1f82614407565b604082019050919050565b6000613a37602283613f03565b9150613a4282614456565b604082019050919050565b6000613a5a601983613f03565b9150613a65826144a5565b602082019050919050565b6000613a7d601f83613f03565b9150613a88826144ce565b602082019050919050565b6000613aa0601583613f03565b9150613aab826144f7565b602082019050919050565b6000613ac3601f83613f03565b9150613ace82614520565b602082019050919050565b6000613ae6601783613f03565b9150613af182614549565b602082019050919050565b6000613b09601f83613f03565b9150613b1482614572565b602082019050919050565b613b28816140a8565b82525050565b6000613b3a82846137de565b60148201915081905092915050565b6000613b558286613885565b9150613b618285613885565b9150613b6d82846138b6565b9150819050949350505050565b6000602082019050613b8f60008301846137cf565b92915050565b6000608082019050613baa60008301876137cf565b613bb760208301866137cf565b613bc46040830185613b1f565b8181036060830152613bd68184613813565b905095945050505050565b6000602082019050613bf660008301846137f5565b92915050565b6000602082019050613c116000830184613804565b92915050565b60006020820190508181036000830152613c31818461384c565b905092915050565b60006020820190508181036000830152613c5281613935565b9050919050565b60006020820190508181036000830152613c7281613958565b9050919050565b60006020820190508181036000830152613c928161397b565b9050919050565b60006020820190508181036000830152613cb28161399e565b9050919050565b60006020820190508181036000830152613cd2816139c1565b9050919050565b60006020820190508181036000830152613cf2816139e4565b9050919050565b60006020820190508181036000830152613d1281613a07565b9050919050565b60006020820190508181036000830152613d3281613a2a565b9050919050565b60006020820190508181036000830152613d5281613a4d565b9050919050565b60006020820190508181036000830152613d7281613a70565b9050919050565b60006020820190508181036000830152613d9281613a93565b9050919050565b60006020820190508181036000830152613db281613ab6565b9050919050565b60006020820190508181036000830152613dd281613ad9565b9050919050565b60006020820190508181036000830152613df281613afc565b9050919050565b6000602082019050613e0e6000830184613b1f565b92915050565b6000613e1e613e2f565b9050613e2a8282614126565b919050565b6000604051905090565b600067ffffffffffffffff821115613e5457613e53614280565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e8057613e7f614280565b5b613e89826142cd565b9050602081019050919050565b600067ffffffffffffffff821115613eb157613eb0614280565b5b613eba826142cd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f2a826140a8565b9150613f35836140a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6a57613f696141c4565b5b828201905092915050565b6000613f80826140a8565b9150613f8b836140a8565b925082613f9b57613f9a6141f3565b5b828204905092915050565b6000613fb1826140a8565b9150613fbc836140a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff557613ff46141c4565b5b828202905092915050565b600061400b826140a8565b9150614016836140a8565b925082821015614029576140286141c4565b5b828203905092915050565b600061403f82614088565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140df5780820151818401526020810190506140c4565b838111156140ee576000848401525b50505050565b6000600282049050600182168061410c57607f821691505b602082108114156141205761411f614222565b5b50919050565b61412f826142cd565b810181811067ffffffffffffffff8211171561414e5761414d614280565b5b80604052505050565b6000614162826140a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614195576141946141c4565b5b600182019050919050565b60006141ab826141b2565b9050919050565b60006141bd826142de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20313000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e6f7420612070617274206f662077686974656c697374000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e742069732063757272656e746c79207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032302070657220747800600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f4e6f206d6f726520667265652061706573206c65667421000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6145a481614034565b81146145af57600080fd5b50565b6145bb81614046565b81146145c657600080fd5b50565b6145d281614052565b81146145dd57600080fd5b50565b6145e98161405c565b81146145f457600080fd5b50565b614600816140a8565b811461460b57600080fd5b5056fea2646970667358221220ea4012f875484573b6a4f6a1376c11c2c4c7b63cf514781872e9cca4e673c57b64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004082201842d8696cb7e9c4e2f47324ec1f199bfcb94c1631ff6e46736ae1af3c25000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a3467786d504c783274686e474b4b32757a6b73484e345031754b64746742646359586e3758673267346b572f68696464656e2e6a736f6e00000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmZ4gxmPLx2thnGKK2uzksHN4P1uKdtgBdcYXn7Xg2g4kW/hidden.json
Arg [1] : _root (bytes32): 0x82201842d8696cb7e9c4e2f47324ec1f199bfcb94c1631ff6e46736ae1af3c25
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 82201842d8696cb7e9c4e2f47324ec1f199bfcb94c1631ff6e46736ae1af3c25
Arg [2] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d5a3467786d504c783274686e474b4b32757a6b73484e345031754b64
Arg [5] : 746742646359586e3758673267346b572f68696464656e2e6a736f6e00000000
Deployed Bytecode Sourcemap
69414:6160:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36136:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37038:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43529:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42962:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69905:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69949:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32789:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47168:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74677:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69677:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72667:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70141:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75339:228;;;;;;;;;;;;;:::i;:::-;;74875:77;;;;;;;;;;;;;:::i;:::-;;74065:116;;;;;;;;;;;;;:::i;:::-;;50089:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74301:132;;;;;;;;;;;;;:::i;:::-;;69989:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74960:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75076:93;;;;;;;;;;;;;:::i;:::-;;16750:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38431:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69565:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69835:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33973:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14260:103;;;;;;;;;;;;;:::i;:::-;;74793:74;;;;;;;;;;;;;:::i;:::-;;13612:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74555:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74441:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37214:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74189;;;;;;;;;;;;;:::i;:::-;;44087:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69724:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50880:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72472:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69791:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73516:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70842:1519;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69527:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75177:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69641:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44478:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70219:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70457:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70088:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14518:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36136:639;36221:4;36560:10;36545:25;;:11;:25;;;;:102;;;;36637:10;36622:25;;:11;:25;;;;36545:102;:179;;;;36714:10;36699:25;;:11;:25;;;;36545:179;36525:199;;36136:639;;;:::o;37038:100::-;37092:13;37125:5;37118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37038:100;:::o;43529:218::-;43605:7;43630:16;43638:7;43630;:16::i;:::-;43625:64;;43655:34;;;;;;;;;;;;;;43625:64;43709:15;:24;43725:7;43709:24;;;;;;;;;;;:30;;;;;;;;;;;;43702:37;;43529:218;;;:::o;42962:408::-;43051:13;43067:16;43075:7;43067;:16::i;:::-;43051:32;;43123:5;43100:28;;:19;:17;:19::i;:::-;:28;;;43096:175;;43148:44;43165:5;43172:19;:17;:19::i;:::-;43148:16;:44::i;:::-;43143:128;;43220:35;;;;;;;;;;;;;;43143:128;43096:175;43316:2;43283:15;:24;43299:7;43283:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43354:7;43350:2;43334:28;;43343:5;43334:28;;;;;;;;;;;;43040:330;42962:408;;:::o;69905:37::-;;;;;;;;;;;;;:::o;69949:33::-;;;;;;;;;;;;;:::o;32789:323::-;32850:7;33078:15;:13;:15::i;:::-;33063:12;;33047:13;;:28;:46;33040:53;;32789:323;:::o;47168:2825::-;47310:27;47340;47359:7;47340:18;:27::i;:::-;47310:57;;47425:4;47384:45;;47400:19;47384:45;;;47380:86;;47438:28;;;;;;;;;;;;;;47380:86;47480:27;47509:23;47536:35;47563:7;47536:26;:35::i;:::-;47479:92;;;;47671:68;47696:15;47713:4;47719:19;:17;:19::i;:::-;47671:24;:68::i;:::-;47666:180;;47759:43;47776:4;47782:19;:17;:19::i;:::-;47759:16;:43::i;:::-;47754:92;;47811:35;;;;;;;;;;;;;;47754:92;47666:180;47877:1;47863:16;;:2;:16;;;47859:52;;;47888:23;;;;;;;;;;;;;;47859:52;47924:43;47946:4;47952:2;47956:7;47965:1;47924:21;:43::i;:::-;48060:15;48057:160;;;48200:1;48179:19;48172:30;48057:160;48597:18;:24;48616:4;48597:24;;;;;;;;;;;;;;;;48595:26;;;;;;;;;;;;48666:18;:22;48685:2;48666:22;;;;;;;;;;;;;;;;48664:24;;;;;;;;;;;48988:146;49025:2;49074:45;49089:4;49095:2;49099:19;49074:14;:45::i;:::-;29188:8;49046:73;48988:18;:146::i;:::-;48959:17;:26;48977:7;48959:26;;;;;;;;;;;:175;;;;49305:1;29188:8;49254:19;:47;:52;49250:627;;;49327:19;49359:1;49349:7;:11;49327:33;;49516:1;49482:17;:30;49500:11;49482:30;;;;;;;;;;;;:35;49478:384;;;49620:13;;49605:11;:28;49601:242;;49800:19;49767:17;:30;49785:11;49767:30;;;;;;;;;;;:52;;;;49601:242;49478:384;49308:569;49250:627;49924:7;49920:2;49905:27;;49914:4;49905:27;;;;;;;;;;;;49943:42;49964:4;49970:2;49974:7;49983:1;49943:20;:42::i;:::-;47299:2694;;;47168:2825;;;:::o;74677:106::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74765:10:::2;74753:9;:22;;;;10493:1:::1;11447:7;:22;;;;74677:106:::0;:::o;69677:40::-;;;;:::o;72667:446::-;16355:19;:17;:19::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;72782:2:::2;72769:9;:15;;72761:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;72839:17;;;;;;;;;;;72831:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;72937:9;;72925;:21;;;;:::i;:::-;72911:9;:36;;72903:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;73021:9;;73008;72992:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;72984:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;73073:32;73083:10;73095:9;73073;:32::i;:::-;10493:1:::1;11447:7;:22;;;;72667:446:::0;:::o;70141:49::-;;;;;;;;;;;;;;;;;:::o;75339:228::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;75412:42:::2;75404:60;;:94;75494:3;75489:2;75465:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;75404:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;75519:7;:5;:7::i;:::-;75511:25;;:48;75537:21;75511:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;10493:1:::1;11447:7;:22;;;;75339:228::o:0;74875:77::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74934:10:::2;:8;:10::i;:::-;10493:1:::1;11447:7;:22;;;;74875:77::o:0;74065:116::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74156:17:::2;;;;;;;;;;;74155:18;74135:17;;:38;;;;;;;;;;;;;;;;;;10493:1:::1;11447:7;:22;;;;74065:116::o:0;50089:193::-;50235:39;50252:4;50258:2;50262:7;50235:39;;;;;;;;;;;;:16;:39::i;:::-;50089:193;;;:::o;74301:132::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74386:4:::2;74370:13;;:20;;;;;;;;;;;;;;;;;;74421:4;74401:17;;:24;;;;;;;;;;;;;;;;;;10493:1:::1;11447:7;:22;;;;74301:132::o:0;69989:28::-;;;;;;;;;;;;;:::o;74960:108::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;75053:7:::2;75043;:17;;;;;;;;;;;;:::i;:::-;;10493:1:::1;11447:7;:22;;;;74960:108:::0;:::o;75076:93::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;75153:8:::2;;;;;;;;;;;75152:9;75141:8;;:20;;;;;;;;;;;;;;;;;;10493:1:::1;11447:7;:22;;;;75076:93::o:0;16750:86::-;16797:4;16821:7;;;;;;;;;;;16814:14;;16750:86;:::o;38431:152::-;38503:7;38546:27;38565:7;38546:18;:27::i;:::-;38523:52;;38431:152;;;:::o;69565:38::-;;;;:::o;69835:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33973:233::-;34045:7;34086:1;34069:19;;:5;:19;;;34065:60;;;34097:28;;;;;;;;;;;;;;34065:60;28132:13;34143:18;:25;34162:5;34143:25;;;;;;;;;;;;;;;;:55;34136:62;;33973:233;;;:::o;14260:103::-;13498:13;:11;:13::i;:::-;14325:30:::1;14352:1;14325:18;:30::i;:::-;14260:103::o:0;74793:74::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74851:8:::2;:6;:8::i;:::-;10493:1:::1;11447:7;:22;;;;74793:74::o:0;13612:87::-;13658:7;13685:6;;;;;;;;;;;13678:13;;13612:87;:::o;74555:114::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74649:12:::2;74635:11;:26;;;;10493:1:::1;11447:7;:22;;;;74555:114:::0;:::o;74441:106::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74529:10:::2;74517:9;:22;;;;10493:1:::1;11447:7;:22;;;;74441:106:::0;:::o;37214:104::-;37270:13;37303:7;37296:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37214:104;:::o;74189:::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;74272:13:::2;;;;;;;;;;;74271:14;74255:13;;:30;;;;;;;;;;;;;;;;;;10493:1:::1;11447:7;:22;;;;74189:104::o:0;44087:234::-;44234:8;44182:18;:39;44201:19;:17;:19::i;:::-;44182:39;;;;;;;;;;;;;;;:49;44222:8;44182:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44294:8;44258:55;;44273:19;:17;:19::i;:::-;44258:55;;;44304:8;44258:55;;;;;;:::i;:::-;;;;;;;;44087:234;;:::o;69724:26::-;;;;:::o;50880:407::-;51055:31;51068:4;51074:2;51078:7;51055:12;:31::i;:::-;51119:1;51101:2;:14;;;:19;51097:183;;51140:56;51171:4;51177:2;51181:7;51190:5;51140:30;:56::i;:::-;51135:145;;51224:40;;;;;;;;;;;;;;51135:145;51097:183;50880:407;;;;:::o;72472:144::-;72547:4;72571:37;72590:5;72597:4;;72603;72571:18;:37::i;:::-;72564:44;;72472:144;;;;:::o;69791:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;73516:503::-;73614:13;73649:16;73657:7;73649;:16::i;:::-;73641:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;73745:5;73733:17;;:8;;;;;;;;;;;:17;;;73729:273;;;73770:7;73763:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73729:273;73802:28;73833:10;:8;:10::i;:::-;73802:41;;73892:1;73867:14;73861:28;:32;:133;;;;;;;;;;;;;;;;;73929:14;73945:18;73955:7;73945:9;:18::i;:::-;73965:13;73912:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73861:133;73854:140;;;73516:503;;;;:::o;70842:1519::-;16355:19;:17;:19::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;71007:1:::2;70977:14;:26;70992:10;70977:26;;;;;;;;;;;;;;;;:31;:50;;;;;71023:4;71012:7;;:15;;70977:50;70973:1381;;;71063:4;71052:7;;:15;;71044:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;71118:55;71126:5;71160:10;71143:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;71133:39;;;;;;71118:7;:55::i;:::-;71110:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;71224:13;;;;;;;;;;;71216:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;71328:9;;71315;71299:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;71291:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;71431:9;;71417;71391:11;:23;71403:10;71391:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;71390:50;;71382:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;71541:11;;71526;;71514:9;:23;;;;:::i;:::-;71513:39;;;;:::i;:::-;71499:9;:54;;71491:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;71626:1;71596:14;:26;71611:10;71596:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;71653:1;71642:7;;:12;;;;;;;:::i;:::-;;;;;;;;71696:9;71669:11;:23;71681:10;71669:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;71720:32;71730:10;71742:9;71720;:32::i;:::-;70973:1381;;;71795:55;71803:5;71837:10;71820:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;71810:39;;;;;;71795:7;:55::i;:::-;71787:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;71901:13;;;;;;;;;;;71893:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;72005:9;;71992;71976:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;71968:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;72108:9;;72094;72068:11;:23;72080:10;72068:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;72067:50;;72059:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;72202:11;;72190:9;:23;;;;:::i;:::-;72176:9;:38;;72168:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72284:9;72257:11;:23;72269:10;72257:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;72308:32;72318:10;72330:9;72308;:32::i;:::-;70973:1381;10493:1:::1;11447:7;:22;;;;70842:1519:::0;;:::o;69527:31::-;;;;:::o;75177:93::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;75257:5:::2;75250:4;:12;;;;10493:1:::1;11447:7;:22;;;;75177:93:::0;:::o;69641:29::-;;;;:::o;44478:164::-;44575:4;44599:18;:25;44618:5;44599:25;;;;;;;;;;;;;;;:35;44625:8;44599:35;;;;;;;;;;;;;;;;;;;;;;;;;44592:42;;44478:164;;;;:::o;70219:19::-;;;;:::o;70457:304::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;70601:9:::2;;70590:7;70574:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;70566:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;70658:6;70653:101;70674:8;;:15;;70670:1;:19;70653:101;;;70711:31;70721:8;;70730:1;70721:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;70734:7;70711:9;:31::i;:::-;70691:3;;;;;:::i;:::-;;;;70653:101;;;;10493:1:::1;11447:7;:22;;;;70457:304:::0;;;:::o;70088:46::-;;;;;;;;;;;;;;;;;:::o;14518:201::-;13498:13;:11;:13::i;:::-;14627:1:::1;14607:22;;:8;:22;;;;14599:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14683:28;14702:8;14683:18;:28::i;:::-;14518:201:::0;:::o;44900:282::-;44965:4;45021:7;45002:15;:13;:15::i;:::-;:26;;:66;;;;;45055:13;;45045:7;:23;45002:66;:153;;;;;45154:1;28908:8;45106:17;:26;45124:7;45106:26;;;;;;;;;;;;:44;:49;45002:153;44982:173;;44900:282;;;:::o;67208:105::-;67268:7;67295:10;67288:17;;67208:105;:::o;73363:101::-;73428:7;73455:1;73448:8;;73363:101;:::o;39586:1275::-;39653:7;39673:12;39688:7;39673:22;;39756:4;39737:15;:13;:15::i;:::-;:23;39733:1061;;39790:13;;39783:4;:20;39779:1015;;;39828:14;39845:17;:23;39863:4;39845:23;;;;;;;;;;;;39828:40;;39962:1;28908:8;39934:6;:24;:29;39930:845;;;40599:113;40616:1;40606:6;:11;40599:113;;;40659:17;:25;40677:6;;;;;;;40659:25;;;;;;;;;;;;40650:34;;40599:113;;;40745:6;40738:13;;;;;;39930:845;39805:989;39779:1015;39733:1061;40822:31;;;;;;;;;;;;;;39586:1275;;;;:::o;46063:485::-;46165:27;46194:23;46235:38;46276:15;:24;46292:7;46276:24;;;;;;;;;;;46235:65;;46453:18;46430:41;;46510:19;46504:26;46485:45;;46415:126;46063:485;;;:::o;45291:659::-;45440:11;45605:16;45598:5;45594:28;45585:37;;45765:16;45754:9;45750:32;45737:45;;45915:15;45904:9;45901:30;45893:5;45882:9;45879:20;45876:56;45866:66;;45291:659;;;;;:::o;51949:159::-;;;;;:::o;66517:311::-;66652:7;66672:16;29312:3;66698:19;:41;;66672:68;;29312:3;66766:31;66777:4;66783:2;66787:9;66766:10;:31::i;:::-;66758:40;;:62;;66751:69;;;66517:311;;;;;:::o;41409:450::-;41489:14;41657:16;41650:5;41646:28;41637:37;;41834:5;41820:11;41795:23;41791:41;41788:52;41781:5;41778:63;41768:73;;41409:450;;;;:::o;52773:158::-;;;;;:::o;13777:132::-;13852:12;:10;:12::i;:::-;13841:23;;:7;:5;:7::i;:::-;:23;;;13833:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13777:132::o;16909:108::-;16980:8;:6;:8::i;:::-;16979:9;16971:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;16909:108::o;61040:112::-;61117:27;61127:2;61131:8;61117:27;;;;;;;;;;;;:9;:27::i;:::-;61040:112;;:::o;17605:120::-;16614:16;:14;:16::i;:::-;17674:5:::1;17664:7;;:15;;;;;;;;;;;;;;;;;;17695:22;17704:12;:10;:12::i;:::-;17695:22;;;;;;:::i;:::-;;;;;;;;17605:120::o:0;14879:191::-;14953:16;14972:6;;;;;;;;;;;14953:25;;14998:8;14989:6;;:17;;;;;;;;;;;;;;;;;;15053:8;15022:40;;15043:8;15022:40;;;;;;;;;;;;14942:128;14879:191;:::o;17346:118::-;16355:19;:17;:19::i;:::-;17416:4:::1;17406:7;;:14;;;;;;;;;;;;;;;;;;17436:20;17443:12;:10;:12::i;:::-;17436:20;;;;;;:::i;:::-;;;;;;;;17346:118::o:0;53371:716::-;53534:4;53580:2;53555:45;;;53601:19;:17;:19::i;:::-;53622:4;53628:7;53637:5;53555:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53551:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53855:1;53838:6;:13;:18;53834:235;;;53884:40;;;;;;;;;;;;;;53834:235;54027:6;54021:13;54012:6;54008:2;54004:15;53997:38;53551:529;53724:54;;;53714:64;;;:6;:64;;;;53707:71;;;53371:716;;;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;73180:108::-;73240:13;73273:7;73266:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73180:108;:::o;67415:1745::-;67480:17;67914:4;67907;67901:11;67897:22;68006:1;68000:4;67993:15;68081:4;68078:1;68074:12;68067:19;;68163:1;68158:3;68151:14;68267:3;68506:5;68488:428;68514:1;68488:428;;;68554:1;68549:3;68545:11;68538:18;;68725:2;68719:4;68715:13;68711:2;68707:22;68702:3;68694:36;68819:2;68813:4;68809:13;68801:21;;68886:4;68876:25;;68894:5;;68876:25;68488:428;;;68492:21;68955:3;68950;68946:13;69070:4;69065:3;69061:14;69054:21;;69135:6;69130:3;69123:19;67519:1634;;;67415:1745;;;:::o;66218:147::-;66355:6;66218:147;;;;;:::o;12163:98::-;12216:7;12243:10;12236:17;;12163:98;:::o;60267:689::-;60398:19;60404:2;60408:8;60398:5;:19::i;:::-;60477:1;60459:2;:14;;;:19;60455:483;;60499:11;60513:13;;60499:27;;60545:13;60567:8;60561:3;:14;60545:30;;60594:233;60625:62;60664:1;60668:2;60672:7;;;;;;60681:5;60625:30;:62::i;:::-;60620:167;;60723:40;;;;;;;;;;;;;;60620:167;60822:3;60814:5;:11;60594:233;;60909:3;60892:13;;:20;60888:34;;60914:8;;;60888:34;60480:458;;60455:483;60267:689;;;:::o;17094:108::-;17161:8;:6;:8::i;:::-;17153:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;17094:108::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;54549:2966::-;54622:20;54645:13;;54622:36;;54685:1;54673:8;:13;54669:44;;;54695:18;;;;;;;;;;;;;;54669:44;54726:61;54756:1;54760:2;54764:12;54778:8;54726:21;:61::i;:::-;55270:1;28270:2;55240:1;:26;;55239:32;55227:8;:45;55201:18;:22;55220:2;55201:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55549:139;55586:2;55640:33;55663:1;55667:2;55671:1;55640:14;:33::i;:::-;55607:30;55628:8;55607:20;:30::i;:::-;:66;55549:18;:139::i;:::-;55515:17;:31;55533:12;55515:31;;;;;;;;;;;:173;;;;55705:16;55736:11;55765:8;55750:12;:23;55736:37;;56286:16;56282:2;56278:25;56266:37;;56658:12;56618:8;56577:1;56515:25;56456:1;56395;56368:335;57029:1;57015:12;57011:20;56969:346;57070:3;57061:7;57058:16;56969:346;;57288:7;57278:8;57275:1;57248:25;57245:1;57242;57237:59;57123:1;57114:7;57110:15;57099:26;;56969:346;;;56973:77;57360:1;57348:8;:13;57344:45;;;57370:19;;;;;;;;;;;;;;57344:45;57422:3;57406:13;:19;;;;54975:2462;;57447:60;57476:1;57480:2;57484:12;57498:8;57447:20;:60::i;:::-;54611:2904;54549:2966;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;41961:324::-;42031:14;42264:1;42254:8;42251:15;42225:24;42221:46;42211:56;;41961:324;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:568::-;1821:8;1831:6;1881:3;1874:4;1866:6;1862:17;1858:27;1848:122;;1889:79;;:::i;:::-;1848:122;2002:6;1989:20;1979:30;;2032:18;2024:6;2021:30;2018:117;;;2054:79;;:::i;:::-;2018:117;2168:4;2160:6;2156:17;2144:29;;2222:3;2214:4;2206:6;2202:17;2192:8;2188:32;2185:41;2182:128;;;2229:79;;:::i;:::-;2182:128;1748:568;;;;;:::o;2339:370::-;2410:5;2459:3;2452:4;2444:6;2440:17;2436:27;2426:122;;2467:79;;:::i;:::-;2426:122;2584:6;2571:20;2609:94;2699:3;2691:6;2684:4;2676:6;2672:17;2609:94;:::i;:::-;2600:103;;2416:293;2339:370;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:329::-;4210:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:119;;;4265:79;;:::i;:::-;4227:119;4385:1;4410:53;4455:7;4446:6;4435:9;4431:22;4410:53;:::i;:::-;4400:63;;4356:117;4151:329;;;;:::o;4486:474::-;4554:6;4562;4611:2;4599:9;4590:7;4586:23;4582:32;4579:119;;;4617:79;;:::i;:::-;4579:119;4737:1;4762:53;4807:7;4798:6;4787:9;4783:22;4762:53;:::i;:::-;4752:63;;4708:117;4864:2;4890:53;4935:7;4926:6;4915:9;4911:22;4890:53;:::i;:::-;4880:63;;4835:118;4486:474;;;;;:::o;4966:619::-;5043:6;5051;5059;5108:2;5096:9;5087:7;5083:23;5079:32;5076:119;;;5114:79;;:::i;:::-;5076:119;5234:1;5259:53;5304:7;5295:6;5284:9;5280:22;5259:53;:::i;:::-;5249:63;;5205:117;5361:2;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5332:118;5489:2;5515:53;5560:7;5551:6;5540:9;5536:22;5515:53;:::i;:::-;5505:63;;5460:118;4966:619;;;;;:::o;5591:943::-;5686:6;5694;5702;5710;5759:3;5747:9;5738:7;5734:23;5730:33;5727:120;;;5766:79;;:::i;:::-;5727:120;5886:1;5911:53;5956:7;5947:6;5936:9;5932:22;5911:53;:::i;:::-;5901:63;;5857:117;6013:2;6039:53;6084:7;6075:6;6064:9;6060:22;6039:53;:::i;:::-;6029:63;;5984:118;6141:2;6167:53;6212:7;6203:6;6192:9;6188:22;6167:53;:::i;:::-;6157:63;;6112:118;6297:2;6286:9;6282:18;6269:32;6328:18;6320:6;6317:30;6314:117;;;6350:79;;:::i;:::-;6314:117;6455:62;6509:7;6500:6;6489:9;6485:22;6455:62;:::i;:::-;6445:72;;6240:287;5591:943;;;;;;;:::o;6540:468::-;6605:6;6613;6662:2;6650:9;6641:7;6637:23;6633:32;6630:119;;;6668:79;;:::i;:::-;6630:119;6788:1;6813:53;6858:7;6849:6;6838:9;6834:22;6813:53;:::i;:::-;6803:63;;6759:117;6915:2;6941:50;6983:7;6974:6;6963:9;6959:22;6941:50;:::i;:::-;6931:60;;6886:115;6540:468;;;;;:::o;7014:474::-;7082:6;7090;7139:2;7127:9;7118:7;7114:23;7110:32;7107:119;;;7145:79;;:::i;:::-;7107:119;7265:1;7290:53;7335:7;7326:6;7315:9;7311:22;7290:53;:::i;:::-;7280:63;;7236:117;7392:2;7418:53;7463:7;7454:6;7443:9;7439:22;7418:53;:::i;:::-;7408:63;;7363:118;7014:474;;;;;:::o;7494:704::-;7589:6;7597;7605;7654:2;7642:9;7633:7;7629:23;7625:32;7622:119;;;7660:79;;:::i;:::-;7622:119;7808:1;7797:9;7793:17;7780:31;7838:18;7830:6;7827:30;7824:117;;;7860:79;;:::i;:::-;7824:117;7973:80;8045:7;8036:6;8025:9;8021:22;7973:80;:::i;:::-;7955:98;;;;7751:312;8102:2;8128:53;8173:7;8164:6;8153:9;8149:22;8128:53;:::i;:::-;8118:63;;8073:118;7494:704;;;;;:::o;8204:684::-;8297:6;8305;8354:2;8342:9;8333:7;8329:23;8325:32;8322:119;;;8360:79;;:::i;:::-;8322:119;8508:1;8497:9;8493:17;8480:31;8538:18;8530:6;8527:30;8524:117;;;8560:79;;:::i;:::-;8524:117;8665:78;8735:7;8726:6;8715:9;8711:22;8665:78;:::i;:::-;8655:88;;8451:302;8792:2;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8763:118;8204:684;;;;;:::o;8894:329::-;8953:6;9002:2;8990:9;8981:7;8977:23;8973:32;8970:119;;;9008:79;;:::i;:::-;8970:119;9128:1;9153:53;9198:7;9189:6;9178:9;9174:22;9153:53;:::i;:::-;9143:63;;9099:117;8894:329;;;;:::o;9229:327::-;9287:6;9336:2;9324:9;9315:7;9311:23;9307:32;9304:119;;;9342:79;;:::i;:::-;9304:119;9462:1;9487:52;9531:7;9522:6;9511:9;9507:22;9487:52;:::i;:::-;9477:62;;9433:116;9229:327;;;;:::o;9562:349::-;9631:6;9680:2;9668:9;9659:7;9655:23;9651:32;9648:119;;;9686:79;;:::i;:::-;9648:119;9806:1;9831:63;9886:7;9877:6;9866:9;9862:22;9831:63;:::i;:::-;9821:73;;9777:127;9562:349;;;;:::o;9917:509::-;9986:6;10035:2;10023:9;10014:7;10010:23;10006:32;10003:119;;;10041:79;;:::i;:::-;10003:119;10189:1;10178:9;10174:17;10161:31;10219:18;10211:6;10208:30;10205:117;;;10241:79;;:::i;:::-;10205:117;10346:63;10401:7;10392:6;10381:9;10377:22;10346:63;:::i;:::-;10336:73;;10132:287;9917:509;;;;:::o;10432:329::-;10491:6;10540:2;10528:9;10519:7;10515:23;10511:32;10508:119;;;10546:79;;:::i;:::-;10508:119;10666:1;10691:53;10736:7;10727:6;10716:9;10712:22;10691:53;:::i;:::-;10681:63;;10637:117;10432:329;;;;:::o;10767:684::-;10860:6;10868;10917:2;10905:9;10896:7;10892:23;10888:32;10885:119;;;10923:79;;:::i;:::-;10885:119;11043:1;11068:53;11113:7;11104:6;11093:9;11089:22;11068:53;:::i;:::-;11058:63;;11014:117;11198:2;11187:9;11183:18;11170:32;11229:18;11221:6;11218:30;11215:117;;;11251:79;;:::i;:::-;11215:117;11356:78;11426:7;11417:6;11406:9;11402:22;11356:78;:::i;:::-;11346:88;;11141:303;10767:684;;;;;:::o;11457:118::-;11544:24;11562:5;11544:24;:::i;:::-;11539:3;11532:37;11457:118;;:::o;11581:157::-;11686:45;11706:24;11724:5;11706:24;:::i;:::-;11686:45;:::i;:::-;11681:3;11674:58;11581:157;;:::o;11744:109::-;11825:21;11840:5;11825:21;:::i;:::-;11820:3;11813:34;11744:109;;:::o;11859:118::-;11946:24;11964:5;11946:24;:::i;:::-;11941:3;11934:37;11859:118;;:::o;11983:360::-;12069:3;12097:38;12129:5;12097:38;:::i;:::-;12151:70;12214:6;12209:3;12151:70;:::i;:::-;12144:77;;12230:52;12275:6;12270:3;12263:4;12256:5;12252:16;12230:52;:::i;:::-;12307:29;12329:6;12307:29;:::i;:::-;12302:3;12298:39;12291:46;;12073:270;11983:360;;;;:::o;12349:364::-;12437:3;12465:39;12498:5;12465:39;:::i;:::-;12520:71;12584:6;12579:3;12520:71;:::i;:::-;12513:78;;12600:52;12645:6;12640:3;12633:4;12626:5;12622:16;12600:52;:::i;:::-;12677:29;12699:6;12677:29;:::i;:::-;12672:3;12668:39;12661:46;;12441:272;12349:364;;;;:::o;12719:377::-;12825:3;12853:39;12886:5;12853:39;:::i;:::-;12908:89;12990:6;12985:3;12908:89;:::i;:::-;12901:96;;13006:52;13051:6;13046:3;13039:4;13032:5;13028:16;13006:52;:::i;:::-;13083:6;13078:3;13074:16;13067:23;;12829:267;12719:377;;;;:::o;13126:845::-;13229:3;13266:5;13260:12;13295:36;13321:9;13295:36;:::i;:::-;13347:89;13429:6;13424:3;13347:89;:::i;:::-;13340:96;;13467:1;13456:9;13452:17;13483:1;13478:137;;;;13629:1;13624:341;;;;13445:520;;13478:137;13562:4;13558:9;13547;13543:25;13538:3;13531:38;13598:6;13593:3;13589:16;13582:23;;13478:137;;13624:341;13691:38;13723:5;13691:38;:::i;:::-;13751:1;13765:154;13779:6;13776:1;13773:13;13765:154;;;13853:7;13847:14;13843:1;13838:3;13834:11;13827:35;13903:1;13894:7;13890:15;13879:26;;13801:4;13798:1;13794:12;13789:17;;13765:154;;;13948:6;13943:3;13939:16;13932:23;;13631:334;;13445:520;;13233:738;;13126:845;;;;:::o;13977:366::-;14119:3;14140:67;14204:2;14199:3;14140:67;:::i;:::-;14133:74;;14216:93;14305:3;14216:93;:::i;:::-;14334:2;14329:3;14325:12;14318:19;;13977:366;;;:::o;14349:::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:::-;14863:3;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14960:93;15049:3;14960:93;:::i;:::-;15078:2;15073:3;15069:12;15062:19;;14721:366;;;:::o;15093:::-;15235:3;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15093:366;;;:::o;15465:::-;15607:3;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15465:366;;;:::o;15837:::-;15979:3;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15837:366;;;:::o;16209:::-;16351:3;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16209:366;;;:::o;16581:::-;16723:3;16744:67;16808:2;16803:3;16744:67;:::i;:::-;16737:74;;16820:93;16909:3;16820:93;:::i;:::-;16938:2;16933:3;16929:12;16922:19;;16581:366;;;:::o;16953:::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;16953:366;;;:::o;17325:::-;17467:3;17488:67;17552:2;17547:3;17488:67;:::i;:::-;17481:74;;17564:93;17653:3;17564:93;:::i;:::-;17682:2;17677:3;17673:12;17666:19;;17325:366;;;:::o;17697:::-;17839:3;17860:67;17924:2;17919:3;17860:67;:::i;:::-;17853:74;;17936:93;18025:3;17936:93;:::i;:::-;18054:2;18049:3;18045:12;18038:19;;17697:366;;;:::o;18069:::-;18211:3;18232:67;18296:2;18291:3;18232:67;:::i;:::-;18225:74;;18308:93;18397:3;18308:93;:::i;:::-;18426:2;18421:3;18417:12;18410:19;;18069:366;;;:::o;18441:::-;18583:3;18604:67;18668:2;18663:3;18604:67;:::i;:::-;18597:74;;18680:93;18769:3;18680:93;:::i;:::-;18798:2;18793:3;18789:12;18782:19;;18441:366;;;:::o;18813:::-;18955:3;18976:67;19040:2;19035:3;18976:67;:::i;:::-;18969:74;;19052:93;19141:3;19052:93;:::i;:::-;19170:2;19165:3;19161:12;19154:19;;18813:366;;;:::o;19185:118::-;19272:24;19290:5;19272:24;:::i;:::-;19267:3;19260:37;19185:118;;:::o;19309:256::-;19421:3;19436:75;19507:3;19498:6;19436:75;:::i;:::-;19536:2;19531:3;19527:12;19520:19;;19556:3;19549:10;;19309:256;;;;:::o;19571:589::-;19796:3;19818:95;19909:3;19900:6;19818:95;:::i;:::-;19811:102;;19930:95;20021:3;20012:6;19930:95;:::i;:::-;19923:102;;20042:92;20130:3;20121:6;20042:92;:::i;:::-;20035:99;;20151:3;20144:10;;19571:589;;;;;;:::o;20166:222::-;20259:4;20297:2;20286:9;20282:18;20274:26;;20310:71;20378:1;20367:9;20363:17;20354:6;20310:71;:::i;:::-;20166:222;;;;:::o;20394:640::-;20589:4;20627:3;20616:9;20612:19;20604:27;;20641:71;20709:1;20698:9;20694:17;20685:6;20641:71;:::i;:::-;20722:72;20790:2;20779:9;20775:18;20766:6;20722:72;:::i;:::-;20804;20872:2;20861:9;20857:18;20848:6;20804:72;:::i;:::-;20923:9;20917:4;20913:20;20908:2;20897:9;20893:18;20886:48;20951:76;21022:4;21013:6;20951:76;:::i;:::-;20943:84;;20394:640;;;;;;;:::o;21040:210::-;21127:4;21165:2;21154:9;21150:18;21142:26;;21178:65;21240:1;21229:9;21225:17;21216:6;21178:65;:::i;:::-;21040:210;;;;:::o;21256:222::-;21349:4;21387:2;21376:9;21372:18;21364:26;;21400:71;21468:1;21457:9;21453:17;21444:6;21400:71;:::i;:::-;21256:222;;;;:::o;21484:313::-;21597:4;21635:2;21624:9;21620:18;21612:26;;21684:9;21678:4;21674:20;21670:1;21659:9;21655:17;21648:47;21712:78;21785:4;21776:6;21712:78;:::i;:::-;21704:86;;21484:313;;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:::-;22394:4;22432:2;22421:9;22417:18;22409:26;;22481:9;22475:4;22471:20;22467:1;22456:9;22452:17;22445:47;22509:131;22635:4;22509:131;:::i;:::-;22501:139;;22228:419;;;:::o;22653:::-;22819:4;22857:2;22846:9;22842:18;22834:26;;22906:9;22900:4;22896:20;22892:1;22881:9;22877:17;22870:47;22934:131;23060:4;22934:131;:::i;:::-;22926:139;;22653:419;;;:::o;23078:::-;23244:4;23282:2;23271:9;23267:18;23259:26;;23331:9;23325:4;23321:20;23317:1;23306:9;23302:17;23295:47;23359:131;23485:4;23359:131;:::i;:::-;23351:139;;23078:419;;;:::o;23503:::-;23669:4;23707:2;23696:9;23692:18;23684:26;;23756:9;23750:4;23746:20;23742:1;23731:9;23727:17;23720:47;23784:131;23910:4;23784:131;:::i;:::-;23776:139;;23503:419;;;:::o;23928:::-;24094:4;24132:2;24121:9;24117:18;24109:26;;24181:9;24175:4;24171:20;24167:1;24156:9;24152:17;24145:47;24209:131;24335:4;24209:131;:::i;:::-;24201:139;;23928:419;;;:::o;24353:::-;24519:4;24557:2;24546:9;24542:18;24534:26;;24606:9;24600:4;24596:20;24592:1;24581:9;24577:17;24570:47;24634:131;24760:4;24634:131;:::i;:::-;24626:139;;24353:419;;;:::o;24778:::-;24944:4;24982:2;24971:9;24967:18;24959:26;;25031:9;25025:4;25021:20;25017:1;25006:9;25002:17;24995:47;25059:131;25185:4;25059:131;:::i;:::-;25051:139;;24778:419;;;:::o;25203:::-;25369:4;25407:2;25396:9;25392:18;25384:26;;25456:9;25450:4;25446:20;25442:1;25431:9;25427:17;25420:47;25484:131;25610:4;25484:131;:::i;:::-;25476:139;;25203:419;;;:::o;25628:::-;25794:4;25832:2;25821:9;25817:18;25809:26;;25881:9;25875:4;25871:20;25867:1;25856:9;25852:17;25845:47;25909:131;26035:4;25909:131;:::i;:::-;25901:139;;25628:419;;;:::o;26053:::-;26219:4;26257:2;26246:9;26242:18;26234:26;;26306:9;26300:4;26296:20;26292:1;26281:9;26277:17;26270:47;26334:131;26460:4;26334:131;:::i;:::-;26326:139;;26053:419;;;:::o;26478:::-;26644:4;26682:2;26671:9;26667:18;26659:26;;26731:9;26725:4;26721:20;26717:1;26706:9;26702:17;26695:47;26759:131;26885:4;26759:131;:::i;:::-;26751:139;;26478:419;;;:::o;26903:::-;27069:4;27107:2;27096:9;27092:18;27084:26;;27156:9;27150:4;27146:20;27142:1;27131:9;27127:17;27120:47;27184:131;27310:4;27184:131;:::i;:::-;27176:139;;26903:419;;;:::o;27328:::-;27494:4;27532:2;27521:9;27517:18;27509:26;;27581:9;27575:4;27571:20;27567:1;27556:9;27552:17;27545:47;27609:131;27735:4;27609:131;:::i;:::-;27601:139;;27328:419;;;:::o;27753:222::-;27846:4;27884:2;27873:9;27869:18;27861:26;;27897:71;27965:1;27954:9;27950:17;27941:6;27897:71;:::i;:::-;27753:222;;;;:::o;27981:129::-;28015:6;28042:20;;:::i;:::-;28032:30;;28071:33;28099:4;28091:6;28071:33;:::i;:::-;27981:129;;;:::o;28116:75::-;28149:6;28182:2;28176:9;28166:19;;28116:75;:::o;28197:311::-;28274:4;28364:18;28356:6;28353:30;28350:56;;;28386:18;;:::i;:::-;28350:56;28436:4;28428:6;28424:17;28416:25;;28496:4;28490;28486:15;28478:23;;28197:311;;;:::o;28514:307::-;28575:4;28665:18;28657:6;28654:30;28651:56;;;28687:18;;:::i;:::-;28651:56;28725:29;28747:6;28725:29;:::i;:::-;28717:37;;28809:4;28803;28799:15;28791:23;;28514:307;;;:::o;28827:308::-;28889:4;28979:18;28971:6;28968:30;28965:56;;;29001:18;;:::i;:::-;28965:56;29039:29;29061:6;29039:29;:::i;:::-;29031:37;;29123:4;29117;29113:15;29105:23;;28827:308;;;:::o;29141:141::-;29190:4;29213:3;29205:11;;29236:3;29233:1;29226:14;29270:4;29267:1;29257:18;29249:26;;29141:141;;;:::o;29288:98::-;29339:6;29373:5;29367:12;29357:22;;29288:98;;;:::o;29392:99::-;29444:6;29478:5;29472:12;29462:22;;29392:99;;;:::o;29497:168::-;29580:11;29614:6;29609:3;29602:19;29654:4;29649:3;29645:14;29630:29;;29497:168;;;;:::o;29671:169::-;29755:11;29789:6;29784:3;29777:19;29829:4;29824:3;29820:14;29805:29;;29671:169;;;;:::o;29846:148::-;29948:11;29985:3;29970:18;;29846:148;;;;:::o;30000:305::-;30040:3;30059:20;30077:1;30059:20;:::i;:::-;30054:25;;30093:20;30111:1;30093:20;:::i;:::-;30088:25;;30247:1;30179:66;30175:74;30172:1;30169:81;30166:107;;;30253:18;;:::i;:::-;30166:107;30297:1;30294;30290:9;30283:16;;30000:305;;;;:::o;30311:185::-;30351:1;30368:20;30386:1;30368:20;:::i;:::-;30363:25;;30402:20;30420:1;30402:20;:::i;:::-;30397:25;;30441:1;30431:35;;30446:18;;:::i;:::-;30431:35;30488:1;30485;30481:9;30476:14;;30311:185;;;;:::o;30502:348::-;30542:7;30565:20;30583:1;30565:20;:::i;:::-;30560:25;;30599:20;30617:1;30599:20;:::i;:::-;30594:25;;30787:1;30719:66;30715:74;30712:1;30709:81;30704:1;30697:9;30690:17;30686:105;30683:131;;;30794:18;;:::i;:::-;30683:131;30842:1;30839;30835:9;30824:20;;30502:348;;;;:::o;30856:191::-;30896:4;30916:20;30934:1;30916:20;:::i;:::-;30911:25;;30950:20;30968:1;30950:20;:::i;:::-;30945:25;;30989:1;30986;30983:8;30980:34;;;30994:18;;:::i;:::-;30980:34;31039:1;31036;31032:9;31024:17;;30856:191;;;;:::o;31053:96::-;31090:7;31119:24;31137:5;31119:24;:::i;:::-;31108:35;;31053:96;;;:::o;31155:90::-;31189:7;31232:5;31225:13;31218:21;31207:32;;31155:90;;;:::o;31251:77::-;31288:7;31317:5;31306:16;;31251:77;;;:::o;31334:149::-;31370:7;31410:66;31403:5;31399:78;31388:89;;31334:149;;;:::o;31489:126::-;31526:7;31566:42;31559:5;31555:54;31544:65;;31489:126;;;:::o;31621:77::-;31658:7;31687:5;31676:16;;31621:77;;;:::o;31704:154::-;31788:6;31783:3;31778;31765:30;31850:1;31841:6;31836:3;31832:16;31825:27;31704:154;;;:::o;31864:307::-;31932:1;31942:113;31956:6;31953:1;31950:13;31942:113;;;32041:1;32036:3;32032:11;32026:18;32022:1;32017:3;32013:11;32006:39;31978:2;31975:1;31971:10;31966:15;;31942:113;;;32073:6;32070:1;32067:13;32064:101;;;32153:1;32144:6;32139:3;32135:16;32128:27;32064:101;31913:258;31864:307;;;:::o;32177:320::-;32221:6;32258:1;32252:4;32248:12;32238:22;;32305:1;32299:4;32295:12;32326:18;32316:81;;32382:4;32374:6;32370:17;32360:27;;32316:81;32444:2;32436:6;32433:14;32413:18;32410:38;32407:84;;;32463:18;;:::i;:::-;32407:84;32228:269;32177:320;;;:::o;32503:281::-;32586:27;32608:4;32586:27;:::i;:::-;32578:6;32574:40;32716:6;32704:10;32701:22;32680:18;32668:10;32665:34;32662:62;32659:88;;;32727:18;;:::i;:::-;32659:88;32767:10;32763:2;32756:22;32546:238;32503:281;;:::o;32790:233::-;32829:3;32852:24;32870:5;32852:24;:::i;:::-;32843:33;;32898:66;32891:5;32888:77;32885:103;;;32968:18;;:::i;:::-;32885:103;33015:1;33008:5;33004:13;32997:20;;32790:233;;;:::o;33029:100::-;33068:7;33097:26;33117:5;33097:26;:::i;:::-;33086:37;;33029:100;;;:::o;33135:94::-;33174:7;33203:20;33217:5;33203:20;:::i;:::-;33192:31;;33135:94;;;:::o;33235:180::-;33283:77;33280:1;33273:88;33380:4;33377:1;33370:15;33404:4;33401:1;33394:15;33421:180;33469:77;33466:1;33459:88;33566:4;33563:1;33556:15;33590:4;33587:1;33580:15;33607:180;33655:77;33652:1;33645:88;33752:4;33749:1;33742:15;33776:4;33773:1;33766:15;33793:180;33841:77;33838:1;33831:88;33938:4;33935:1;33928:15;33962:4;33959:1;33952:15;33979:180;34027:77;34024:1;34017:88;34124:4;34121:1;34114:15;34148:4;34145:1;34138:15;34165:117;34274:1;34271;34264:12;34288:117;34397:1;34394;34387:12;34411:117;34520:1;34517;34510:12;34534:117;34643:1;34640;34633:12;34657:117;34766:1;34763;34756:12;34780:117;34889:1;34886;34879:12;34903:102;34944:6;34995:2;34991:7;34986:2;34979:5;34975:14;34971:28;34961:38;;34903:102;;;:::o;35011:94::-;35044:8;35092:5;35088:2;35084:14;35063:35;;35011:94;;;:::o;35111:170::-;35251:22;35247:1;35239:6;35235:14;35228:46;35111:170;:::o;35287:225::-;35427:34;35423:1;35415:6;35411:14;35404:58;35496:8;35491:2;35483:6;35479:15;35472:33;35287:225;:::o;35518:181::-;35658:33;35654:1;35646:6;35642:14;35635:57;35518:181;:::o;35705:166::-;35845:18;35841:1;35833:6;35829:14;35822:42;35705:166;:::o;35877:173::-;36017:25;36013:1;36005:6;36001:14;35994:49;35877:173;:::o;36056:182::-;36196:34;36192:1;36184:6;36180:14;36173:58;36056:182;:::o;36244:234::-;36384:34;36380:1;36372:6;36368:14;36361:58;36453:17;36448:2;36440:6;36436:15;36429:42;36244:234;:::o;36484:221::-;36624:34;36620:1;36612:6;36608:14;36601:58;36693:4;36688:2;36680:6;36676:15;36669:29;36484:221;:::o;36711:175::-;36851:27;36847:1;36839:6;36835:14;36828:51;36711:175;:::o;36892:181::-;37032:33;37028:1;37020:6;37016:14;37009:57;36892:181;:::o;37079:171::-;37219:23;37215:1;37207:6;37203:14;37196:47;37079:171;:::o;37256:181::-;37396:33;37392:1;37384:6;37380:14;37373:57;37256:181;:::o;37443:173::-;37583:25;37579:1;37571:6;37567:14;37560:49;37443:173;:::o;37622:181::-;37762:33;37758:1;37750:6;37746:14;37739:57;37622:181;:::o;37809:122::-;37882:24;37900:5;37882:24;:::i;:::-;37875:5;37872:35;37862:63;;37921:1;37918;37911:12;37862:63;37809:122;:::o;37937:116::-;38007:21;38022:5;38007:21;:::i;:::-;38000:5;37997:32;37987:60;;38043:1;38040;38033:12;37987:60;37937:116;:::o;38059:122::-;38132:24;38150:5;38132:24;:::i;:::-;38125:5;38122:35;38112:63;;38171:1;38168;38161:12;38112:63;38059:122;:::o;38187:120::-;38259:23;38276:5;38259:23;:::i;:::-;38252:5;38249:34;38239:62;;38297:1;38294;38287:12;38239:62;38187:120;:::o;38313:122::-;38386:24;38404:5;38386:24;:::i;:::-;38379:5;38376:35;38366:63;;38425:1;38422;38415:12;38366:63;38313:122;:::o
Swarm Source
ipfs://ea4012f875484573b6a4f6a1376c11c2c4c7b63cf514781872e9cca4e673c57b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.