Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,765 WS
Holders
1,504
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WenSandwich
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721ABurnable.sol"; contract WenSandwich is ERC721A, ERC721ABurnable, Ownable, ReentrancyGuard { bool public isOpen; mapping(uint256 => uint256[]) public ingredientData; mapping(uint256 => uint256) public priceData; mapping(uint256 => bool) public extraData; uint256 public constant MIN_INGREDIENTS = 3; uint256 public constant BG_RANGE_START = 1; uint256 public constant BG_RANGE_END = 36; uint256 public constant BREAD_RANGE_START = 37; uint256 public constant BREAD_RANGE_END = 57; uint256 public constant MAX_DECORATION = 1; uint256 public constant DECORATION_RANGE_START = 290; uint256 public constant DECORATION_RANGE_END = 367; uint256 public constant MAX_INGREDIENTS = 13; uint256 public constant MAX_ELDRITCH_INGREDIENTS = 8; uint256 public constant ELDRITCH_BREAD = 40; uint256 public constant BASE_PRICE = 0.05 ether; uint256 public constant BASE_CREDIT = 0.006 * 5 ether; uint256 public constant DISCOUNT = 0.05 ether; bytes32 public discountListMerkleRoot; string private _baseTokenURI = "https://www.wensandwich.xyz/api/prereveal/"; constructor(uint256[] memory prices, uint256[] memory extras) ERC721A("Wen Sandwich", "WS") { uint256 i; unchecked { do { priceData[i + 1] = prices[i]; } while (++i < prices.length); i = 0; do { extraData[extras[i]] = true; } while (++i < extras.length); } } function mint( uint256 quantity, uint256[][] calldata ingredients, bytes32[] calldata merkleProof ) external payable { require(tx.origin == msg.sender, "The caller is another contract"); require(isOpen, "The shop is closed."); require( quantity == ingredients.length, "Ingredient count does not match sandos." ); uint256 ingredientCost; uint256 extraIngredientCost; uint256 breadCount; uint256 decorationCount; uint256 bgCount; uint256 i; uint256 j; unchecked { do { uint256 ingredientLength = ingredients[i].length; require( ingredientLength >= MIN_INGREDIENTS, "Not enough ingredients." ); do { uint256 ingredientId = ingredients[i][j]; if ( isWithinBoundaries( BREAD_RANGE_START, BREAD_RANGE_END, ingredientId ) ) breadCount++; if ( isWithinBoundaries( DECORATION_RANGE_START, DECORATION_RANGE_END, ingredientId ) ) decorationCount++; if ( isWithinBoundaries( BG_RANGE_START, BG_RANGE_END, ingredientId ) ) bgCount++; uint256 ingredientPrice = priceData[ingredientId]; extraData[ingredientId] ? extraIngredientCost += ingredientPrice : ingredientCost += ingredientPrice; } while (++j < ingredientLength); j = 0; bool validIngredients = !_includes( ELDRITCH_BREAD, ingredients[i] ) ? ingredientLength <= MAX_INGREDIENTS : ingredientLength <= MAX_ELDRITCH_INGREDIENTS; require(validIngredients, "Too many ingredients."); } while (++i < quantity); } require(breadCount == quantity, "You bread order is weird."); require(bgCount == quantity, "You need one background."); require(decorationCount <= quantity, "Too many decorations."); { uint256 credits = BASE_CREDIT * quantity; uint256 price = BASE_PRICE * quantity; uint256 costMinusCredit = ingredientCost > credits ? ingredientCost - credits : 0; uint256 baseWithDiscount = _isDiscountValid(msg.sender, merkleProof) ? price - DISCOUNT : price; require( baseWithDiscount + costMinusCredit + extraIngredientCost <= msg.value, "Insufficient funds." ); } if (_isDiscountValid(msg.sender, merkleProof)) _setAux(msg.sender, 1); i = 0; unchecked { do { ingredientData[_nextTokenId() + i] = ingredients[i]; } while (++i < quantity); } _mint(msg.sender, quantity); } function setShopState(bool state) external onlyOwner { isOpen = state; } function setDiscountListMerkleRoot(bytes32 merkleRoot) external onlyOwner { discountListMerkleRoot = merkleRoot; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdraw() external onlyOwner nonReentrant { payable(0xA84563099458FC85430F8f08cfB1943Bd3dD0f74).transfer( (address(this).balance * 10) / 100 ); payable(0xEE3296A125b8d545de002E5Bbad524B065eC62f6).transfer( address(this).balance ); } function contents(uint256 tokenId) external view returns (uint256[] memory) { require(_exists(tokenId), "Token does not exist"); return ingredientData[tokenId]; } function exists(uint256 tokenId) external view returns (bool) { return _exists(tokenId); } function getOwnershipAt(uint256 index) external view returns (TokenOwnership memory) { return _ownershipAt(index); } function totalMinted() external view returns (uint256) { return _totalMinted(); } function totalBurned() external view returns (uint256) { return _totalBurned(); } function numberBurned(address owner) external view returns (uint256) { return _numberBurned(owner); } function hasDiscount(address addr, bytes32[] calldata merkleProof) external view returns (bool) { return _isDiscountValid(addr, merkleProof); } function _isDiscountValid(address addr, bytes32[] memory merkleProof) internal view returns (bool) { return MerkleProof.verify( merkleProof, discountListMerkleRoot, keccak256(abi.encodePacked(addr)) ) && _getAux(addr) != 1; } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function isWithinBoundaries( uint256 start, uint256 end, uint256 input ) internal pure returns (bool) { return input >= start && input <= end; } function _includes(uint256 number, uint256[] calldata array) internal pure returns (bool) { uint256 i; uint256 arrayLength = array.length; unchecked { do { if (array[i] == number) return true; } while (++i < arrayLength); } return false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @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) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721ABurnable.sol'; import '../ERC721A.sol'; /** * @title ERC721ABurnable. * * @dev ERC721A token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of ERC721ABurnable. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256[]","name":"prices","type":"uint256[]"},{"internalType":"uint256[]","name":"extras","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_CREDIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BASE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BG_RANGE_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BG_RANGE_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BREAD_RANGE_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BREAD_RANGE_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECORATION_RANGE_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECORATION_RANGE_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ELDRITCH_BREAD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DECORATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELDRITCH_INGREDIENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_INGREDIENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_INGREDIENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"contents","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"extraData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"index","type":"uint256"}],"name":"getOwnershipAt","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"hasDiscount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ingredientData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256[][]","name":"ingredients","type":"uint256[][]"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"priceData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setDiscountListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setShopState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602a815260200162004e1d602a9139600f90816200002e919062000533565b503480156200003c57600080fd5b5060405162004e4738038062004e478339818101604052810190620000629190620007a5565b6040518060400160405280600c81526020017f57656e2053616e647769636800000000000000000000000000000000000000008152506040518060400160405280600281526020017f57530000000000000000000000000000000000000000000000000000000000008152508160029081620000df919062000533565b508060039081620000f1919062000533565b5062000102620001e260201b60201c565b60008190555050506200012a6200011e620001eb60201b60201c565b620001f360201b60201c565b600160098190555060005b8281815181106200014b576200014a6200082a565b5b6020026020010151600c600060018401815260200190815260200160002081905550825181600101915081106200013557600090505b6001600d60008484815181106200019d576200019c6200082a565b5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555081518160010191508110620001815750505062000859565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033b57607f821691505b602082108103620003515762000350620002f3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200037c565b620003c786836200037c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004146200040e6200040884620003df565b620003e9565b620003df565b9050919050565b6000819050919050565b6200043083620003f3565b620004486200043f826200041b565b84845462000389565b825550505050565b600090565b6200045f62000450565b6200046c81848462000425565b505050565b5b8181101562000494576200048860008262000455565b60018101905062000472565b5050565b601f821115620004e357620004ad8162000357565b620004b8846200036c565b81016020851015620004c8578190505b620004e0620004d7856200036c565b83018262000471565b50505b505050565b600082821c905092915050565b60006200050860001984600802620004e8565b1980831691505092915050565b6000620005238383620004f5565b9150826002028217905092915050565b6200053e82620002b9565b67ffffffffffffffff8111156200055a5762000559620002c4565b5b62000566825462000322565b6200057382828562000498565b600060209050601f831160018114620005ab576000841562000596578287015190505b620005a2858262000515565b86555062000612565b601f198416620005bb8662000357565b60005b82811015620005e557848901518255600182019150602085019450602081019050620005be565b8683101562000605578489015162000601601f891682620004f5565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200064f8262000633565b810181811067ffffffffffffffff82111715620006715762000670620002c4565b5b80604052505050565b6000620006866200061a565b905062000694828262000644565b919050565b600067ffffffffffffffff821115620006b757620006b6620002c4565b5b602082029050602081019050919050565b600080fd5b620006d881620003df565b8114620006e457600080fd5b50565b600081519050620006f881620006cd565b92915050565b6000620007156200070f8462000699565b6200067a565b905080838252602082019050602084028301858111156200073b576200073a620006c8565b5b835b81811015620007685780620007538882620006e7565b8452602084019350506020810190506200073d565b5050509392505050565b600082601f8301126200078a57620007896200062e565b5b81516200079c848260208601620006fe565b91505092915050565b60008060408385031215620007bf57620007be62000624565b5b600083015167ffffffffffffffff811115620007e057620007df62000629565b5b620007ee8582860162000772565b925050602083015167ffffffffffffffff81111562000812576200081162000629565b5b620008208582860162000772565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6145b480620008696000396000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063adaec8e4116100dc578063c87b56dd11610095578063f25236331161006f578063f252363314610aaf578063f281127714610aec578063f2fde38b14610b17578063f86325ed14610b40576102ae565b8063c87b56dd14610a0a578063d89135cd14610a47578063e985e9c514610a72576102ae565b8063adaec8e414610904578063b1d1cec814610920578063b5ecf9121461095d578063b88d4fde1461099a578063c385e4b0146109b6578063c65eaf4c146109e1576102ae565b8063894f13a11161012e578063894f13a1146108065780638da5cb5b1461083157806395d89b411461085c578063a0f49b4514610887578063a22cb465146108b0578063a2309ff8146108d9576102ae565b8063715018a6146106e257806378025ec4146106f95780637931310d146107365780637b24b127146107615780638042c4f01461079e578063864d50a3146107db576102ae565b80633ccfd60b1161021957806352099e36116101d257806352099e36146105be57806355f804b3146105e95780635d68ebda146106125780636352211e1461063d578063695e30711461067a57806370a08231146106a5576102ae565b80633ccfd60b146104cf57806342842e0e146104e657806342966c681461050257806347535d7b1461052b57806348cb5a30146105565780634f558e7914610581576102ae565b806317c61bb71161026b57806317c61bb7146103ca57806318160ddd146103f557806323b872dd146104205780632478d6391461043c5780632942d64f146104795780632ff1e184146104a4576102ae565b806301ffc9a7146102b3578063063b33c4146102f057806306fdde031461031b578063081812fc14610346578063095ea7b3146103835780630d37b4571461039f575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190612ec2565b610b6b565b6040516102e79190612f0a565b60405180910390f35b3480156102fc57600080fd5b50610305610bfd565b6040516103129190612f3e565b60405180910390f35b34801561032757600080fd5b50610330610c08565b60405161033d9190612fe9565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190613037565b610c9a565b60405161037a91906130a5565b60405180910390f35b61039d600480360381019061039891906130ec565b610d19565b005b3480156103ab57600080fd5b506103b4610e5d565b6040516103c19190612f3e565b60405180910390f35b3480156103d657600080fd5b506103df610e68565b6040516103ec9190612f3e565b60405180910390f35b34801561040157600080fd5b5061040a610e6d565b6040516104179190612f3e565b60405180910390f35b61043a6004803603810190610435919061312c565b610e84565b005b34801561044857600080fd5b50610463600480360381019061045e919061317f565b6111a6565b6040516104709190612f3e565b60405180910390f35b34801561048557600080fd5b5061048e6111b8565b60405161049b9190612f3e565b60405180910390f35b3480156104b057600080fd5b506104b96111bd565b6040516104c69190612f3e565b60405180910390f35b3480156104db57600080fd5b506104e46111c2565b005b61050060048036038101906104fb919061312c565b6112aa565b005b34801561050e57600080fd5b5061052960048036038101906105249190613037565b6112ca565b005b34801561053757600080fd5b506105406112d8565b60405161054d9190612f0a565b60405180910390f35b34801561056257600080fd5b5061056b6112eb565b6040516105789190612f3e565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613037565b6112f0565b6040516105b59190612f0a565b60405180910390f35b3480156105ca57600080fd5b506105d3611302565b6040516105e09190612f3e565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613211565b611307565b005b34801561061e57600080fd5b50610627611325565b6040516106349190612f3e565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613037565b61132a565b60405161067191906130a5565b60405180910390f35b34801561068657600080fd5b5061068f61133c565b60405161069c9190613277565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c7919061317f565b611342565b6040516106d99190612f3e565b60405180910390f35b3480156106ee57600080fd5b506106f76113fa565b005b34801561070557600080fd5b50610720600480360381019061071b9190613037565b61140e565b60405161072d9190612f0a565b60405180910390f35b34801561074257600080fd5b5061074b61142e565b6040516107589190612f3e565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190613292565b611433565b6040516107959190612f3e565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613328565b611464565b6040516107d29190612f0a565b60405180910390f35b3480156107e757600080fd5b506107f06114ba565b6040516107fd9190612f3e565b60405180910390f35b34801561081257600080fd5b5061081b6114bf565b6040516108289190612f3e565b60405180910390f35b34801561083d57600080fd5b506108466114c4565b60405161085391906130a5565b60405180910390f35b34801561086857600080fd5b506108716114ee565b60405161087e9190612fe9565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906133b4565b611580565b005b3480156108bc57600080fd5b506108d760048036038101906108d2919061340d565b611592565b005b3480156108e557600080fd5b506108ee61169d565b6040516108fb9190612f3e565b60405180910390f35b61091e600480360381019061091991906134a3565b6116ac565b005b34801561092c57600080fd5b5061094760048036038101906109429190613037565b611c6b565b6040516109549190612f3e565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613037565b611c83565b60405161099191906135f6565b60405180910390f35b6109b460048036038101906109af9190613748565b611d36565b005b3480156109c257600080fd5b506109cb611da9565b6040516109d89190612f3e565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906137cb565b611daf565b005b348015610a1657600080fd5b50610a316004803603810190610a2c9190613037565b611dd4565b604051610a3e9190612fe9565b60405180910390f35b348015610a5357600080fd5b50610a5c611e72565b604051610a699190612f3e565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a9491906137f8565b611e81565b604051610aa69190612f0a565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613037565b611f15565b604051610ae391906138ec565b60405180910390f35b348015610af857600080fd5b50610b01611f2d565b604051610b0e9190612f3e565b60405180910390f35b348015610b2357600080fd5b50610b3e6004803603810190610b39919061317f565b611f33565b005b348015610b4c57600080fd5b50610b55611fb6565b604051610b629190612f3e565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b666a94d74f43000081565b606060028054610c1790613936565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4390613936565b8015610c905780601f10610c6557610100808354040283529160200191610c90565b820191906000526020600020905b815481529060010190602001808311610c7357829003601f168201915b5050505050905090565b6000610ca582611fc1565b610cdb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d248261132a565b90508073ffffffffffffffffffffffffffffffffffffffff16610d45612020565b73ffffffffffffffffffffffffffffffffffffffff1614610da857610d7181610d6c612020565b611e81565b610da7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b66b1a2bc2ec5000081565b602881565b6000610e77612028565b6001546000540303905090565b6000610e8f82612031565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f02846120fd565b91509150610f188187610f13612020565b612124565b610f6457610f2d86610f28612020565b611e81565b610f63576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fd78686866001612168565b8015610fe257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110b08561108c88888761216e565b7c020000000000000000000000000000000000000000000000000000000017612196565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111365760006001850190506000600460008381526020019081526020016000205403611134576000548114611133578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461119e86868660016121c1565b505050505050565b60006111b1826121c7565b9050919050565b600181565b600881565b6111ca61221e565b6111d261229c565b73a84563099458fc85430f8f08cfb1943bd3dd0f7473ffffffffffffffffffffffffffffffffffffffff166108fc6064600a4761120f9190613996565b6112199190613a07565b9081150290604051600060405180830381858888f19350505050158015611244573d6000803e3d6000fd5b5073ee3296a125b8d545de002e5bbad524b065ec62f673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561129f573d6000803e3d6000fd5b506112a86122eb565b565b6112c583838360405180602001604052806000815250611d36565b505050565b6112d58160016122f5565b50565b600a60009054906101000a900460ff1681565b602581565b60006112fb82611fc1565b9050919050565b600181565b61130f61221e565b8181600f9182611320929190613bef565b505050565b600381565b600061133582612031565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61140261221e565b61140c6000612547565b565b600d6020528060005260406000206000915054906101000a900460ff1681565b603981565b600b602052816000526040600020818154811061144f57600080fd5b90600052602060002001600091509150505481565b60006114b184848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061260d565b90509392505050565b600d81565b602481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114fd90613936565b80601f016020809104026020016040519081016040528092919081815260200182805461152990613936565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b5050505050905090565b61158861221e565b80600e8190555050565b806007600061159f612020565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164c612020565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116919190612f0a565b60405180910390a35050565b60006116a7612669565b905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613d0b565b60405180910390fd5b600a60009054906101000a900460ff16611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613d77565b60405180910390fd5b8383905085146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613e09565b60405180910390fd5b60008060008060008060005b60008b8b848181106117cf576117ce613e29565b5b90506020028101906117e19190613e67565b905090506003811015611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613f16565b60405180910390fd5b5b60008c8c8581811061183f5761183e613e29565b5b90506020028101906118519190613e67565b8481811061186257611861613e29565b5b905060200201359050611878602560398361267c565b156118865786806001019750505b61189561012261016f8361267c565b156118a35785806001019650505b6118b0600160248361267c565b156118be5784806001019550505b6000600c6000838152602001908152602001600020549050600d600083815260200190815260200160002060009054906101000a900460ff1661190657808a0199508961190d565b8089019850885b50505080826001019250821061182a5760009150600061195260288e8e8781811061193b5761193a613e29565b5b905060200281019061194d9190613e67565b612697565b15611961576008821115611967565b600d8211155b9050806119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613f82565b60405180910390fd5b50508b82600101925082106117ba578b85146119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613fee565b60405180910390fd5b8b8314611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a339061405a565b60405180910390fd5b8b841115611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a76906140c6565b60405180910390fd5b60008c666a94d74f430000611a949190613996565b905060008d66b1a2bc2ec50000611aab9190613996565b90506000828a11611abd576000611aca565b828a611ac991906140e6565b5b90506000611b19338e8e80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061260d565b611b235782611b37565b66b1a2bc2ec5000083611b3691906140e6565b5b9050348a8383611b47919061411a565b611b51919061411a565b1115611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b899061419a565b60405180910390fd5b50505050611be1338a8a80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061260d565b15611bf257611bf13360016126e9565b5b600091505b8a8a83818110611c0a57611c09613e29565b5b9050602002810190611c1c9190613e67565b600b600085611c2961279f565b0181526020019081526020016000209190611c45929190612d9d565b508b8260010192508210611bf757611c5d338d6127a8565b505050505050505050505050565b600c6020528060005260406000206000915090505481565b6060611c8e82611fc1565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614206565b60405180910390fd5b600b6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611d2a57602002820191906000526020600020905b815481526020019060010190808311611d16575b50505050509050919050565b611d41848484610e84565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611da357611d6c84848484612963565b611da2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61016f81565b611db761221e565b80600a60006101000a81548160ff02191690831515021790555050565b6060611ddf82611fc1565b611e15576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e1f612ab3565b90506000815103611e3f5760405180602001604052806000815250611e6a565b80611e4984612b45565b604051602001611e5a929190614262565b6040516020818303038152906040525b915050919050565b6000611e7c612b95565b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f1d612dea565b611f2682612b9f565b9050919050565b61012281565b611f3b61221e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906142f8565b60405180910390fd5b611fb381612547565b50565b66b1a2bc2ec5000081565b600081611fcc612028565b11158015611fdb575060005482105b8015612019575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612040612028565b116120c6576000548110156120c55760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120c3575b600081036120b957600460008360019003935083815260200190815260200160002054905061208f565b80925050506120f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612185868684612bca565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612226612bd3565b73ffffffffffffffffffffffffffffffffffffffff166122446114c4565b73ffffffffffffffffffffffffffffffffffffffff161461229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614364565b60405180910390fd5b565b6002600954036122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d8906143d0565b60405180910390fd5b6002600981905550565b6001600981905550565b600061230083612031565b90506000819050600080612313866120fd565b91509150841561237c5761232f818461232a612020565b612124565b61237b576123448361233f612020565b611e81565b61237a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61238a836000886001612168565b801561239557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061243d836123fa8560008861216e565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612196565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036124c357600060018701905060006004600083815260200190815260200160002054036124c15760005481146124c0578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461252d8360008860016121c1565b600160008154809291906001019190505550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061264282600e54856040516020016126279190614438565b60405160208183030381529060405280519060200120612bdb565b80156126615750600161265484612bf2565b67ffffffffffffffff1614155b905092915050565b6000612673612028565b60005403905090565b600083821015801561268e5750828211155b90509392505050565b60008060008484905090505b858585848181106126b7576126b6613e29565b5b90506020020135036126ce576001925050506126e2565b8082600101925082106126a3576000925050505b9392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008054905090565b600080549050600082036127e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f56000848385612168565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061286c8361285d600086600061216e565b61286685612c3f565b17612196565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461290d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128d2565b5060008203612948576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061295e60008483856121c1565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612989612020565b8786866040518563ffffffff1660e01b81526004016129ab94939291906144a8565b6020604051808303816000875af19250505080156129e757506040513d601f19601f820116820180604052508101906129e49190614509565b60015b612a60573d8060008114612a17576040519150601f19603f3d011682016040523d82523d6000602084013e612a1c565b606091505b506000815103612a58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612ac290613936565b80601f0160208091040260200160405190810160405280929190818152602001828054612aee90613936565b8015612b3b5780601f10612b1057610100808354040283529160200191612b3b565b820191906000526020600020905b815481529060010190602001808311612b1e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612b8057600184039350600a81066030018453600a8104905080612b5e575b50828103602084039350808452505050919050565b6000600154905090565b612ba7612dea565b612bc36004600084815260200190815260200160002054612c4f565b9050919050565b60009392505050565b600033905090565b600082612be88584612d05565b1490509392505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60006001821460e11b9050919050565b612c57612dea565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612d5057612d3b82868381518110612d2e57612d2d613e29565b5b6020026020010151612d5b565b91508080612d4890614536565b915050612d0e565b508091505092915050565b6000818310612d7357612d6e8284612d86565b612d7e565b612d7d8383612d86565b5b905092915050565b600082600052816020526040600020905092915050565b828054828255906000526020600020908101928215612dd9579160200282015b82811115612dd8578235825591602001919060010190612dbd565b5b509050612de69190612e39565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612e52576000816000905550600101612e3a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e9f81612e6a565b8114612eaa57600080fd5b50565b600081359050612ebc81612e96565b92915050565b600060208284031215612ed857612ed7612e60565b5b6000612ee684828501612ead565b91505092915050565b60008115159050919050565b612f0481612eef565b82525050565b6000602082019050612f1f6000830184612efb565b92915050565b6000819050919050565b612f3881612f25565b82525050565b6000602082019050612f536000830184612f2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f93578082015181840152602081019050612f78565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fbb82612f59565b612fc58185612f64565b9350612fd5818560208601612f75565b612fde81612f9f565b840191505092915050565b600060208201905081810360008301526130038184612fb0565b905092915050565b61301481612f25565b811461301f57600080fd5b50565b6000813590506130318161300b565b92915050565b60006020828403121561304d5761304c612e60565b5b600061305b84828501613022565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061308f82613064565b9050919050565b61309f81613084565b82525050565b60006020820190506130ba6000830184613096565b92915050565b6130c981613084565b81146130d457600080fd5b50565b6000813590506130e6816130c0565b92915050565b6000806040838503121561310357613102612e60565b5b6000613111858286016130d7565b925050602061312285828601613022565b9150509250929050565b60008060006060848603121561314557613144612e60565b5b6000613153868287016130d7565b9350506020613164868287016130d7565b925050604061317586828701613022565b9150509250925092565b60006020828403121561319557613194612e60565b5b60006131a3848285016130d7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126131d1576131d06131ac565b5b8235905067ffffffffffffffff8111156131ee576131ed6131b1565b5b60208301915083600182028301111561320a576132096131b6565b5b9250929050565b6000806020838503121561322857613227612e60565b5b600083013567ffffffffffffffff81111561324657613245612e65565b5b613252858286016131bb565b92509250509250929050565b6000819050919050565b6132718161325e565b82525050565b600060208201905061328c6000830184613268565b92915050565b600080604083850312156132a9576132a8612e60565b5b60006132b785828601613022565b92505060206132c885828601613022565b9150509250929050565b60008083601f8401126132e8576132e76131ac565b5b8235905067ffffffffffffffff811115613305576133046131b1565b5b602083019150836020820283011115613321576133206131b6565b5b9250929050565b60008060006040848603121561334157613340612e60565b5b600061334f868287016130d7565b935050602084013567ffffffffffffffff8111156133705761336f612e65565b5b61337c868287016132d2565b92509250509250925092565b6133918161325e565b811461339c57600080fd5b50565b6000813590506133ae81613388565b92915050565b6000602082840312156133ca576133c9612e60565b5b60006133d88482850161339f565b91505092915050565b6133ea81612eef565b81146133f557600080fd5b50565b600081359050613407816133e1565b92915050565b6000806040838503121561342457613423612e60565b5b6000613432858286016130d7565b9250506020613443858286016133f8565b9150509250929050565b60008083601f840112613463576134626131ac565b5b8235905067ffffffffffffffff8111156134805761347f6131b1565b5b60208301915083602082028301111561349c5761349b6131b6565b5b9250929050565b6000806000806000606086880312156134bf576134be612e60565b5b60006134cd88828901613022565b955050602086013567ffffffffffffffff8111156134ee576134ed612e65565b5b6134fa8882890161344d565b9450945050604086013567ffffffffffffffff81111561351d5761351c612e65565b5b613529888289016132d2565b92509250509295509295909350565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61356d81612f25565b82525050565b600061357f8383613564565b60208301905092915050565b6000602082019050919050565b60006135a382613538565b6135ad8185613543565b93506135b883613554565b8060005b838110156135e95781516135d08882613573565b97506135db8361358b565b9250506001810190506135bc565b5085935050505092915050565b600060208201905081810360008301526136108184613598565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61365582612f9f565b810181811067ffffffffffffffff821117156136745761367361361d565b5b80604052505050565b6000613687612e56565b9050613693828261364c565b919050565b600067ffffffffffffffff8211156136b3576136b261361d565b5b6136bc82612f9f565b9050602081019050919050565b82818337600083830152505050565b60006136eb6136e684613698565b61367d565b90508281526020810184848401111561370757613706613618565b5b6137128482856136c9565b509392505050565b600082601f83011261372f5761372e6131ac565b5b813561373f8482602086016136d8565b91505092915050565b6000806000806080858703121561376257613761612e60565b5b6000613770878288016130d7565b9450506020613781878288016130d7565b935050604061379287828801613022565b925050606085013567ffffffffffffffff8111156137b3576137b2612e65565b5b6137bf8782880161371a565b91505092959194509250565b6000602082840312156137e1576137e0612e60565b5b60006137ef848285016133f8565b91505092915050565b6000806040838503121561380f5761380e612e60565b5b600061381d858286016130d7565b925050602061382e858286016130d7565b9150509250929050565b61384181613084565b82525050565b600067ffffffffffffffff82169050919050565b61386481613847565b82525050565b61387381612eef565b82525050565b600062ffffff82169050919050565b61389181613879565b82525050565b6080820160008201516138ad6000850182613838565b5060208201516138c0602085018261385b565b5060408201516138d3604085018261386a565b5060608201516138e66060850182613888565b50505050565b60006080820190506139016000830184613897565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394e57607f821691505b60208210810361396157613960613907565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a182612f25565b91506139ac83612f25565b92508282026139ba81612f25565b915082820484148315176139d1576139d0613967565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a1282612f25565b9150613a1d83612f25565b925082613a2d57613a2c6139d8565b5b828204905092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613aa57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a68565b613aaf8683613a68565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613aec613ae7613ae284612f25565b613ac7565b612f25565b9050919050565b6000819050919050565b613b0683613ad1565b613b1a613b1282613af3565b848454613a75565b825550505050565b600090565b613b2f613b22565b613b3a818484613afd565b505050565b5b81811015613b5e57613b53600082613b27565b600181019050613b40565b5050565b601f821115613ba357613b7481613a43565b613b7d84613a58565b81016020851015613b8c578190505b613ba0613b9885613a58565b830182613b3f565b50505b505050565b600082821c905092915050565b6000613bc660001984600802613ba8565b1980831691505092915050565b6000613bdf8383613bb5565b9150826002028217905092915050565b613bf98383613a38565b67ffffffffffffffff811115613c1257613c1161361d565b5b613c1c8254613936565b613c27828285613b62565b6000601f831160018114613c565760008415613c44578287013590505b613c4e8582613bd3565b865550613cb6565b601f198416613c6486613a43565b60005b82811015613c8c57848901358255600182019150602085019450602081019050613c67565b86831015613ca95784890135613ca5601f891682613bb5565b8355505b6001600288020188555050505b50505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613cf5601e83612f64565b9150613d0082613cbf565b602082019050919050565b60006020820190508181036000830152613d2481613ce8565b9050919050565b7f5468652073686f7020697320636c6f7365642e00000000000000000000000000600082015250565b6000613d61601383612f64565b9150613d6c82613d2b565b602082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f496e6772656469656e7420636f756e7420646f6573206e6f74206d617463682060008201527f73616e646f732e00000000000000000000000000000000000000000000000000602082015250565b6000613df3602783612f64565b9150613dfe82613d97565b604082019050919050565b60006020820190508181036000830152613e2281613de6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b60008083356001602003843603038112613e8457613e83613e58565b5b80840192508235915067ffffffffffffffff821115613ea657613ea5613e5d565b5b602083019250602082023603831315613ec257613ec1613e62565b5b509250929050565b7f4e6f7420656e6f75676820696e6772656469656e74732e000000000000000000600082015250565b6000613f00601783612f64565b9150613f0b82613eca565b602082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b7f546f6f206d616e7920696e6772656469656e74732e0000000000000000000000600082015250565b6000613f6c601583612f64565b9150613f7782613f36565b602082019050919050565b60006020820190508181036000830152613f9b81613f5f565b9050919050565b7f596f75206272656164206f726465722069732077656972642e00000000000000600082015250565b6000613fd8601983612f64565b9150613fe382613fa2565b602082019050919050565b6000602082019050818103600083015261400781613fcb565b9050919050565b7f596f75206e656564206f6e65206261636b67726f756e642e0000000000000000600082015250565b6000614044601883612f64565b915061404f8261400e565b602082019050919050565b6000602082019050818103600083015261407381614037565b9050919050565b7f546f6f206d616e79206465636f726174696f6e732e0000000000000000000000600082015250565b60006140b0601583612f64565b91506140bb8261407a565b602082019050919050565b600060208201905081810360008301526140df816140a3565b9050919050565b60006140f182612f25565b91506140fc83612f25565b925082820390508181111561411457614113613967565b5b92915050565b600061412582612f25565b915061413083612f25565b925082820190508082111561414857614147613967565b5b92915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000614184601383612f64565b915061418f8261414e565b602082019050919050565b600060208201905081810360008301526141b381614177565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b60006141f0601483612f64565b91506141fb826141ba565b602082019050919050565b6000602082019050818103600083015261421f816141e3565b9050919050565b600081905092915050565b600061423c82612f59565b6142468185614226565b9350614256818560208601612f75565b80840191505092915050565b600061426e8285614231565b915061427a8284614231565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e2602683612f64565b91506142ed82614286565b604082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061434e602083612f64565b915061435982614318565b602082019050919050565b6000602082019050818103600083015261437d81614341565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143ba601f83612f64565b91506143c582614384565b602082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b60008160601b9050919050565b6000614408826143f0565b9050919050565b600061441a826143fd565b9050919050565b61443261442d82613084565b61440f565b82525050565b60006144448284614421565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061447a82614453565b614484818561445e565b9350614494818560208601612f75565b61449d81612f9f565b840191505092915050565b60006080820190506144bd6000830187613096565b6144ca6020830186613096565b6144d76040830185612f2f565b81810360608301526144e9818461446f565b905095945050505050565b60008151905061450381612e96565b92915050565b60006020828403121561451f5761451e612e60565b5b600061452d848285016144f4565b91505092915050565b600061454182612f25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361457357614572613967565b5b60018201905091905056fea2646970667358221220f35bac15d76f95b4dc3cfe0340bb63c35ce368c2a2085164043c60598dc6846a64736f6c6343000811003368747470733a2f2f7777772e77656e73616e64776963682e78797a2f6170692f70726572657665616c2f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000002e40000000000000000000000000000000000000000000000000000000000000016f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000354a6ba7a1800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca7000000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf52634000000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf52634000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e000000000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e000000000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000cf000000000000000000000000000000000000000000000000000000000000014600000000000000000000000000000000000000000000000000000000000001470000000000000000000000000000000000000000000000000000000000000148000000000000000000000000000000000000000000000000000000000000016d000000000000000000000000000000000000000000000000000000000000016e000000000000000000000000000000000000000000000000000000000000016f
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c8063715018a611610175578063adaec8e4116100dc578063c87b56dd11610095578063f25236331161006f578063f252363314610aaf578063f281127714610aec578063f2fde38b14610b17578063f86325ed14610b40576102ae565b8063c87b56dd14610a0a578063d89135cd14610a47578063e985e9c514610a72576102ae565b8063adaec8e414610904578063b1d1cec814610920578063b5ecf9121461095d578063b88d4fde1461099a578063c385e4b0146109b6578063c65eaf4c146109e1576102ae565b8063894f13a11161012e578063894f13a1146108065780638da5cb5b1461083157806395d89b411461085c578063a0f49b4514610887578063a22cb465146108b0578063a2309ff8146108d9576102ae565b8063715018a6146106e257806378025ec4146106f95780637931310d146107365780637b24b127146107615780638042c4f01461079e578063864d50a3146107db576102ae565b80633ccfd60b1161021957806352099e36116101d257806352099e36146105be57806355f804b3146105e95780635d68ebda146106125780636352211e1461063d578063695e30711461067a57806370a08231146106a5576102ae565b80633ccfd60b146104cf57806342842e0e146104e657806342966c681461050257806347535d7b1461052b57806348cb5a30146105565780634f558e7914610581576102ae565b806317c61bb71161026b57806317c61bb7146103ca57806318160ddd146103f557806323b872dd146104205780632478d6391461043c5780632942d64f146104795780632ff1e184146104a4576102ae565b806301ffc9a7146102b3578063063b33c4146102f057806306fdde031461031b578063081812fc14610346578063095ea7b3146103835780630d37b4571461039f575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190612ec2565b610b6b565b6040516102e79190612f0a565b60405180910390f35b3480156102fc57600080fd5b50610305610bfd565b6040516103129190612f3e565b60405180910390f35b34801561032757600080fd5b50610330610c08565b60405161033d9190612fe9565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190613037565b610c9a565b60405161037a91906130a5565b60405180910390f35b61039d600480360381019061039891906130ec565b610d19565b005b3480156103ab57600080fd5b506103b4610e5d565b6040516103c19190612f3e565b60405180910390f35b3480156103d657600080fd5b506103df610e68565b6040516103ec9190612f3e565b60405180910390f35b34801561040157600080fd5b5061040a610e6d565b6040516104179190612f3e565b60405180910390f35b61043a6004803603810190610435919061312c565b610e84565b005b34801561044857600080fd5b50610463600480360381019061045e919061317f565b6111a6565b6040516104709190612f3e565b60405180910390f35b34801561048557600080fd5b5061048e6111b8565b60405161049b9190612f3e565b60405180910390f35b3480156104b057600080fd5b506104b96111bd565b6040516104c69190612f3e565b60405180910390f35b3480156104db57600080fd5b506104e46111c2565b005b61050060048036038101906104fb919061312c565b6112aa565b005b34801561050e57600080fd5b5061052960048036038101906105249190613037565b6112ca565b005b34801561053757600080fd5b506105406112d8565b60405161054d9190612f0a565b60405180910390f35b34801561056257600080fd5b5061056b6112eb565b6040516105789190612f3e565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613037565b6112f0565b6040516105b59190612f0a565b60405180910390f35b3480156105ca57600080fd5b506105d3611302565b6040516105e09190612f3e565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613211565b611307565b005b34801561061e57600080fd5b50610627611325565b6040516106349190612f3e565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190613037565b61132a565b60405161067191906130a5565b60405180910390f35b34801561068657600080fd5b5061068f61133c565b60405161069c9190613277565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c7919061317f565b611342565b6040516106d99190612f3e565b60405180910390f35b3480156106ee57600080fd5b506106f76113fa565b005b34801561070557600080fd5b50610720600480360381019061071b9190613037565b61140e565b60405161072d9190612f0a565b60405180910390f35b34801561074257600080fd5b5061074b61142e565b6040516107589190612f3e565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190613292565b611433565b6040516107959190612f3e565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613328565b611464565b6040516107d29190612f0a565b60405180910390f35b3480156107e757600080fd5b506107f06114ba565b6040516107fd9190612f3e565b60405180910390f35b34801561081257600080fd5b5061081b6114bf565b6040516108289190612f3e565b60405180910390f35b34801561083d57600080fd5b506108466114c4565b60405161085391906130a5565b60405180910390f35b34801561086857600080fd5b506108716114ee565b60405161087e9190612fe9565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906133b4565b611580565b005b3480156108bc57600080fd5b506108d760048036038101906108d2919061340d565b611592565b005b3480156108e557600080fd5b506108ee61169d565b6040516108fb9190612f3e565b60405180910390f35b61091e600480360381019061091991906134a3565b6116ac565b005b34801561092c57600080fd5b5061094760048036038101906109429190613037565b611c6b565b6040516109549190612f3e565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613037565b611c83565b60405161099191906135f6565b60405180910390f35b6109b460048036038101906109af9190613748565b611d36565b005b3480156109c257600080fd5b506109cb611da9565b6040516109d89190612f3e565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906137cb565b611daf565b005b348015610a1657600080fd5b50610a316004803603810190610a2c9190613037565b611dd4565b604051610a3e9190612fe9565b60405180910390f35b348015610a5357600080fd5b50610a5c611e72565b604051610a699190612f3e565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a9491906137f8565b611e81565b604051610aa69190612f0a565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613037565b611f15565b604051610ae391906138ec565b60405180910390f35b348015610af857600080fd5b50610b01611f2d565b604051610b0e9190612f3e565b60405180910390f35b348015610b2357600080fd5b50610b3e6004803603810190610b39919061317f565b611f33565b005b348015610b4c57600080fd5b50610b55611fb6565b604051610b629190612f3e565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b666a94d74f43000081565b606060028054610c1790613936565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4390613936565b8015610c905780601f10610c6557610100808354040283529160200191610c90565b820191906000526020600020905b815481529060010190602001808311610c7357829003601f168201915b5050505050905090565b6000610ca582611fc1565b610cdb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d248261132a565b90508073ffffffffffffffffffffffffffffffffffffffff16610d45612020565b73ffffffffffffffffffffffffffffffffffffffff1614610da857610d7181610d6c612020565b611e81565b610da7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b66b1a2bc2ec5000081565b602881565b6000610e77612028565b6001546000540303905090565b6000610e8f82612031565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f02846120fd565b91509150610f188187610f13612020565b612124565b610f6457610f2d86610f28612020565b611e81565b610f63576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fd78686866001612168565b8015610fe257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110b08561108c88888761216e565b7c020000000000000000000000000000000000000000000000000000000017612196565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111365760006001850190506000600460008381526020019081526020016000205403611134576000548114611133578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461119e86868660016121c1565b505050505050565b60006111b1826121c7565b9050919050565b600181565b600881565b6111ca61221e565b6111d261229c565b73a84563099458fc85430f8f08cfb1943bd3dd0f7473ffffffffffffffffffffffffffffffffffffffff166108fc6064600a4761120f9190613996565b6112199190613a07565b9081150290604051600060405180830381858888f19350505050158015611244573d6000803e3d6000fd5b5073ee3296a125b8d545de002e5bbad524b065ec62f673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561129f573d6000803e3d6000fd5b506112a86122eb565b565b6112c583838360405180602001604052806000815250611d36565b505050565b6112d58160016122f5565b50565b600a60009054906101000a900460ff1681565b602581565b60006112fb82611fc1565b9050919050565b600181565b61130f61221e565b8181600f9182611320929190613bef565b505050565b600381565b600061133582612031565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61140261221e565b61140c6000612547565b565b600d6020528060005260406000206000915054906101000a900460ff1681565b603981565b600b602052816000526040600020818154811061144f57600080fd5b90600052602060002001600091509150505481565b60006114b184848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061260d565b90509392505050565b600d81565b602481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114fd90613936565b80601f016020809104026020016040519081016040528092919081815260200182805461152990613936565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b5050505050905090565b61158861221e565b80600e8190555050565b806007600061159f612020565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164c612020565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116919190612f0a565b60405180910390a35050565b60006116a7612669565b905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613d0b565b60405180910390fd5b600a60009054906101000a900460ff16611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613d77565b60405180910390fd5b8383905085146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613e09565b60405180910390fd5b60008060008060008060005b60008b8b848181106117cf576117ce613e29565b5b90506020028101906117e19190613e67565b905090506003811015611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613f16565b60405180910390fd5b5b60008c8c8581811061183f5761183e613e29565b5b90506020028101906118519190613e67565b8481811061186257611861613e29565b5b905060200201359050611878602560398361267c565b156118865786806001019750505b61189561012261016f8361267c565b156118a35785806001019650505b6118b0600160248361267c565b156118be5784806001019550505b6000600c6000838152602001908152602001600020549050600d600083815260200190815260200160002060009054906101000a900460ff1661190657808a0199508961190d565b8089019850885b50505080826001019250821061182a5760009150600061195260288e8e8781811061193b5761193a613e29565b5b905060200281019061194d9190613e67565b612697565b15611961576008821115611967565b600d8211155b9050806119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613f82565b60405180910390fd5b50508b82600101925082106117ba578b85146119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613fee565b60405180910390fd5b8b8314611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a339061405a565b60405180910390fd5b8b841115611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a76906140c6565b60405180910390fd5b60008c666a94d74f430000611a949190613996565b905060008d66b1a2bc2ec50000611aab9190613996565b90506000828a11611abd576000611aca565b828a611ac991906140e6565b5b90506000611b19338e8e80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061260d565b611b235782611b37565b66b1a2bc2ec5000083611b3691906140e6565b5b9050348a8383611b47919061411a565b611b51919061411a565b1115611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b899061419a565b60405180910390fd5b50505050611be1338a8a80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061260d565b15611bf257611bf13360016126e9565b5b600091505b8a8a83818110611c0a57611c09613e29565b5b9050602002810190611c1c9190613e67565b600b600085611c2961279f565b0181526020019081526020016000209190611c45929190612d9d565b508b8260010192508210611bf757611c5d338d6127a8565b505050505050505050505050565b600c6020528060005260406000206000915090505481565b6060611c8e82611fc1565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614206565b60405180910390fd5b600b6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611d2a57602002820191906000526020600020905b815481526020019060010190808311611d16575b50505050509050919050565b611d41848484610e84565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611da357611d6c84848484612963565b611da2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61016f81565b611db761221e565b80600a60006101000a81548160ff02191690831515021790555050565b6060611ddf82611fc1565b611e15576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e1f612ab3565b90506000815103611e3f5760405180602001604052806000815250611e6a565b80611e4984612b45565b604051602001611e5a929190614262565b6040516020818303038152906040525b915050919050565b6000611e7c612b95565b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f1d612dea565b611f2682612b9f565b9050919050565b61012281565b611f3b61221e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906142f8565b60405180910390fd5b611fb381612547565b50565b66b1a2bc2ec5000081565b600081611fcc612028565b11158015611fdb575060005482105b8015612019575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612040612028565b116120c6576000548110156120c55760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120c3575b600081036120b957600460008360019003935083815260200190815260200160002054905061208f565b80925050506120f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612185868684612bca565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612226612bd3565b73ffffffffffffffffffffffffffffffffffffffff166122446114c4565b73ffffffffffffffffffffffffffffffffffffffff161461229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614364565b60405180910390fd5b565b6002600954036122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d8906143d0565b60405180910390fd5b6002600981905550565b6001600981905550565b600061230083612031565b90506000819050600080612313866120fd565b91509150841561237c5761232f818461232a612020565b612124565b61237b576123448361233f612020565b611e81565b61237a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61238a836000886001612168565b801561239557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061243d836123fa8560008861216e565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612196565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036124c357600060018701905060006004600083815260200190815260200160002054036124c15760005481146124c0578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461252d8360008860016121c1565b600160008154809291906001019190505550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061264282600e54856040516020016126279190614438565b60405160208183030381529060405280519060200120612bdb565b80156126615750600161265484612bf2565b67ffffffffffffffff1614155b905092915050565b6000612673612028565b60005403905090565b600083821015801561268e5750828211155b90509392505050565b60008060008484905090505b858585848181106126b7576126b6613e29565b5b90506020020135036126ce576001925050506126e2565b8082600101925082106126a3576000925050505b9392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008054905090565b600080549050600082036127e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f56000848385612168565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061286c8361285d600086600061216e565b61286685612c3f565b17612196565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461290d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128d2565b5060008203612948576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061295e60008483856121c1565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612989612020565b8786866040518563ffffffff1660e01b81526004016129ab94939291906144a8565b6020604051808303816000875af19250505080156129e757506040513d601f19601f820116820180604052508101906129e49190614509565b60015b612a60573d8060008114612a17576040519150601f19603f3d011682016040523d82523d6000602084013e612a1c565b606091505b506000815103612a58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612ac290613936565b80601f0160208091040260200160405190810160405280929190818152602001828054612aee90613936565b8015612b3b5780601f10612b1057610100808354040283529160200191612b3b565b820191906000526020600020905b815481529060010190602001808311612b1e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612b8057600184039350600a81066030018453600a8104905080612b5e575b50828103602084039350808452505050919050565b6000600154905090565b612ba7612dea565b612bc36004600084815260200190815260200160002054612c4f565b9050919050565b60009392505050565b600033905090565b600082612be88584612d05565b1490509392505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60006001821460e11b9050919050565b612c57612dea565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612d5057612d3b82868381518110612d2e57612d2d613e29565b5b6020026020010151612d5b565b91508080612d4890614536565b915050612d0e565b508091505092915050565b6000818310612d7357612d6e8284612d86565b612d7e565b612d7d8383612d86565b5b905092915050565b600082600052816020526040600020905092915050565b828054828255906000526020600020908101928215612dd9579160200282015b82811115612dd8578235825591602001919060010190612dbd565b5b509050612de69190612e39565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612e52576000816000905550600101612e3a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e9f81612e6a565b8114612eaa57600080fd5b50565b600081359050612ebc81612e96565b92915050565b600060208284031215612ed857612ed7612e60565b5b6000612ee684828501612ead565b91505092915050565b60008115159050919050565b612f0481612eef565b82525050565b6000602082019050612f1f6000830184612efb565b92915050565b6000819050919050565b612f3881612f25565b82525050565b6000602082019050612f536000830184612f2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f93578082015181840152602081019050612f78565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fbb82612f59565b612fc58185612f64565b9350612fd5818560208601612f75565b612fde81612f9f565b840191505092915050565b600060208201905081810360008301526130038184612fb0565b905092915050565b61301481612f25565b811461301f57600080fd5b50565b6000813590506130318161300b565b92915050565b60006020828403121561304d5761304c612e60565b5b600061305b84828501613022565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061308f82613064565b9050919050565b61309f81613084565b82525050565b60006020820190506130ba6000830184613096565b92915050565b6130c981613084565b81146130d457600080fd5b50565b6000813590506130e6816130c0565b92915050565b6000806040838503121561310357613102612e60565b5b6000613111858286016130d7565b925050602061312285828601613022565b9150509250929050565b60008060006060848603121561314557613144612e60565b5b6000613153868287016130d7565b9350506020613164868287016130d7565b925050604061317586828701613022565b9150509250925092565b60006020828403121561319557613194612e60565b5b60006131a3848285016130d7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126131d1576131d06131ac565b5b8235905067ffffffffffffffff8111156131ee576131ed6131b1565b5b60208301915083600182028301111561320a576132096131b6565b5b9250929050565b6000806020838503121561322857613227612e60565b5b600083013567ffffffffffffffff81111561324657613245612e65565b5b613252858286016131bb565b92509250509250929050565b6000819050919050565b6132718161325e565b82525050565b600060208201905061328c6000830184613268565b92915050565b600080604083850312156132a9576132a8612e60565b5b60006132b785828601613022565b92505060206132c885828601613022565b9150509250929050565b60008083601f8401126132e8576132e76131ac565b5b8235905067ffffffffffffffff811115613305576133046131b1565b5b602083019150836020820283011115613321576133206131b6565b5b9250929050565b60008060006040848603121561334157613340612e60565b5b600061334f868287016130d7565b935050602084013567ffffffffffffffff8111156133705761336f612e65565b5b61337c868287016132d2565b92509250509250925092565b6133918161325e565b811461339c57600080fd5b50565b6000813590506133ae81613388565b92915050565b6000602082840312156133ca576133c9612e60565b5b60006133d88482850161339f565b91505092915050565b6133ea81612eef565b81146133f557600080fd5b50565b600081359050613407816133e1565b92915050565b6000806040838503121561342457613423612e60565b5b6000613432858286016130d7565b9250506020613443858286016133f8565b9150509250929050565b60008083601f840112613463576134626131ac565b5b8235905067ffffffffffffffff8111156134805761347f6131b1565b5b60208301915083602082028301111561349c5761349b6131b6565b5b9250929050565b6000806000806000606086880312156134bf576134be612e60565b5b60006134cd88828901613022565b955050602086013567ffffffffffffffff8111156134ee576134ed612e65565b5b6134fa8882890161344d565b9450945050604086013567ffffffffffffffff81111561351d5761351c612e65565b5b613529888289016132d2565b92509250509295509295909350565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61356d81612f25565b82525050565b600061357f8383613564565b60208301905092915050565b6000602082019050919050565b60006135a382613538565b6135ad8185613543565b93506135b883613554565b8060005b838110156135e95781516135d08882613573565b97506135db8361358b565b9250506001810190506135bc565b5085935050505092915050565b600060208201905081810360008301526136108184613598565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61365582612f9f565b810181811067ffffffffffffffff821117156136745761367361361d565b5b80604052505050565b6000613687612e56565b9050613693828261364c565b919050565b600067ffffffffffffffff8211156136b3576136b261361d565b5b6136bc82612f9f565b9050602081019050919050565b82818337600083830152505050565b60006136eb6136e684613698565b61367d565b90508281526020810184848401111561370757613706613618565b5b6137128482856136c9565b509392505050565b600082601f83011261372f5761372e6131ac565b5b813561373f8482602086016136d8565b91505092915050565b6000806000806080858703121561376257613761612e60565b5b6000613770878288016130d7565b9450506020613781878288016130d7565b935050604061379287828801613022565b925050606085013567ffffffffffffffff8111156137b3576137b2612e65565b5b6137bf8782880161371a565b91505092959194509250565b6000602082840312156137e1576137e0612e60565b5b60006137ef848285016133f8565b91505092915050565b6000806040838503121561380f5761380e612e60565b5b600061381d858286016130d7565b925050602061382e858286016130d7565b9150509250929050565b61384181613084565b82525050565b600067ffffffffffffffff82169050919050565b61386481613847565b82525050565b61387381612eef565b82525050565b600062ffffff82169050919050565b61389181613879565b82525050565b6080820160008201516138ad6000850182613838565b5060208201516138c0602085018261385b565b5060408201516138d3604085018261386a565b5060608201516138e66060850182613888565b50505050565b60006080820190506139016000830184613897565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061394e57607f821691505b60208210810361396157613960613907565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a182612f25565b91506139ac83612f25565b92508282026139ba81612f25565b915082820484148315176139d1576139d0613967565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a1282612f25565b9150613a1d83612f25565b925082613a2d57613a2c6139d8565b5b828204905092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613aa57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a68565b613aaf8683613a68565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613aec613ae7613ae284612f25565b613ac7565b612f25565b9050919050565b6000819050919050565b613b0683613ad1565b613b1a613b1282613af3565b848454613a75565b825550505050565b600090565b613b2f613b22565b613b3a818484613afd565b505050565b5b81811015613b5e57613b53600082613b27565b600181019050613b40565b5050565b601f821115613ba357613b7481613a43565b613b7d84613a58565b81016020851015613b8c578190505b613ba0613b9885613a58565b830182613b3f565b50505b505050565b600082821c905092915050565b6000613bc660001984600802613ba8565b1980831691505092915050565b6000613bdf8383613bb5565b9150826002028217905092915050565b613bf98383613a38565b67ffffffffffffffff811115613c1257613c1161361d565b5b613c1c8254613936565b613c27828285613b62565b6000601f831160018114613c565760008415613c44578287013590505b613c4e8582613bd3565b865550613cb6565b601f198416613c6486613a43565b60005b82811015613c8c57848901358255600182019150602085019450602081019050613c67565b86831015613ca95784890135613ca5601f891682613bb5565b8355505b6001600288020188555050505b50505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613cf5601e83612f64565b9150613d0082613cbf565b602082019050919050565b60006020820190508181036000830152613d2481613ce8565b9050919050565b7f5468652073686f7020697320636c6f7365642e00000000000000000000000000600082015250565b6000613d61601383612f64565b9150613d6c82613d2b565b602082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f496e6772656469656e7420636f756e7420646f6573206e6f74206d617463682060008201527f73616e646f732e00000000000000000000000000000000000000000000000000602082015250565b6000613df3602783612f64565b9150613dfe82613d97565b604082019050919050565b60006020820190508181036000830152613e2281613de6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b60008083356001602003843603038112613e8457613e83613e58565b5b80840192508235915067ffffffffffffffff821115613ea657613ea5613e5d565b5b602083019250602082023603831315613ec257613ec1613e62565b5b509250929050565b7f4e6f7420656e6f75676820696e6772656469656e74732e000000000000000000600082015250565b6000613f00601783612f64565b9150613f0b82613eca565b602082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b7f546f6f206d616e7920696e6772656469656e74732e0000000000000000000000600082015250565b6000613f6c601583612f64565b9150613f7782613f36565b602082019050919050565b60006020820190508181036000830152613f9b81613f5f565b9050919050565b7f596f75206272656164206f726465722069732077656972642e00000000000000600082015250565b6000613fd8601983612f64565b9150613fe382613fa2565b602082019050919050565b6000602082019050818103600083015261400781613fcb565b9050919050565b7f596f75206e656564206f6e65206261636b67726f756e642e0000000000000000600082015250565b6000614044601883612f64565b915061404f8261400e565b602082019050919050565b6000602082019050818103600083015261407381614037565b9050919050565b7f546f6f206d616e79206465636f726174696f6e732e0000000000000000000000600082015250565b60006140b0601583612f64565b91506140bb8261407a565b602082019050919050565b600060208201905081810360008301526140df816140a3565b9050919050565b60006140f182612f25565b91506140fc83612f25565b925082820390508181111561411457614113613967565b5b92915050565b600061412582612f25565b915061413083612f25565b925082820190508082111561414857614147613967565b5b92915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000614184601383612f64565b915061418f8261414e565b602082019050919050565b600060208201905081810360008301526141b381614177565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b60006141f0601483612f64565b91506141fb826141ba565b602082019050919050565b6000602082019050818103600083015261421f816141e3565b9050919050565b600081905092915050565b600061423c82612f59565b6142468185614226565b9350614256818560208601612f75565b80840191505092915050565b600061426e8285614231565b915061427a8284614231565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e2602683612f64565b91506142ed82614286565b604082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061434e602083612f64565b915061435982614318565b602082019050919050565b6000602082019050818103600083015261437d81614341565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143ba601f83612f64565b91506143c582614384565b602082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b60008160601b9050919050565b6000614408826143f0565b9050919050565b600061441a826143fd565b9050919050565b61443261442d82613084565b61440f565b82525050565b60006144448284614421565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061447a82614453565b614484818561445e565b9350614494818560208601612f75565b61449d81612f9f565b840191505092915050565b60006080820190506144bd6000830187613096565b6144ca6020830186613096565b6144d76040830185612f2f565b81810360608301526144e9818461446f565b905095945050505050565b60008151905061450381612e96565b92915050565b60006020828403121561451f5761451e612e60565b5b600061452d848285016144f4565b91505092915050565b600061454182612f25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361457357614572613967565b5b60018201905091905056fea2646970667358221220f35bac15d76f95b4dc3cfe0340bb63c35ce368c2a2085164043c60598dc6846a64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000002e40000000000000000000000000000000000000000000000000000000000000016f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000354a6ba7a1800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca7000000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf52634000000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca70000000000000000000000000000000000000000000000000000001550f7dca7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000001c6bf52634000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e000000000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002aa1efb94e000000000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000002aa1efb94e0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000cf000000000000000000000000000000000000000000000000000000000000014600000000000000000000000000000000000000000000000000000000000001470000000000000000000000000000000000000000000000000000000000000148000000000000000000000000000000000000000000000000000000000000016d000000000000000000000000000000000000000000000000000000000000016e000000000000000000000000000000000000000000000000000000000000016f
-----Decoded View---------------
Arg [0] : prices (uint256[]): 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15000000000000000,0,20000000000000000,20000000000000000,15000000000000000,0,0,6000000000000000,6000000000000000,0,0,0,0,0,8000000000000000,6000000000000000,12000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,12000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,8000000000000000,6000000000000000,6000000000000000,10000000000000000,10000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,8000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,8000000000000000,6000000000000000,6000000000000000,12000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,12000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,8000000000000000,8000000000000000,10000000000000000,8000000000000000,6000000000000000,8000000000000000,8000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,15000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,8000000000000000,6000000000000000,8000000000000000,8000000000000000,10000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,8000000000000000,1000000000000000,8000000000000000,8000000000000000,6000000000000000,8000000000000000,8000000000000000,6000000000000000,6000000000000000,8000000000000000,6000000000000000,10000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,8000000000000000,6000000000000000,6000000000000000,10000000000000000,10000000000000000,8000000000000000,8000000000000000,10000000000000000,8000000000000000,10000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,6000000000000000,0,0,8000000000000000,8000000000000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000000000000000,0,0,0,0,0,0,0,0,0,10000000000000000,10000000000000000,10000000000000000,12000000000000000,10000000000000000,10000000000000000,10000000000000000,10000000000000000,10000000000000000,10000000000000000,12000000000000000,12000000000000000,12000000000000000,10000000000000000,12000000000000000,20000000000000000,12000000000000000,10000000000000000,10000000000000000,12000000000000000,10000000000000000,0,0,0,0,0,0,0,0,10000000000000000,10000000000000000,10000000000000000,0,0,0,0,0,0,0,0,0,10000000000000000,10000000000000000,10000000000000000,12000000000000000,10000000000000000,10000000000000000,10000000000000000,12000000000000000,12000000000000000,12000000000000000,12000000000000000,12000000000000000,12000000000000000,20000000000000000,12000000000000000,10000000000000000,10000000000000000,12000000000000000,10000000000000000
Arg [1] : extras (uint256[]): 38,118,144,196,207,326,327,328,365,366,367
-----Encoded View---------------
382 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002e40
Arg [2] : 000000000000000000000000000000000000000000000000000000000000016f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [39] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [40] : 00000000000000000000000000000000000000000000000000354a6ba7a18000
Arg [41] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [42] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [43] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [44] : 00000000000000000000000000000000000000000000000000354a6ba7a18000
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [46] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [47] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [48] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [49] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [50] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [51] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [52] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [53] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [54] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [55] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [56] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [57] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [58] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [59] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [60] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [61] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [62] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [63] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [64] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [65] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [66] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [67] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [68] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [69] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [70] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [71] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [72] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [73] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [74] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [75] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [76] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [77] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [78] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [79] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [80] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [81] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [82] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [83] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [84] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [85] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [86] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [87] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [88] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [89] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [90] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [91] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [92] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [93] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [94] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [95] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [96] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [97] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [98] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [99] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [100] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [101] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [102] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [103] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [104] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [105] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [106] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [107] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [108] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [109] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [110] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [111] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [112] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [113] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [114] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [115] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [116] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [117] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [118] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [119] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [120] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [121] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [122] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [123] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [124] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [125] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [126] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [127] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [128] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [129] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [130] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [131] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [132] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [133] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [134] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [135] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [136] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [137] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [138] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [139] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [140] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [141] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [142] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [143] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [144] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [145] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [146] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [147] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [148] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [149] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [150] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [151] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [152] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [153] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [154] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [155] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [156] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [157] : 00000000000000000000000000000000000000000000000000354a6ba7a18000
Arg [158] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [159] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [160] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [161] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [162] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [163] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [164] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [165] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [166] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [167] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [168] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [169] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [170] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [171] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [172] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [173] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [174] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [175] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [176] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [177] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [178] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [179] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [180] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [181] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [182] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [183] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [184] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [185] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [186] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [187] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [188] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [189] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [190] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [191] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [192] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [193] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [194] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [195] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [196] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [197] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [198] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [199] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [200] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [201] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [202] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [203] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [204] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [205] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [206] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [207] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [208] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [209] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [210] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [211] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [212] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [213] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [214] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [215] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [216] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [217] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [218] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [219] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [220] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [221] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [222] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [223] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [224] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [225] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [226] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [227] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [228] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [229] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [230] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [231] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [232] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [233] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [234] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [235] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [236] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [237] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [238] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [239] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [240] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [241] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [242] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [243] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [244] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [245] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [246] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [247] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [248] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [249] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [250] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [251] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [252] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [253] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [254] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [255] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [256] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [257] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [258] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [259] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [260] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [261] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [262] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [263] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [264] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [265] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [266] : 000000000000000000000000000000000000000000000000001550f7dca70000
Arg [267] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [268] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [269] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [270] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [271] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [272] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [273] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [274] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [275] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [276] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [277] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [278] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [279] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [280] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [281] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [282] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [283] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [284] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [285] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [286] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [287] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [288] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [289] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [290] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [291] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [292] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [293] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [294] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [295] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [296] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [297] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [298] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [299] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [300] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [301] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [302] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [303] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [304] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [305] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [306] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [307] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [308] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [309] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [310] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [311] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [312] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [313] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [314] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [315] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [316] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [317] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [318] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [319] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [320] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [321] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [322] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [323] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [324] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [325] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [326] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [327] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [328] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [329] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [330] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [331] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [332] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [333] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [334] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [335] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [336] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [337] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [338] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [339] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [340] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [341] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [342] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [343] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [344] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [345] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [346] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [347] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [348] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [349] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [350] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [351] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [352] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [353] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [354] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [355] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [356] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [357] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [358] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [359] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [360] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [361] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [362] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [363] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [364] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [365] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [366] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [367] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [368] : 000000000000000000000000000000000000000000000000002aa1efb94e0000
Arg [369] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [370] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [371] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [372] : 0000000000000000000000000000000000000000000000000000000000000076
Arg [373] : 0000000000000000000000000000000000000000000000000000000000000090
Arg [374] : 00000000000000000000000000000000000000000000000000000000000000c4
Arg [375] : 00000000000000000000000000000000000000000000000000000000000000cf
Arg [376] : 0000000000000000000000000000000000000000000000000000000000000146
Arg [377] : 0000000000000000000000000000000000000000000000000000000000000147
Arg [378] : 0000000000000000000000000000000000000000000000000000000000000148
Arg [379] : 000000000000000000000000000000000000000000000000000000000000016d
Arg [380] : 000000000000000000000000000000000000000000000000000000000000016e
Arg [381] : 000000000000000000000000000000000000000000000000000000000000016f
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.