ERC-721
Overview
Max Total Supply
736 XSUB
Holders
349
Market
Volume (24H)
N/A
Min Price (24H)
$46.37 @ 0.014000 ETH
Max Price (24H)
$46.37 @ 0.014000 ETH
Other Info
Token Contract
Balance
1 XSUBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XSublimatio
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 100000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import { ERC721, ERC721Enumerable, Strings } from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import { IXSublimatio } from "./interfaces/IXSublimatio.sol"; contract XSublimatio is IXSublimatio, ERC721Enumerable { using Strings for uint256; // Contains first 21 molecule availabilities (12 bits each). uint256 internal COMPACT_STATE_1 = uint256(60087470205620319587750252891185586116542855063423969629534558109603704138); // Contains next 42 molecule availabilities (6 bits each). uint256 internal COMPACT_STATE_2 = uint256(114873104402099400223353432978706708436353982610412083425164130989245597730); // Contains (right to left) 19 drug availabilities (8 bits each), total drugs available (11 bits), total molecules available (13 bits), and nonce (remaining 80 bits). uint256 internal COMPACT_STATE_3 = uint256(67212165445492353831982701316699907697777805738906362); uint256 public immutable LAUNCH_TIMESTAMP; address public owner; address public pendingOwner; address public proceedsDestination; bytes32 public assetGeneratorHash; string public baseURI; uint256 public pricePerTokenMint; mapping(address => bool) internal _canClaimFreeWater; constructor ( string memory baseURI_, address owner_, uint256 pricePerTokenMint_, uint256 launchTimestamp_ ) ERC721("XSublimatio", "XSUB") { baseURI = baseURI_; owner = owner_; pricePerTokenMint = pricePerTokenMint_; LAUNCH_TIMESTAMP = launchTimestamp_; } modifier onlyAfterLaunch() { require(block.timestamp >= LAUNCH_TIMESTAMP, "NOT_LAUNCHED_YET"); _; } modifier onlyBeforeLaunch() { require(block.timestamp < LAUNCH_TIMESTAMP, "ALREADY_LAUNCHED"); _; } modifier onlyOwner() { require(owner == msg.sender, "UNAUTHORIZED"); _; } /***********************/ /*** Admin Functions ***/ /***********************/ function acceptOwnership() external { require(pendingOwner == msg.sender, "UNAUTHORIZED"); emit OwnershipAccepted(owner, msg.sender); owner = msg.sender; pendingOwner = address(0); } function proposeOwnership(address newOwner_) external onlyOwner { emit OwnershipProposed(owner, pendingOwner = newOwner_); } function setAssetGeneratorHash(bytes32 assetGeneratorHash_) external onlyOwner { require(assetGeneratorHash == bytes32(0) || block.timestamp < LAUNCH_TIMESTAMP, "ALREADY_LAUNCHED"); emit AssetGeneratorHashSet(assetGeneratorHash = assetGeneratorHash_); } function setBaseURI(string calldata baseURI_) external onlyOwner { emit BaseURISet(baseURI = baseURI_); } function setPricePerTokenMint(uint256 pricePerTokenMint_) external onlyOwner onlyBeforeLaunch { emit PricePerTokenMintSet(pricePerTokenMint = pricePerTokenMint_); } function setProceedsDestination(address proceedsDestination_) external onlyOwner { require(proceedsDestination == address(0) || block.timestamp < LAUNCH_TIMESTAMP, "ALREADY_LAUNCHED"); emit ProceedsDestinationSet(proceedsDestination = proceedsDestination_); } function setPromotionAccounts(address[] memory accounts_) external onlyOwner onlyBeforeLaunch { for (uint256 i; i < accounts_.length;) { address account = accounts_[i]; _canClaimFreeWater[account] = true; emit PromotionAccountSet(account); unchecked { ++i; } } } function unsetPromotionAccounts(address[] memory accounts_) external onlyOwner onlyBeforeLaunch { for (uint256 i; i < accounts_.length;) { address account = accounts_[i]; _canClaimFreeWater[account] = false; emit PromotionAccountUnset(account); unchecked { ++i; } } } function withdrawProceeds() external { uint256 amount = address(this).balance; address destination = proceedsDestination; destination = destination == address(0) ? owner : destination; require(_transferEther(destination, amount), "ETHER_TRANSFER_FAILED"); emit ProceedsWithdrawn(destination, amount); } /**************************/ /*** External Functions ***/ /**************************/ function brew(uint256[] calldata molecules_, uint256 drugType_, address destination_) external onlyAfterLaunch returns (uint256 drug_) { // Check that drugType_ is valid. require(drugType_ < 19, "INVALID_DRUG_TYPE"); // Cache relevant compact state from storage. uint256 compactState3 = COMPACT_STATE_3; // Check that drug is available. require(_getDrugAvailability(compactState3, drugType_) != 0, "DRUG_NOT_AVAILABLE"); uint256 specialWater; unchecked { // The specific special water moleculeType for this drug is 44 more than the drugType. specialWater = drugType_ + 44; } // Fetch the recipe from the pure function. uint8[] memory recipe = getRecipeOfDrug(drugType_); uint256 index; // For each moleculeType defined by the recipe, check that the provided moleculeType at that index is as expected, or the special water. while (index < recipe.length) { uint256 molecule = molecules_[index]; // Check that the caller owns the token. require(ownerOf(molecule) == msg.sender, "NOT_OWNER"); // Extract molecule type from token id. uint256 moleculeType = molecule >> 93; // Check that the molecule type matches what the recipe calls for, or the molecule is the special water. require(moleculeType == specialWater || recipe[index] == moleculeType, "INVALID_MOLECULE"); unchecked { ++index; } } index = 0; address drugAsAddress = address(uint160(drug_ = _generateTokenId(drugType_ + 63, _generatePseudoRandomNumber(_getTokenNonce(compactState3))))); // Make the drug itself own all the molecules used. while (index < recipe.length) { uint256 molecule = molecules_[index]; // Transfer the molecule. _transfer(msg.sender, drugAsAddress, molecule); unchecked { ++index; } } // Put token type as the leftmost 8 bits in the token id and mint the drug NFT (drugType + 63). _mint(destination_, drug_); // Decrement it's availability, decrement the total amount of drugs available, and increment the drug nonce, and set storage. COMPACT_STATE_3 = _decrementDrugAvailability(compactState3, drugType_); } function claimWater(address destination_) external returns (uint256 molecule_) { // NOTE: no need for the onlyBeforeLaunch modifier since `canClaimFreeWater` already checks the timestamp require(canClaimFreeWater(msg.sender), "CANNOT_CLAIM"); _canClaimFreeWater[msg.sender] = false; ( COMPACT_STATE_1, COMPACT_STATE_2, COMPACT_STATE_3, molecule_ ) = _giveMolecule(COMPACT_STATE_1, COMPACT_STATE_2, COMPACT_STATE_3, 0, destination_); } function decompose(uint256 drug_) external { // NOTE: no need for onlyAfterLaunch modifier because drug cannot exist (be brewed) before launch, nor can water be burned before launch. // Check that the caller owns the token. require(ownerOf(drug_) == msg.sender, "NOT_OWNER"); uint256 drugType = (drug_ >> 93); // Check that the token is a drug. require(drugType >= 63 && drugType < 82, "NOT_DRUG"); unchecked { drugType -= 63; } address drugAsAddress = address(uint160(drug_)); uint256 moleculeCount = balanceOf(drugAsAddress); for (uint256 i = moleculeCount; i > 0;) { uint256 molecule = tokenOfOwnerByIndex(drugAsAddress, --i); if (i == 0) { // Burn the water (which should be the first token). _burn(molecule); continue; } // Transfer the molecule to the owner. _transfer(drugAsAddress, msg.sender, molecule); } // Increment the drugs' availability, increment the total amount of drugs available, and set storage. COMPACT_STATE_3 = _incrementDrugAvailability(COMPACT_STATE_3, drugType); // Burn the drug. _burn(drug_); } function giveWaters(address[] memory destinations_, uint256[] memory amounts_) external onlyOwner onlyBeforeLaunch { // Cache relevant compact states from storage. uint256 compactState1 = COMPACT_STATE_1; uint256 compactState2 = COMPACT_STATE_2; uint256 compactState3 = COMPACT_STATE_3; for (uint256 i; i < destinations_.length;) { for (uint256 j; j < amounts_[i];) { ( compactState1, compactState2, compactState3, ) = _giveMolecule(compactState1, compactState2, compactState3, 0, destinations_[i]); unchecked { ++j; } } unchecked { ++i; } } // Set relevant storage state fromm the cache ones. COMPACT_STATE_1 = compactState1; COMPACT_STATE_2 = compactState2; COMPACT_STATE_3 = compactState3; } function giveMolecules(address[] memory destinations_, uint256[] memory amounts_) external onlyOwner onlyBeforeLaunch { require(block.timestamp < LAUNCH_TIMESTAMP, "ALREADY_LAUNCHED"); // Cache relevant compact states from storage. uint256 compactState1 = COMPACT_STATE_1; uint256 compactState2 = COMPACT_STATE_2; uint256 compactState3 = COMPACT_STATE_3; // Get the number of molecules available from compactState3. uint256 availableMoleculeCount = _getMoleculesAvailable(compactState3); for (uint256 i; i < destinations_.length;) { for (uint256 j; j < amounts_[i];) { // Get a pseudo random number. uint256 randomNumber = _generatePseudoRandomNumber(_getTokenNonce(compactState3)); uint256 moleculeType; // Provide _drawMolecule with the 3 relevant cached compact states, and a random number between 0 and availableMoleculeCount - 1, inclusively. // The result is newly updated cached compact states. Also, availableMoleculeCount is pre-decremented so that each random number is within correct bounds. ( compactState1, compactState2, compactState3, moleculeType ) = _drawMolecule(compactState1, compactState2, compactState3, _limitTo(randomNumber, --availableMoleculeCount)); // Generate a token id from the moleculeType and randomNumber (saving it in the array of token IDs) and mint the molecule NFT. _mint(destinations_[i], _generateTokenId(moleculeType, randomNumber)); unchecked { ++j; } } unchecked { ++i; } } // Set relevant storage state fromm the cache ones. COMPACT_STATE_1 = compactState1; COMPACT_STATE_2 = compactState2; COMPACT_STATE_3 = compactState3; } function purchase(address destination_, uint256 quantity_, uint256 minQuantity_) external payable onlyAfterLaunch returns (uint256[] memory molecules_) { // Cache relevant compact states from storage. uint256 compactState1 = COMPACT_STATE_1; uint256 compactState2 = COMPACT_STATE_2; uint256 compactState3 = COMPACT_STATE_3; // Get the number of molecules available from compactState3 and determine how many molecules will be purchased in this call. uint256 availableMoleculeCount = _getMoleculesAvailable(compactState3); uint256 count = availableMoleculeCount >= quantity_ ? quantity_ : availableMoleculeCount; // Prevent a purchase fo 0 nfts, as well as a purchase of less nfts than the user expected. require(count != 0, "NO_MOLECULES_AVAILABLE"); require(count >= minQuantity_, "CANNOT_FULLFIL_REQUEST"); // Compute the price this purchase will cost, since it will be needed later, and count will be decremented in a while-loop. uint256 totalCost; unchecked { totalCost = pricePerTokenMint * count; } // Require that enough ether was provided, require(msg.value >= totalCost, "INCORRECT_VALUE"); if (msg.value > totalCost) { // If extra, require that it is successfully returned to the caller. unchecked { require(_transferEther(msg.sender, msg.value - totalCost), "TRANSFER_FAILED"); } } // Initialize the array of token IDs to a length of the nfts to be purchased. molecules_ = new uint256[](count); while (count > 0) { // Get a pseudo random number. uint256 randomNumber = _generatePseudoRandomNumber(_getTokenNonce(compactState3)); uint256 moleculeType; unchecked { // Provide _drawMolecule with the 3 relevant cached compact states, and a random number between 0 and availableMoleculeCount - 1, inclusively. // The result is newly updated cached compact states. Also, availableMoleculeCount is pre-decremented so that each random number is within correct bounds. ( compactState1, compactState2, compactState3, moleculeType ) = _drawMolecule(compactState1, compactState2, compactState3, _limitTo(randomNumber, --availableMoleculeCount)); // Generate a token id from the moleculeType and randomNumber (saving it in the array of token IDs) and mint the molecule NFT. _mint(destination_, molecules_[--count] = _generateTokenId(moleculeType, randomNumber)); } } // Set relevant storage state fromm the cache ones. COMPACT_STATE_1 = compactState1; COMPACT_STATE_2 = compactState2; COMPACT_STATE_3 = compactState3; } /***************/ /*** Getters ***/ /***************/ function availabilities() external view returns (uint256[63] memory moleculesAvailabilities_, uint256[19] memory drugAvailabilities_) { moleculesAvailabilities_ = moleculeAvailabilities(); drugAvailabilities_ = drugAvailabilities(); } function canClaimFreeWater(address account_) public view returns (bool canClaimFreeWater_) { return block.timestamp < LAUNCH_TIMESTAMP && _canClaimFreeWater[account_]; } function compactStates() external view returns (uint256 compactState1_, uint256 compactState2_, uint256 compactState3_) { return (COMPACT_STATE_1, COMPACT_STATE_2, COMPACT_STATE_3); } function contractURI() external view returns (string memory contractURI_) { return baseURI; } function drugAvailabilities() public view returns (uint256[19] memory availabilities_) { // Cache relevant compact states from storage. uint256 compactState3 = COMPACT_STATE_3; for (uint256 i; i < 19;) { availabilities_[i] = _getDrugAvailability(compactState3, i); unchecked { ++i; } } } function drugsAvailable() external view returns (uint256 drugsAvailable_) { drugsAvailable_ = _getDrugsAvailable(COMPACT_STATE_3); } function getAvailabilityOfDrug(uint256 drugType_) external view returns (uint256 availability_) { availability_ = _getDrugAvailability(COMPACT_STATE_3, drugType_); } function getAvailabilityOfMolecule(uint256 moleculeType_) external view returns (uint256 availability_) { availability_ = _getMoleculeAvailability(COMPACT_STATE_1, COMPACT_STATE_2, moleculeType_); } function getDrugContainingMolecule(uint256 molecule_) external view returns (uint256 drug_) { drug_ = uint256(uint160(ownerOf(molecule_))); } function getMoleculesWithinDrug(uint256 drug_) external view returns (uint256[] memory molecules_) { molecules_ = tokensOfOwner(address(uint160(drug_))); } function getRecipeOfDrug(uint256 drugType_) public pure returns (uint8[] memory recipe_) { if (drugType_ <= 7) { recipe_ = new uint8[](2); recipe_[1] = drugType_ == 0 ? 1 : // Alcohol (Isolated) drugType_ == 1 ? 33 : // Chloroquine (Isolated) drugType_ == 2 ? 8 : // Cocaine (Isolated) drugType_ == 3 ? 31 : // GHB (Isolated) drugType_ == 4 ? 15 : // Ketamine (Isolated) drugType_ == 5 ? 32 : // LSD (Isolated) drugType_ == 6 ? 2 : // Methamphetamine (Isolated) 14; // Morphine (Isolated) } else if (drugType_ == 16) { recipe_ = new uint8[](3); // Mate recipe_[1] = 3; recipe_[2] = 4; } else if (drugType_ == 11 || drugType_ == 12) { recipe_ = new uint8[](4); if (drugType_ == 11) { // Khat recipe_[1] = 5; recipe_[2] = 6; recipe_[3] = 7; } else { // Lactuca Virosa recipe_[1] = 19; recipe_[2] = 20; recipe_[3] = 21; } } else if (drugType_ == 14 || drugType_ == 15 || drugType_ == 17) { recipe_ = new uint8[](5); if (drugType_ == 14) { // Magic Truffle recipe_[1] = 25; recipe_[2] = 26; recipe_[3] = 27; recipe_[4] = 28; } else if (drugType_ == 15) { // Mandrake recipe_[1] = 16; recipe_[2] = 17; recipe_[3] = 18; recipe_[4] = 34; } else { // Opium recipe_[1] = 14; recipe_[2] = 22; recipe_[3] = 23; recipe_[4] = 24; } } else if (drugType_ == 9 || drugType_ == 10 || drugType_ == 18) { recipe_ = new uint8[](6); if (drugType_ == 9) { // Belladonna recipe_[1] = 16; recipe_[2] = 17; recipe_[3] = 18; recipe_[4] = 29; recipe_[5] = 30; } else if (drugType_ == 10) { // Cannabis recipe_[1] = 9; recipe_[2] = 10; recipe_[3] = 11; recipe_[4] = 12; recipe_[5] = 13; } else { // Salvia Divinorum recipe_[1] = 35; recipe_[2] = 36; recipe_[3] = 40; recipe_[4] = 41; recipe_[5] = 42; } } else if (drugType_ == 8) { recipe_ = new uint8[](7); // Ayahuasca recipe_[1] = 8; recipe_[2] = 37; recipe_[3] = 38; recipe_[4] = 39; recipe_[5] = 43; recipe_[6] = 44; } else if (drugType_ == 13) { recipe_ = new uint8[](9); // Love Elixir recipe_[1] = 9; recipe_[2] = 45; recipe_[3] = 46; recipe_[4] = 47; recipe_[5] = 48; recipe_[6] = 49; recipe_[7] = 50; recipe_[8] = 51; } else { revert("INVALID_RECIPE"); } // All recipes require Water, so recipe_[0] remains 0. } function moleculesAvailable() external view returns (uint256 moleculesAvailable_) { moleculesAvailable_ = _getMoleculesAvailable(COMPACT_STATE_3); } function moleculeAvailabilities() public view returns (uint256[63] memory availabilities_) { // Cache relevant compact states from storage. uint256 compactState1 = COMPACT_STATE_1; uint256 compactState2 = COMPACT_STATE_2; for (uint256 i; i < 63;) { availabilities_[i] = _getMoleculeAvailability(compactState1, compactState2, i); unchecked { ++i; } } } function tokensOfOwner(address owner_) public view returns (uint256[] memory tokenIds_) { uint256 balance = balanceOf(owner_); tokenIds_ = new uint256[](balance); for (uint256 i; i < balance;) { tokenIds_[i] = tokenOfOwnerByIndex(owner_, i); unchecked { ++i; } } } function tokenURI(uint256 tokenId_) public override view returns (string memory tokenURI_) { require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token"); string memory baseURICache = baseURI; tokenURI_ = bytes(baseURICache).length > 0 ? string(abi.encodePacked(baseURICache, "/", tokenId_.toString())) : ""; } /**************************/ /*** Internal Functions ***/ /**************************/ function _beforeTokenTransfer(address from_, address to_, uint256 tokenId_) internal override { // Can mint before launch, but transfers and burns can only happen after launch. require(from_ == address(0) || block.timestamp >= LAUNCH_TIMESTAMP, "NOT_LAUNCHED_YET"); super._beforeTokenTransfer(from_, to_, tokenId_); } function _clearBits(uint256 input_, uint256 mask_, uint256 shift_) internal pure returns (uint256 output_) { // Clear out bits in input with mask. output_ = (input_ & ~(mask_ << shift_)); } function _constrainBits(uint256 input_, uint256 mask_, uint256 shift_, uint256 max_) internal pure returns (uint256 output_) { // Clear out bits in input with mask, and replace them with the removed bits constrained to some max. output_ = _clearBits(input_, mask_, shift_) | ((((input_ >> shift_) & mask_) % max_) << shift_); } function _decrementDrugAvailability(uint256 compactState3_, uint256 drugType_) internal pure returns (uint256 newCompactState3_) { unchecked { // Increment the token nonce, which is located left of 19 8-bit individual drug availabilities, an 11-bit total drug availability, and a 13-bit total molecule availability. // Decrement the total drug availability, which is located left of 19 8-bit individual drug availabilities. // Decrement the corresponding availability of a specific drug. // Clearer: newCompactState3_ = compactState4_ // + (1 << (19 * 8 + 11 + 13)) // - (1 << (19 * 8)) // - (1 << (drugType_ * 8)); newCompactState3_ = compactState3_ + 95780965595127282823557164963750446178190649605488640 - (1 << (drugType_ * 8)); } } function _decrementMoleculeAvailability( uint256 compactState1_, uint256 compactState2_, uint256 compactState3_, uint256 moleculeType_ ) internal pure returns (uint256 newCompactState1_, uint256 newCompactState2_, uint256 newCompactState3_) { unchecked { // Increment the token nonce, which is located left of 19 8-bit individual drug availabilities, an 11-bit total drug availability, and a 13-bit total molecule availability. // Decrement the total molecule availability, which is located left of 19 8-bit individual drug availabilities and an 11-bit total drug availability. // Clearer: compactState3_ = compactState3_ // + (1 << (19 * 8 + 11 + 13)) // - (1 << (19 * 8 + 11)); compactState3_ = compactState3_ + 95769279291019406424051059718232593712013947676131328; // Decrement the corresponding availability of a specific molecule, in a compact state given the molecule type. if (moleculeType_ < 21) return (compactState1_ - (1 << (moleculeType_ * 12)), compactState2_, compactState3_); return (compactState1_, compactState2_ - (1 << ((moleculeType_ - 21) * 6)), compactState3_); } } function _drawMolecule( uint256 compactState1_, uint256 compactState2_, uint256 compactState3_, uint256 randomNumber_ ) internal pure returns (uint256 newCompactState1_, uint256 newCompactState2_, uint256 newCompactState3_, uint256 moleculeType_) { uint256 offset; while (moleculeType_ < 63) { unchecked { // Increment the offset by the availability of the molecule defined by moleculeType, and break if randomNumber is less than it. if (randomNumber_ < (offset += _getMoleculeAvailability(compactState1_, compactState2_, moleculeType_))) break; // If not (i.e. randomNumber does not corresponding to picking moleculeType), increment the moleculeType and try again. ++moleculeType_; } } // Decrement the availability of this molecule, decrement the total amount of available molecules, and increment some molecule nonce. // Give this pure function the relevant cached compact states and get back updated compact states. ( newCompactState1_, newCompactState2_, newCompactState3_ ) = _decrementMoleculeAvailability(compactState1_, compactState2_, compactState3_, moleculeType_); } function _generatePseudoRandomNumber(uint256 nonce_) internal view returns (uint256 pseudoRandomNumber_) { unchecked { pseudoRandomNumber_ = uint256(keccak256(abi.encodePacked(blockhash(block.number - 1), msg.sender, nonce_, gasleft()))); } } function _generateTokenId(uint256 type_, uint256 pseudoRandomNumber_) internal pure returns (uint256 tokenId_) { // In right-most 100 bits, first 7 bits are the type and last 93 bits are from the pseudo random number. tokenId_ = (type_ << 93) | (pseudoRandomNumber_ >> 163); // From right to left: // - 32 bits are to be used as an unsigned 32-bit (or signed 32-bit) seed. // - 16 bits are to be used as an unsigned 16-bit for brt. // - 16 bits are to be used as an unsigned 16-bit for sat. // - 16 bits are to be used as an unsigned 16-bit for hue. if (type_ > 62) { tokenId_ = _clearBits(tokenId_, 1, 32 + 16 + 16 + 16); tokenId_ = _clearBits(tokenId_, 3, 32 + 16 + 16 + 16 + 1); } else { // - 1 bit is to be used for 2 lighting types. tokenId_ = _constrainBits(tokenId_, 1, 32 + 16 + 16 + 16, 2); // - 2 bits are to be used for 4 molecule integrity types. tokenId_ = _constrainBits(tokenId_, 3, 32 + 16 + 16 + 16 + 1, 4); } // - 2 bits are to be used for 3 deformation types. tokenId_ = _constrainBits(tokenId_, 3, 32 + 16 + 16 + 16 + 1 + 2, 3); // - 1 bit is to be used for 2 color shift types. tokenId_ = _constrainBits(tokenId_, 1, 32 + 16 + 16 + 16 + 1 + 2 + 2, 2); // - 2 bits are to be used for 3 stripe amount types. tokenId_ = _constrainBits(tokenId_, 3, 32 + 16 + 16 + 16 + 1 + 2 + 2 + 1, 3); // - 2 bits are to be used for 3 blob types. tokenId_ = _constrainBits(tokenId_, 3, 32 + 16 + 16 + 16 + 1 + 2 + 2 + 1 + 2, 3); // - 3 bits are to be used for 6 palette types. tokenId_ = _constrainBits(tokenId_, 7, 32 + 16 + 16 + 16 + 1 + 2 + 2 + 1 + 2 + 2, 6); } function _getDrugAvailability(uint256 compactState3_, uint256 drugType_) internal pure returns (uint256 availability_) { unchecked { availability_ = (compactState3_ >> (drugType_ * 8)) & 255; } } function _getDrugsAvailable(uint256 compactState3_) internal pure returns (uint256 drugsAvailable_) { // Shift out 19 8-bit values (19 drug availabilities) from the right of the compact state, and mask as 11 bits. drugsAvailable_ = (compactState3_ >> 152) & 2047; } function _getMoleculeAvailability( uint256 compactState1_, uint256 compactState2_, uint256 moleculeType_ ) internal pure returns (uint256 availability_) { unchecked { if (moleculeType_ < 21) return (compactState1_ >> (moleculeType_ * 12)) & 4095; return (compactState2_ >> ((moleculeType_ - 21) * 6)) & 63; } } function _getMoleculesAvailable(uint256 compactState3_) internal pure returns (uint256 moleculesAvailable_) { // Shift out 19 8-bit values (19 drug availabilities) and an 11-bit value (total drugs available), and mask as 13 bits. moleculesAvailable_ = (compactState3_ >> 163) & 8191; } function _getTokenNonce(uint256 compactState3_) internal pure returns (uint256 moleculeNonce_) { // Shift out 19 8-bit values (19 drug availabilities), an 11-bit value (total drugs available), and a 13-bit value (total molecules available). moleculeNonce_ = compactState3_ >> 176; } function _giveMolecule( uint256 compactState1_, uint256 compactState2_, uint256 compactState3_, uint256 moleculeType_, address destination_ ) internal returns (uint256 newCompactState1_, uint256 newCompactState2_, uint256 newCompactState3_, uint256 molecule_) { require(_getMoleculeAvailability(compactState1_, compactState2_, moleculeType_) > 0, "NO_AVAILABILITY"); // Get a pseudo random number. uint256 randomNumber = _generatePseudoRandomNumber(_getTokenNonce(compactState3_)); // Decrement the availability of the molecule, decrement the total amount of available molecules, and increment some molecule nonce. // Give this pure function the relevant cached compact states and get back updated compact states. // Set relevant storage state fromm the cache ones. ( newCompactState1_, newCompactState2_, newCompactState3_ ) = _decrementMoleculeAvailability(compactState1_, compactState2_, compactState3_, moleculeType_); // Generate a token id from the moleculeType and randomNumber (saving it in the array of token IDs) and mint the molecule NFT. _mint(destination_, molecule_ = _generateTokenId(moleculeType_, randomNumber)); } function _incrementDrugAvailability(uint256 compactState3_, uint256 drugType_) internal pure returns (uint256 newCompactState3_) { unchecked { // Increment the total drug availability, which is located left of 19 8-bit individual drug availabilities. // Increment the corresponding availability of a specific drug. // Clearer: newCompactState3_ = compactState3_ // + (1 << (19 * 8)) // + (1 << (drugType_ * 8)); newCompactState3_ = compactState3_ + 5708990770823839524233143877797980545530986496 + (1 << (drugType_ * 8)); } } function _limitTo(uint256 input_, uint256 max_) internal pure returns (uint256 output_) { output_ = 0 == max_ ? 0 : input_ % (max_ + 1); } function _transferEther(address destination_, uint256 amount_) internal returns (bool success_) { ( success_, ) = destination_.call{ value: amount_ }(""); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import { IERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; interface IXSublimatio is IERC721Enumerable { /// @notice Emitted when the base URI is set (or re-set). event AirdropSet(address indexed account); /// @notice Emitted when the hash of the asset generator is set. event AssetGeneratorHashSet(bytes32 indexed assetGeneratorHash); /// @notice Emitted when the base URI is set (or re-set). event BaseURISet(string baseURI); /// @notice Emitted when an account has decomposed of their drugs into its molecules. event DrugDecomposed(uint256 indexed drug, uint256[] molecules); /// @notice Emitted when an account has accepted ownership. event OwnershipAccepted(address indexed previousOwner, address indexed owner); /// @notice Emitted when owner proposed an account that can accept ownership. event OwnershipProposed(address indexed owner, address indexed pendingOwner); /// @notice Emitted when the price per token mint has been decreased. event PricePerTokenMintSet(uint256 price); /// @notice Emitted when proceeds have been withdrawn to proceeds destination. event ProceedsWithdrawn(address indexed destination, uint256 amount); /// @notice Emitted when an account is given the right to claim a free water molecule as a promotion. event PromotionAccountSet(address indexed account); /// @notice Emitted when an account is loses the right to claim a free water molecule as a promotion. event PromotionAccountUnset(address indexed account); /// @notice Emitted when an account is set as the destination where proceeds will be withdrawn to. event ProceedsDestinationSet(address indexed account); /*************/ /*** State ***/ /*************/ function LAUNCH_TIMESTAMP() external returns (uint256 launchTimestamp_); function assetGeneratorHash() external returns (bytes32 assetGeneratorHash_); function baseURI() external returns (string memory baseURI_); function canClaimFreeWater(address account_) external returns (bool canClaimFreeWater_); function owner() external returns (address owner_); function pendingOwner() external returns (address pendingOwner_); function proceedsDestination() external returns (address proceedsDestination_); function pricePerTokenMint() external returns (uint256 pricePerTokenMint_); /***********************/ /*** Admin Functions ***/ /***********************/ function acceptOwnership() external; function proposeOwnership(address newOwner_) external; function setAssetGeneratorHash(bytes32 assetGeneratorHash_) external; function setBaseURI(string calldata baseURI_) external; function setPricePerTokenMint(uint256 pricePerTokenMint_) external; function setProceedsDestination(address proceedsDestination_) external; function setPromotionAccounts(address[] memory accounts_) external; function unsetPromotionAccounts(address[] memory accounts_) external; function withdrawProceeds() external; /**************************/ /*** External Functions ***/ /**************************/ function brew(uint256[] calldata molecules_, uint256 drugType_, address destination_) external returns (uint256 drug_); function claimWater(address destination_) external returns (uint256 molecule_); function decompose(uint256 drug_) external; function giveWaters(address[] memory destinations_, uint256[] memory amounts_) external; function giveMolecules(address[] memory destinations_, uint256[] memory amounts_) external; function purchase(address destination_, uint256 quantity_, uint256 minQuantity_) external payable returns (uint256[] memory molecules_); /***************/ /*** Getters ***/ /***************/ function availabilities() external view returns (uint256[63] memory moleculesAvailabilities_, uint256[19] memory drugAvailabilities_); function compactStates() external view returns (uint256 compactState1_, uint256 compactState2_, uint256 compactState3_); function contractURI() external view returns (string memory contractURI_); function drugAvailabilities() external view returns (uint256[19] memory availabilities_); function drugsAvailable() external view returns (uint256 drugsAvailable_); function getAvailabilityOfDrug(uint256 drugType_) external view returns (uint256 availability_); function getAvailabilityOfMolecule(uint256 moleculeType_) external view returns (uint256 availability_); function getDrugContainingMolecule(uint256 molecule_) external view returns (uint256 drug_); function getMoleculesWithinDrug(uint256 drug_) external view returns (uint256[] memory molecules_); function getRecipeOfDrug(uint256 drugType_) external pure returns (uint8[] memory recipe_); function moleculesAvailable() external view returns (uint256 moleculesAvailable_); function moleculeAvailabilities() external view returns (uint256[63] memory availabilities_); function tokensOfOwner(address owner_) external view returns (uint256[] memory tokenIds_); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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 (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`. * * 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 calldata data ) external; /** * @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 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// 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.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 100000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"uint256","name":"pricePerTokenMint_","type":"uint256"},{"internalType":"uint256","name":"launchTimestamp_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AirdropSet","type":"event"},{"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":"bytes32","name":"assetGeneratorHash","type":"bytes32"}],"name":"AssetGeneratorHashSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"drug","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"molecules","type":"uint256[]"}],"name":"DrugDecomposed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"OwnershipAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipProposed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"PricePerTokenMintSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ProceedsDestinationSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ProceedsWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PromotionAccountSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PromotionAccountUnset","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":"LAUNCH_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"assetGeneratorHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availabilities","outputs":[{"internalType":"uint256[63]","name":"moleculesAvailabilities_","type":"uint256[63]"},{"internalType":"uint256[19]","name":"drugAvailabilities_","type":"uint256[19]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"molecules_","type":"uint256[]"},{"internalType":"uint256","name":"drugType_","type":"uint256"},{"internalType":"address","name":"destination_","type":"address"}],"name":"brew","outputs":[{"internalType":"uint256","name":"drug_","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"canClaimFreeWater","outputs":[{"internalType":"bool","name":"canClaimFreeWater_","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"destination_","type":"address"}],"name":"claimWater","outputs":[{"internalType":"uint256","name":"molecule_","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compactStates","outputs":[{"internalType":"uint256","name":"compactState1_","type":"uint256"},{"internalType":"uint256","name":"compactState2_","type":"uint256"},{"internalType":"uint256","name":"compactState3_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"drug_","type":"uint256"}],"name":"decompose","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drugAvailabilities","outputs":[{"internalType":"uint256[19]","name":"availabilities_","type":"uint256[19]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drugsAvailable","outputs":[{"internalType":"uint256","name":"drugsAvailable_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"drugType_","type":"uint256"}],"name":"getAvailabilityOfDrug","outputs":[{"internalType":"uint256","name":"availability_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"moleculeType_","type":"uint256"}],"name":"getAvailabilityOfMolecule","outputs":[{"internalType":"uint256","name":"availability_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"molecule_","type":"uint256"}],"name":"getDrugContainingMolecule","outputs":[{"internalType":"uint256","name":"drug_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"drug_","type":"uint256"}],"name":"getMoleculesWithinDrug","outputs":[{"internalType":"uint256[]","name":"molecules_","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"drugType_","type":"uint256"}],"name":"getRecipeOfDrug","outputs":[{"internalType":"uint8[]","name":"recipe_","type":"uint8[]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"destinations_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"giveMolecules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"destinations_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"giveWaters","outputs":[],"stateMutability":"nonpayable","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":"moleculeAvailabilities","outputs":[{"internalType":"uint256[63]","name":"availabilities_","type":"uint256[63]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moleculesAvailable","outputs":[{"internalType":"uint256","name":"moleculesAvailable_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerTokenMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proceedsDestination","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner_","type":"address"}],"name":"proposeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination_","type":"address"},{"internalType":"uint256","name":"quantity_","type":"uint256"},{"internalType":"uint256","name":"minQuantity_","type":"uint256"}],"name":"purchase","outputs":[{"internalType":"uint256[]","name":"molecules_","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"assetGeneratorHash_","type":"bytes32"}],"name":"setAssetGeneratorHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pricePerTokenMint_","type":"uint256"}],"name":"setPricePerTokenMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proceedsDestination_","type":"address"}],"name":"setProceedsDestination","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts_","type":"address[]"}],"name":"setPromotionAccounts","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"tokenURI_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"tokenIds_","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts_","type":"address[]"}],"name":"unsetPromotionAccounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawProceeds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040527e2202202402402403205205f05f05f05f06106b07807807807907908e0fad4a600a557e410410410410410420820820821c71c71c71c71c731251561875d75d820822600b5575b3a46e0720790c1d0222785f1807328e1432156412fa600c553480156200007157600080fd5b5060405162005c3f38038062005c3f83398101604081905262000094916200016a565b6040518060400160405280600b81526020016a585375626c696d6174696f60a81b815250604051806040016040528060048152602001632c29aaa160e11b8152508160009081620000e69190620002fa565b506001620000f58282620002fa565b50601191506200010890508582620002fa565b50600d80546001600160a01b0319166001600160a01b03949094169390931790925560125560805250620003c6565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200016557600080fd5b919050565b600080600080608085870312156200018157600080fd5b84516001600160401b03808211156200019957600080fd5b818701915087601f830112620001ae57600080fd5b815181811115620001c357620001c362000137565b604051601f8201601f19908116603f01168101908382118183101715620001ee57620001ee62000137565b81604052828152602093508a848487010111156200020b57600080fd5b600091505b828210156200022f578482018401518183018501529083019062000210565b82821115620002415760008484830101525b9750620002539150508782016200014d565b60408801516060909801519699909850945050505050565b600181811c908216806200028057607f821691505b602082108103620002a157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002f557600081815260208120601f850160051c81016020861015620002d05750805b601f850160051c820191505b81811015620002f157828155600101620002dc565b5050505b505050565b81516001600160401b0381111562000316576200031662000137565b6200032e816200032784546200026b565b84620002a7565b602080601f8311600181146200036657600084156200034d5750858301515b600019600386901b1c1916600185901b178555620002f1565b600085815260208120601f198616915b82811015620003975788860151825594840194600190910190840162000376565b5085821015620003b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051615809620004366000396000818161095e01528181610ef001528181610f7901528181611bca0152818161216e015281816123a80152818161276301528181612a0901528181612ed2015281816131b60152818161349f01528181613661015261467701526158096000f3fe60806040526004361061033f5760003560e01c80637d3e7191116101b0578063cc44ce13116100ec578063e8a3d48511610095578063eaf52bb31161006f578063eaf52bb3146109d6578063f2a1e38d146109f6578063f2ba4fe314610a16578063fdf85b3214610a2c57600080fd5b8063e8a3d48514610937578063e954f41d1461094c578063e985e9c51461098057600080fd5b8063e30c3978116100c6578063e30c3978146108b9578063e41e1875146108e6578063e7300e0a1461091757600080fd5b8063cc44ce1314610859578063cd2b085d14610879578063d40e985d1461089957600080fd5b806398968f1511610159578063b88d4fde11610133578063b88d4fde146107e3578063c0c4de3c14610803578063c2232c8214610823578063c87b56dd1461083957600080fd5b806398968f151461078d578063a22cb465146107a0578063aea815c5146107c057600080fd5b80638da5cb5b1161018a5780638da5cb5b146107365780639038e6931461076357806395d89b411461077857600080fd5b80637d3e7191146106c95780638462151c146106e957806386f8e2d11461070957600080fd5b806340061ce61161027f5780636352211e116102285780636ca5edda116102025780636ca5edda1461065457806370a0823114610674578063710bf3221461069457806379ba5097146106b457600080fd5b80636352211e146105f257806369db48f1146106125780636c0360eb1461063f57600080fd5b80634f6ccce7116102595780634f6ccce71461059257806355f804b3146105b25780635bbae67e146105d257600080fd5b806340061ce61461053657806342842e0e146105565780634782f8c41461057657600080fd5b806323b872dd116102ec5780632f745c59116102c65780632f745c59146104b257806332fc8b9c146104d257806335992d0c146104f25780633eaa3d821461051457600080fd5b806323b872dd1461044557806328f857a4146104655780632d1571a41461048557600080fd5b8063095ea7b31161031d578063095ea7b3146103e057806313c6d13f1461040257806318160ddd1461043057600080fd5b806301ffc9a71461034457806306fdde0314610379578063081812fc1461039b575b600080fd5b34801561035057600080fd5b5061036461035f366004614c4a565b610a48565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b5061038e610aa4565b6040516103709190614cdd565b3480156103a757600080fd5b506103bb6103b6366004614cf0565b610b36565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610370565b3480156103ec57600080fd5b506104006103fb366004614d2d565b610b6a565b005b34801561040e57600080fd5b5061042261041d366004614d57565b610cfb565b604051908152602001610370565b34801561043c57600080fd5b50600854610422565b34801561045157600080fd5b50610400610460366004614d72565b610dcc565b34801561047157600080fd5b50610400610480366004614ec2565b610e6d565b34801561049157600080fd5b506104a56104a0366004614cf0565b6110d8565b6040516103709190614f7d565b3480156104be57600080fd5b506104226104cd366004614d2d565b611a57565b3480156104de57600080fd5b506104226104ed366004614cf0565b611b26565b3480156104fe57600080fd5b50610507611b37565b6040516103709190614fe7565b34801561052057600080fd5b50610529611b81565b6040516103709190615019565b34801561054257600080fd5b50610422610551366004615028565b611bc6565b34801561056257600080fd5b50610400610571366004614d72565b611f4a565b34801561058257600080fd5b50600c5460a31c611fff16610422565b34801561059e57600080fd5b506104226105ad366004614cf0565b611f65565b3480156105be57600080fd5b506104006105cd3660046150b4565b612023565b3480156105de57600080fd5b506104006105ed366004614ec2565b6120eb565b3480156105fe57600080fd5b506103bb61060d366004614cf0565b61227f565b34801561061e57600080fd5b5061063261062d366004614cf0565b61230b565b6040516103709190615126565b34801561064b57600080fd5b5061038e612316565b34801561066057600080fd5b5061036461066f366004614d57565b6123a4565b34801561068057600080fd5b5061042261068f366004614d57565b6123fc565b3480156106a057600080fd5b506104006106af366004614d57565b6124ca565b3480156106c057600080fd5b506104006125c2565b3480156106d557600080fd5b506104006106e4366004614d57565b6126c0565b3480156106f557600080fd5b50610632610704366004614d57565b61285a565b34801561071557600080fd5b50600f546103bb9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561074257600080fd5b50600d546103bb9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561076f57600080fd5b506104006128ef565b34801561078457600080fd5b5061038e6129f6565b61063261079b36600461515e565b612a05565b3480156107ac57600080fd5b506104006107bb366004615191565b612d66565b3480156107cc57600080fd5b506107d5612d75565b6040516103709291906151cd565b3480156107ef57600080fd5b506104006107fe3660046151ea565b612d9d565b34801561080f57600080fd5b5061040061081e366004614cf0565b612e45565b34801561082f57600080fd5b5061042260105481565b34801561084557600080fd5b5061038e610854366004614cf0565b612f8d565b34801561086557600080fd5b50610422610874366004614cf0565b613120565b34801561088557600080fd5b50610400610894366004614cf0565b613133565b3480156108a557600080fd5b506104006108b4366004614cf0565b613278565b3480156108c557600080fd5b50600e546103bb9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108f257600080fd5b50600a54600b54600c5460408051938452602084019290925290820152606001610370565b34801561092357600080fd5b506104006109323660046152c8565b61341c565b34801561094357600080fd5b5061038e6135cf565b34801561095857600080fd5b506104227f000000000000000000000000000000000000000000000000000000000000000081565b34801561098c57600080fd5b5061036461099b3660046152fd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e257600080fd5b506104006109f13660046152c8565b6135de565b348015610a0257600080fd5b50610422610a11366004614cf0565b613794565b348015610a2257600080fd5b5061042260125481565b348015610a3857600080fd5b50600c5460981c6107ff16610422565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a9e5750610a9e826137bb565b92915050565b606060008054610ab390615330565b80601f0160208091040260200160405190810160405280929190818152602001828054610adf90615330565b8015610b2c5780601f10610b0157610100808354040283529160200191610b2c565b820191906000526020600020905b815481529060010190602001808311610b0f57829003601f168201915b5050505050905090565b6000610b418261389e565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b758261227f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff82161480610c605750610c60813361099b565b610cec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610c2e565b610cf6838361392c565b505050565b6000610d06336123a4565b610d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f43414e4e4f545f434c41494d00000000000000000000000000000000000000006044820152606401610c2e565b33600090815260136020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a54600b54600c54610db493866139cc565b600c91909155600b91909155600a9190915592915050565b610dd63382613a8d565b610e62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610c2e565b610cf6838383613b4d565b600d5473ffffffffffffffffffffffffffffffffffffffff163314610eee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f00000000000000000000000000000000000000000000000000000000000000004210610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b7f00000000000000000000000000000000000000000000000000000000000000004210611000576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b600a54600b54600c54611fff60a382901c1660005b86518110156110c65760005b86828151811061103357611033615383565b60200260200101518110156110bd5760006110566110518660b01c90565b613dbf565b9050600061107a8888886110758661106d8b6153e1565b9a508a613e53565b613e7e565b8d51939b50919950975091506110b3908b908690811061109c5761109c615383565b60200260200101516110ae8385613ece565b613f7f565b5050600101611021565b50600101611015565b5050600a92909255600b55600c555050565b60606007821161119857604080516002808252606082018352909160208301908036833701905050905081156111695781600114611162578160021461115b5781600314611154578160041461114d5781600514611146578160061461113f57600e61116c565b600261116c565b602061116c565b600f61116c565b601f61116c565b600861116c565b602161116c565b60015b8160018151811061117f5761117f615383565b602002602001019060ff16908160ff1681525050919050565b816010036111ff576040805160038082526080820190925290602082016060803683370190505090506003816001815181106111d6576111d6615383565b602002602001019060ff16908160ff168152505060048160028151811061117f5761117f615383565b81600b148061120e575081600c145b1561130a5760408051600480825260a08201909252906020820160808036833701905050905081600b036112a35760058160018151811061125157611251615383565b602002602001019060ff16908160ff168152505060068160028151811061127a5761127a615383565b602002602001019060ff16908160ff168152505060078160038151811061117f5761117f615383565b6013816001815181106112b8576112b8615383565b602002602001019060ff16908160ff16815250506014816002815181106112e1576112e1615383565b602002602001019060ff16908160ff168152505060158160038151811061117f5761117f615383565b81600e1480611319575081600f145b806113245750816011145b1561150a5760408051600580825260c08201909252906020820160a08036833701905050905081600e036113e25760198160018151811061136757611367615383565b602002602001019060ff16908160ff1681525050601a8160028151811061139057611390615383565b602002602001019060ff16908160ff1681525050601b816003815181106113b9576113b9615383565b602002602001019060ff16908160ff1681525050601c8160048151811061117f5761117f615383565b81600f0361147a576010816001815181106113ff576113ff615383565b602002602001019060ff16908160ff168152505060118160028151811061142857611428615383565b602002602001019060ff16908160ff168152505060128160038151811061145157611451615383565b602002602001019060ff16908160ff168152505060228160048151811061117f5761117f615383565b600e8160018151811061148f5761148f615383565b602002602001019060ff16908160ff16815250506016816002815181106114b8576114b8615383565b602002602001019060ff16908160ff16815250506017816003815181106114e1576114e1615383565b602002602001019060ff16908160ff168152505060188160048151811061117f5761117f615383565b8160091480611519575081600a145b806115245750816012145b156117855760408051600680825260e08201909252906020820160c0803683370190505090508160090361160b5760108160018151811061156757611567615383565b602002602001019060ff16908160ff168152505060118160028151811061159057611590615383565b602002602001019060ff16908160ff16815250506012816003815181106115b9576115b9615383565b602002602001019060ff16908160ff1681525050601d816004815181106115e2576115e2615383565b602002602001019060ff16908160ff1681525050601e8160058151811061117f5761117f615383565b81600a036116cc5760098160018151811061162857611628615383565b602002602001019060ff16908160ff1681525050600a8160028151811061165157611651615383565b602002602001019060ff16908160ff1681525050600b8160038151811061167a5761167a615383565b602002602001019060ff16908160ff1681525050600c816004815181106116a3576116a3615383565b602002602001019060ff16908160ff1681525050600d8160058151811061117f5761117f615383565b6023816001815181106116e1576116e1615383565b602002602001019060ff16908160ff168152505060248160028151811061170a5761170a615383565b602002602001019060ff16908160ff168152505060288160038151811061173357611733615383565b602002602001019060ff16908160ff168152505060298160048151811061175c5761175c615383565b602002602001019060ff16908160ff1681525050602a8160058151811061117f5761117f615383565b81600803611891576040805160078082526101008201909252906020820160e0803683370190505090506008816001815181106117c4576117c4615383565b602002602001019060ff16908160ff16815250506025816002815181106117ed576117ed615383565b602002602001019060ff16908160ff168152505060268160038151811061181657611816615383565b602002602001019060ff16908160ff168152505060278160048151811061183f5761183f615383565b602002602001019060ff16908160ff1681525050602b8160058151811061186857611868615383565b602002602001019060ff16908160ff1681525050602c8160068151811061117f5761117f615383565b81600d036119f05760408051600980825261014082019092529060208201610120803683370190505090506009816001815181106118d1576118d1615383565b602002602001019060ff16908160ff1681525050602d816002815181106118fa576118fa615383565b602002602001019060ff16908160ff1681525050602e8160038151811061192357611923615383565b602002602001019060ff16908160ff1681525050602f8160048151811061194c5761194c615383565b602002602001019060ff16908160ff168152505060308160058151811061197557611975615383565b602002602001019060ff16908160ff168152505060318160068151811061199e5761199e615383565b602002602001019060ff16908160ff16815250506032816007815181106119c7576119c7615383565b602002602001019060ff16908160ff168152505060338160088151811061117f5761117f615383565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5245434950450000000000000000000000000000000000006044820152606401610c2e565b919050565b6000611a62836123fc565b8210611af0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c2e565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b6000610a9e600a54600b548461414d565b611b3f614bde565b600a54600b5460005b603f811015611b7b57611b5c83838361414d565b8482603f8110611b6e57611b6e615383565b6020020152600101611b48565b50505090565b611b89614bfd565b600c5460005b6013811015611bc1576008810282901c60ff16838260138110611bb457611bb4615383565b6020020152600101611b8f565b505090565b60007f0000000000000000000000000000000000000000000000000000000000000000421015611c52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e4f545f4c41554e434845445f594554000000000000000000000000000000006044820152606401610c2e565b60138310611cbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f494e56414c49445f445255475f545950450000000000000000000000000000006044820152606401610c2e565b600c546008840281901c60ff16600003611d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f445255475f4e4f545f415641494c41424c4500000000000000000000000000006044820152606401610c2e565b602c84016000611d41866110d8565b905060005b8151811015611ea7576000898983818110611d6357611d63615383565b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16611d8c8261227f565b73ffffffffffffffffffffffffffffffffffffffff1614611e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e4f545f4f574e455200000000000000000000000000000000000000000000006044820152606401610c2e565b605d81901c84811480611e37575080848481518110611e2a57611e2a615383565b602002602001015160ff16145b611e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f494e56414c49445f4d4f4c4543554c45000000000000000000000000000000006044820152606401610c2e565b5050600101611d46565b50600080611ecb611eb989603f615416565b611ec66110518860b01c90565b613ece565b95508590505b8251821015611f0e5760008a8a84818110611eee57611eee615383565b905060200201359050611f02338383613b4d565b82600101925050611ed1565b611f188787613f7f565b75ffffff00000000000000000000000000000000000000600160088a021b860301600c55509398975050505050505050565b610cf683838360405180602001604052806000815250612d9d565b6000611f7060085490565b8210611ffe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c2e565b6008828154811061201157612011615383565b90600052602060002001549050919050565b600d5473ffffffffffffffffffffffffffffffffffffffff1633146120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f660116120d283858361547c565b6040516120df9190615597565b60405180910390a15050565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461216c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f000000000000000000000000000000000000000000000000000000000000000042106121f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b600a54600b54600c5460005b855181101561226e5760005b85828151811061221f5761221f615383565b60200260200101518110156122655761225585858560008b878151811061224857612248615383565b60200260200101516139cc565b509196509450925060010161220d565b50600101612201565b50600a92909255600b55600c555050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610a9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610c2e565b6060610a9e8261285a565b6011805461232390615330565b80601f016020809104026020016040519081016040528092919081815260200182805461234f90615330565b801561239c5780601f106123715761010080835404028352916020019161239c565b820191906000526020600020905b81548152906001019060200180831161237f57829003601f168201915b505050505081565b60007f000000000000000000000000000000000000000000000000000000000000000042108015610a9e57505073ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b600073ffffffffffffffffffffffffffffffffffffffff82166124a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610c2e565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff838116918217909255600d54604051919216907fb51454ce8c7f26becd312a46c4815553887f2ec876a0b8dc813b87f62edf6f8090600090a350565b600e5473ffffffffffffffffffffffffffffffffffffffff163314612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b600d54604051339173ffffffffffffffffffffffffffffffffffffffff16907f357bdeb5828fa83945f38a88510ce5cd7d628dafb346d767efbc693149fdd97c90600090a3600d80547fffffffffffffffffffffffff00000000000000000000000000000000000000009081163317909155600e80549091169055565b600d5473ffffffffffffffffffffffffffffffffffffffff163314612741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b600f5473ffffffffffffffffffffffffffffffffffffffff16158061278557507f000000000000000000000000000000000000000000000000000000000000000042105b6127eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517ff928fb8eb698919f7913a088854d968497807df4a72cd4247abff4f883f21af090600090a250565b60606000612867836123fc565b90508067ffffffffffffffff81111561288257612882614dae565b6040519080825280602002602001820160405280156128ab578160200160208202803683370190505b50915060005b818110156128e8576128c38482611a57565b8382815181106128d5576128d5615383565b60209081029190910101526001016128b1565b5050919050565b600f54479073ffffffffffffffffffffffffffffffffffffffff1680156129165780612930565b600d5473ffffffffffffffffffffffffffffffffffffffff165b905061293c8183614198565b6129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45544845525f5452414e534645525f4641494c454400000000000000000000006044820152606401610c2e565b8073ffffffffffffffffffffffffffffffffffffffff167f0f2fb75cc1977a496e94837f859e957f68e26e70dc1b75d9945ee92ae57969ba836040516129ea91815260200190565b60405180910390a25050565b606060018054610ab390615330565b60607f0000000000000000000000000000000000000000000000000000000000000000421015612a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e4f545f4c41554e434845445f594554000000000000000000000000000000006044820152606401610c2e565b600a54600b54600c54611fff60a382901c16600087821015612ab35781612ab5565b875b905080600003612b21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4e4f5f4d4f4c4543554c45535f415641494c41424c45000000000000000000006044820152606401610c2e565b86811015612b8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43414e4e4f545f46554c4c46494c5f52455155455354000000000000000000006044820152606401610c2e565b601254810234811115612bfa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f494e434f52524543545f56414c554500000000000000000000000000000000006044820152606401610c2e565b80341115612c7457612c0e33823403614198565b612c74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610c2e565b8167ffffffffffffffff811115612c8d57612c8d614dae565b604051908082528060200260200182016040528015612cb6578160200160208202803683370190505b5096505b8115612d50576000612ccf6110518660b01c90565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9094019390506000612d08888888611075868a613e53565b929a5090985096509050612d498c612d208385613ece565b8b876001900397508781518110612d3957612d39615383565b6020026020010181815250613f7f565b5050612cba565b505050600a92909255600b55600c559392505050565b612d71338383614201565b5050565b612d7d614bde565b612d85614bfd565b612d8d611b37565b9150612d97611b81565b90509091565b612da73383613a8d565b612e33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610c2e565b612e3f8484848461432e565b50505050565b600d5473ffffffffffffffffffffffffffffffffffffffff163314612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b6010541580612ef457507f000000000000000000000000000000000000000000000000000000000000000042105b612f5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b601081905560405181907f915b9b61db96cacba1d6c8742c3d2a17db37987e84da54d10914b7727108af6d90600090a250565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16613041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c2e565b60006011805461305090615330565b80601f016020809104026020016040519081016040528092919081815260200182805461307c90615330565b80156130c95780601f1061309e576101008083540402835291602001916130c9565b820191906000526020600020905b8154815290600101906020018083116130ac57829003601f168201915b5050505050905060008151116130ee5760405180602001604052806000815250613119565b806130f8846143d1565b604051602001613109929190615640565b6040516020818303038152906040525b9392505050565b600c54600090600883021c60ff16610a9e565b600d5473ffffffffffffffffffffffffffffffffffffffff1633146131b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f0000000000000000000000000000000000000000000000000000000000000000421061323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b60128190556040518181527f58f31eedb732333651eb2bff26211e514153de5291f042e854484f93098b374f9060200160405180910390a150565b336132828261227f565b73ffffffffffffffffffffffffffffffffffffffff16146132ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e4f545f4f574e455200000000000000000000000000000000000000000000006044820152606401610c2e565b605d81901c603f81108015906133155750605281105b61337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e4f545f445255470000000000000000000000000000000000000000000000006044820152606401610c2e565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1018160006133a9826123fc565b9050805b80156133ee5760006133ca846133c2846153e1565b935083611a57565b9050816000036133e3576133dd81614506565b506133ad565b6133dd843383613b4d565b50600c546001600885021b0173010000000000000000000000000000000000000001600c55612e3f84614506565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461349d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f00000000000000000000000000000000000000000000000000000000000000004210613526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b60005b8151811015612d7157600082828151811061354657613546615383565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff811660008181526013909352604080842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551919350917f313c675e9ececfba001bed0fc8ec48331fdf9847949eed1f1b82b9b9d1b8b9e491a250600101613529565b606060118054610ab390615330565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461365f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f000000000000000000000000000000000000000000000000000000000000000042106136e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b60005b8151811015612d7157600082828151811061370857613708615383565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff811660008181526013909352604080842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905551919350917f49b4500e73caa9020c236689aa79d5b89c45038a8f45000bc0812828679ceb1291a2506001016136eb565b600061379f8261227f565b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061384e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a9e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a9e565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16613929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610c2e565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906139868261227f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060008060006139df8a8a8961414d565b11613a46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4e4f5f415641494c4142494c49545900000000000000000000000000000000006044820152606401610c2e565b6000613a556110518960b01c90565b9050613a638a8a8a8a6145df565b91965094509250613a8086613a788984613ece565b935083613f7f565b5095509550955095915050565b600080613a998361227f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613b07575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80613b4557508373ffffffffffffffffffffffffffffffffffffffff16613b2d84610b36565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613b6d8261227f565b73ffffffffffffffffffffffffffffffffffffffff1614613c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610c2e565b73ffffffffffffffffffffffffffffffffffffffff8216613cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c2e565b613cbd838383614657565b613cc860008261392c565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290613cfe908490615698565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613d39908490615416565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000600143034033835a604051602001613e17949392919093845260609290921b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660208401526034830152605482015260740190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052805160209091012092915050565b60008115613e7557613e66826001615416565b613e7090846156de565b613119565b60009392505050565b60008060008060005b603f821015613eae57613e9b89898461414d565b01808610613eae57816001019150613e87565b613eba898989856145df565b919b909a5090985091965090945050505050565b605d82901b60a382901c17603e831115613f09577ffffffffffffffffffffffffffffffffffffffffffff8ffffffffffffffffffff16613f2c565b613f188160016050600261470b565b9050613f298160036051600461470b565b90505b613f3b8160036053600361470b565b9050613f4c8160016055600261470b565b9050613f5d8160036056600361470b565b9050613f6e8160036058600361470b565b9050613119816007605a600661470b565b73ffffffffffffffffffffffffffffffffffffffff8216613ffc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c2e565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615614088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c2e565b61409460008383614657565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906140ca908490615416565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060158210156141695750610fff600c820284901c16613119565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb016006021c603f16919050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146141f2576040519150601f19603f3d011682016040523d82523d6000602084013e6141f7565b606091505b5090949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603614296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c2e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b614339848484613b4d565b6143458484848461472e565b612e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c2e565b60608160000361441457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561443e5780614428816156f2565b91506144379050600a8361572a565b9150614418565b60008167ffffffffffffffff81111561445957614459614dae565b6040519080825280601f01601f191660200182016040528015614483576020820181803683370190505b5090505b8415613b4557614498600183615698565b91506144a5600a866156de565b6144b0906030615416565b60f81b8183815181106144c5576144c5615383565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506144ff600a8661572a565b9450614487565b60006145118261227f565b905061451f81600084614657565b61452a60008361392c565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600360205260408120805460019290614560908490615698565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008060008475fff80000000000000000000000000000000000000000019450601584101561461b575050506001600c82021b8403838361464d565b5085915050600160067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb8401021b8403835b9450945094915050565b73ffffffffffffffffffffffffffffffffffffffff8316158061469a57507f00000000000000000000000000000000000000000000000000000000000000004210155b614700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e4f545f4c41554e434845445f594554000000000000000000000000000000006044820152606401610c2e565b610cf6838383614921565b60008261471c8387831c87166156de565b901b84841b1986161795945050505050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614916576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906147a590339089908890889060040161573e565b6020604051808303816000875af19250505080156147fe575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526147fb91810190615787565b60015b6148cb573d80801561482c576040519150601f19603f3d011682016040523d82523d6000602084013e614831565b606091505b5080516000036148c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c2e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613b45565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff83166149895761498481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6149c6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146149c6576149c68382614a27565b73ffffffffffffffffffffffffffffffffffffffff82166149ea57610cf681614ade565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610cf657610cf68282614b8d565b60006001614a34846123fc565b614a3e9190615698565b600083815260076020526040902054909150808214614a9e5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090614af090600190615698565b60008381526009602052604081205460088054939450909284908110614b1857614b18615383565b906000526020600020015490508060088381548110614b3957614b39615383565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614b7157614b716157a4565b6001900381819060005260206000200160009055905550505050565b6000614b98836123fc565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b604051806107e00160405280603f906020820280368337509192915050565b6040518061026001604052806013906020820280368337509192915050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461392957600080fd5b600060208284031215614c5c57600080fd5b813561311981614c1c565b60005b83811015614c82578181015183820152602001614c6a565b83811115612e3f5750506000910152565b60008151808452614cab816020860160208601614c67565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006131196020830184614c93565b600060208284031215614d0257600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611a5257600080fd5b60008060408385031215614d4057600080fd5b614d4983614d09565b946020939093013593505050565b600060208284031215614d6957600080fd5b61311982614d09565b600080600060608486031215614d8757600080fd5b614d9084614d09565b9250614d9e60208501614d09565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715614e2457614e24614dae565b604052919050565b600067ffffffffffffffff821115614e4657614e46614dae565b5060051b60200190565b600082601f830112614e6157600080fd5b81356020614e76614e7183614e2c565b614ddd565b82815260059290921b84018101918181019086841115614e9557600080fd5b8286015b84811015614eb757614eaa81614d09565b8352918301918301614e99565b509695505050505050565b60008060408385031215614ed557600080fd5b823567ffffffffffffffff80821115614eed57600080fd5b614ef986838701614e50565b9350602091508185013581811115614f1057600080fd5b85019050601f81018613614f2357600080fd5b8035614f31614e7182614e2c565b81815260059190911b82018301908381019088831115614f5057600080fd5b928401925b82841015614f6e57833582529284019290840190614f55565b80955050505050509250929050565b6020808252825182820181905260009190848201906040850190845b81811015614fb857835160ff1683529284019291840191600101614f99565b50909695505050505050565b8060005b603f811015612e3f578151845260209384019390910190600101614fc8565b6107e08101610a9e8284614fc4565b8060005b6013811015612e3f578151845260209384019390910190600101614ffa565b6102608101610a9e8284614ff6565b6000806000806060858703121561503e57600080fd5b843567ffffffffffffffff8082111561505657600080fd5b818701915087601f83011261506a57600080fd5b81358181111561507957600080fd5b8860208260051b850101111561508e57600080fd5b6020928301965094505085013591506150a960408601614d09565b905092959194509250565b600080602083850312156150c757600080fd5b823567ffffffffffffffff808211156150df57600080fd5b818501915085601f8301126150f357600080fd5b81358181111561510257600080fd5b86602082850101111561511457600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b81811015614fb857835183529284019291840191600101615142565b60008060006060848603121561517357600080fd5b61517c84614d09565b95602085013595506040909401359392505050565b600080604083850312156151a457600080fd5b6151ad83614d09565b9150602083013580151581146151c257600080fd5b809150509250929050565b610a4081016151dc8285614fc4565b6131196107e0830184614ff6565b6000806000806080858703121561520057600080fd5b61520985614d09565b93506020615218818701614d09565b935060408601359250606086013567ffffffffffffffff8082111561523c57600080fd5b818801915088601f83011261525057600080fd5b81358181111561526257615262614dae565b615292847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601614ddd565b915080825289848285010111156152a857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156152da57600080fd5b813567ffffffffffffffff8111156152f157600080fd5b613b4584828501614e50565b6000806040838503121561531057600080fd5b61531983614d09565b915061532760208401614d09565b90509250929050565b600181811c9082168061534457607f821691505b60208210810361537d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816153f0576153f06153b2565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60008219821115615429576154296153b2565b500190565b601f821115610cf657600081815260208120601f850160051c810160208610156154555750805b601f850160051c820191505b8181101561547457828155600101615461565b505050505050565b67ffffffffffffffff83111561549457615494614dae565b6154a8836154a28354615330565b8361542e565b6000601f8411600181146154fa57600085156154c45750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355615590565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b828110156155495786850135825560209485019460019092019101615529565b5086821015615584577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60006020808352600084546155ab81615330565b808487015260406001808416600081146155cc576001811461560457615632565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01528284151560051b8a01019550615632565b896000528660002060005b8581101561562a5781548b820186015290830190880161560f565b8a0184019650505b509398975050505050505050565b60008351615652818460208801614c67565b7f2f00000000000000000000000000000000000000000000000000000000000000908301908152835161568c816001840160208801614c67565b01600101949350505050565b6000828210156156aa576156aa6153b2565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826156ed576156ed6156af565b500690565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615723576157236153b2565b5060010190565b600082615739576157396156af565b500490565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261577d6080830184614c93565b9695505050505050565b60006020828403121561579957600080fd5b815161311981614c1c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212207a434d96455236ea98a740b68b693d2417fd102d73a778837d0a1312381efc4664736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000055e559c974346ed3ae4f8b1b1b6c87b6506ccabc000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000062c89ad00000000000000000000000000000000000000000000000000000000000000024787375626c696d6174696f2e66616374696f6e2e6172742f6170692f6d6574616461746100000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061033f5760003560e01c80637d3e7191116101b0578063cc44ce13116100ec578063e8a3d48511610095578063eaf52bb31161006f578063eaf52bb3146109d6578063f2a1e38d146109f6578063f2ba4fe314610a16578063fdf85b3214610a2c57600080fd5b8063e8a3d48514610937578063e954f41d1461094c578063e985e9c51461098057600080fd5b8063e30c3978116100c6578063e30c3978146108b9578063e41e1875146108e6578063e7300e0a1461091757600080fd5b8063cc44ce1314610859578063cd2b085d14610879578063d40e985d1461089957600080fd5b806398968f1511610159578063b88d4fde11610133578063b88d4fde146107e3578063c0c4de3c14610803578063c2232c8214610823578063c87b56dd1461083957600080fd5b806398968f151461078d578063a22cb465146107a0578063aea815c5146107c057600080fd5b80638da5cb5b1161018a5780638da5cb5b146107365780639038e6931461076357806395d89b411461077857600080fd5b80637d3e7191146106c95780638462151c146106e957806386f8e2d11461070957600080fd5b806340061ce61161027f5780636352211e116102285780636ca5edda116102025780636ca5edda1461065457806370a0823114610674578063710bf3221461069457806379ba5097146106b457600080fd5b80636352211e146105f257806369db48f1146106125780636c0360eb1461063f57600080fd5b80634f6ccce7116102595780634f6ccce71461059257806355f804b3146105b25780635bbae67e146105d257600080fd5b806340061ce61461053657806342842e0e146105565780634782f8c41461057657600080fd5b806323b872dd116102ec5780632f745c59116102c65780632f745c59146104b257806332fc8b9c146104d257806335992d0c146104f25780633eaa3d821461051457600080fd5b806323b872dd1461044557806328f857a4146104655780632d1571a41461048557600080fd5b8063095ea7b31161031d578063095ea7b3146103e057806313c6d13f1461040257806318160ddd1461043057600080fd5b806301ffc9a71461034457806306fdde0314610379578063081812fc1461039b575b600080fd5b34801561035057600080fd5b5061036461035f366004614c4a565b610a48565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b5061038e610aa4565b6040516103709190614cdd565b3480156103a757600080fd5b506103bb6103b6366004614cf0565b610b36565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610370565b3480156103ec57600080fd5b506104006103fb366004614d2d565b610b6a565b005b34801561040e57600080fd5b5061042261041d366004614d57565b610cfb565b604051908152602001610370565b34801561043c57600080fd5b50600854610422565b34801561045157600080fd5b50610400610460366004614d72565b610dcc565b34801561047157600080fd5b50610400610480366004614ec2565b610e6d565b34801561049157600080fd5b506104a56104a0366004614cf0565b6110d8565b6040516103709190614f7d565b3480156104be57600080fd5b506104226104cd366004614d2d565b611a57565b3480156104de57600080fd5b506104226104ed366004614cf0565b611b26565b3480156104fe57600080fd5b50610507611b37565b6040516103709190614fe7565b34801561052057600080fd5b50610529611b81565b6040516103709190615019565b34801561054257600080fd5b50610422610551366004615028565b611bc6565b34801561056257600080fd5b50610400610571366004614d72565b611f4a565b34801561058257600080fd5b50600c5460a31c611fff16610422565b34801561059e57600080fd5b506104226105ad366004614cf0565b611f65565b3480156105be57600080fd5b506104006105cd3660046150b4565b612023565b3480156105de57600080fd5b506104006105ed366004614ec2565b6120eb565b3480156105fe57600080fd5b506103bb61060d366004614cf0565b61227f565b34801561061e57600080fd5b5061063261062d366004614cf0565b61230b565b6040516103709190615126565b34801561064b57600080fd5b5061038e612316565b34801561066057600080fd5b5061036461066f366004614d57565b6123a4565b34801561068057600080fd5b5061042261068f366004614d57565b6123fc565b3480156106a057600080fd5b506104006106af366004614d57565b6124ca565b3480156106c057600080fd5b506104006125c2565b3480156106d557600080fd5b506104006106e4366004614d57565b6126c0565b3480156106f557600080fd5b50610632610704366004614d57565b61285a565b34801561071557600080fd5b50600f546103bb9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561074257600080fd5b50600d546103bb9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561076f57600080fd5b506104006128ef565b34801561078457600080fd5b5061038e6129f6565b61063261079b36600461515e565b612a05565b3480156107ac57600080fd5b506104006107bb366004615191565b612d66565b3480156107cc57600080fd5b506107d5612d75565b6040516103709291906151cd565b3480156107ef57600080fd5b506104006107fe3660046151ea565b612d9d565b34801561080f57600080fd5b5061040061081e366004614cf0565b612e45565b34801561082f57600080fd5b5061042260105481565b34801561084557600080fd5b5061038e610854366004614cf0565b612f8d565b34801561086557600080fd5b50610422610874366004614cf0565b613120565b34801561088557600080fd5b50610400610894366004614cf0565b613133565b3480156108a557600080fd5b506104006108b4366004614cf0565b613278565b3480156108c557600080fd5b50600e546103bb9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108f257600080fd5b50600a54600b54600c5460408051938452602084019290925290820152606001610370565b34801561092357600080fd5b506104006109323660046152c8565b61341c565b34801561094357600080fd5b5061038e6135cf565b34801561095857600080fd5b506104227f0000000000000000000000000000000000000000000000000000000062c89ad081565b34801561098c57600080fd5b5061036461099b3660046152fd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e257600080fd5b506104006109f13660046152c8565b6135de565b348015610a0257600080fd5b50610422610a11366004614cf0565b613794565b348015610a2257600080fd5b5061042260125481565b348015610a3857600080fd5b50600c5460981c6107ff16610422565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a9e5750610a9e826137bb565b92915050565b606060008054610ab390615330565b80601f0160208091040260200160405190810160405280929190818152602001828054610adf90615330565b8015610b2c5780601f10610b0157610100808354040283529160200191610b2c565b820191906000526020600020905b815481529060010190602001808311610b0f57829003601f168201915b5050505050905090565b6000610b418261389e565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b758261227f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff82161480610c605750610c60813361099b565b610cec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610c2e565b610cf6838361392c565b505050565b6000610d06336123a4565b610d6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f43414e4e4f545f434c41494d00000000000000000000000000000000000000006044820152606401610c2e565b33600090815260136020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a54600b54600c54610db493866139cc565b600c91909155600b91909155600a9190915592915050565b610dd63382613a8d565b610e62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610c2e565b610cf6838383613b4d565b600d5473ffffffffffffffffffffffffffffffffffffffff163314610eee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f0000000000000000000000000000000000000000000000000000000062c89ad04210610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b7f0000000000000000000000000000000000000000000000000000000062c89ad04210611000576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b600a54600b54600c54611fff60a382901c1660005b86518110156110c65760005b86828151811061103357611033615383565b60200260200101518110156110bd5760006110566110518660b01c90565b613dbf565b9050600061107a8888886110758661106d8b6153e1565b9a508a613e53565b613e7e565b8d51939b50919950975091506110b3908b908690811061109c5761109c615383565b60200260200101516110ae8385613ece565b613f7f565b5050600101611021565b50600101611015565b5050600a92909255600b55600c555050565b60606007821161119857604080516002808252606082018352909160208301908036833701905050905081156111695781600114611162578160021461115b5781600314611154578160041461114d5781600514611146578160061461113f57600e61116c565b600261116c565b602061116c565b600f61116c565b601f61116c565b600861116c565b602161116c565b60015b8160018151811061117f5761117f615383565b602002602001019060ff16908160ff1681525050919050565b816010036111ff576040805160038082526080820190925290602082016060803683370190505090506003816001815181106111d6576111d6615383565b602002602001019060ff16908160ff168152505060048160028151811061117f5761117f615383565b81600b148061120e575081600c145b1561130a5760408051600480825260a08201909252906020820160808036833701905050905081600b036112a35760058160018151811061125157611251615383565b602002602001019060ff16908160ff168152505060068160028151811061127a5761127a615383565b602002602001019060ff16908160ff168152505060078160038151811061117f5761117f615383565b6013816001815181106112b8576112b8615383565b602002602001019060ff16908160ff16815250506014816002815181106112e1576112e1615383565b602002602001019060ff16908160ff168152505060158160038151811061117f5761117f615383565b81600e1480611319575081600f145b806113245750816011145b1561150a5760408051600580825260c08201909252906020820160a08036833701905050905081600e036113e25760198160018151811061136757611367615383565b602002602001019060ff16908160ff1681525050601a8160028151811061139057611390615383565b602002602001019060ff16908160ff1681525050601b816003815181106113b9576113b9615383565b602002602001019060ff16908160ff1681525050601c8160048151811061117f5761117f615383565b81600f0361147a576010816001815181106113ff576113ff615383565b602002602001019060ff16908160ff168152505060118160028151811061142857611428615383565b602002602001019060ff16908160ff168152505060128160038151811061145157611451615383565b602002602001019060ff16908160ff168152505060228160048151811061117f5761117f615383565b600e8160018151811061148f5761148f615383565b602002602001019060ff16908160ff16815250506016816002815181106114b8576114b8615383565b602002602001019060ff16908160ff16815250506017816003815181106114e1576114e1615383565b602002602001019060ff16908160ff168152505060188160048151811061117f5761117f615383565b8160091480611519575081600a145b806115245750816012145b156117855760408051600680825260e08201909252906020820160c0803683370190505090508160090361160b5760108160018151811061156757611567615383565b602002602001019060ff16908160ff168152505060118160028151811061159057611590615383565b602002602001019060ff16908160ff16815250506012816003815181106115b9576115b9615383565b602002602001019060ff16908160ff1681525050601d816004815181106115e2576115e2615383565b602002602001019060ff16908160ff1681525050601e8160058151811061117f5761117f615383565b81600a036116cc5760098160018151811061162857611628615383565b602002602001019060ff16908160ff1681525050600a8160028151811061165157611651615383565b602002602001019060ff16908160ff1681525050600b8160038151811061167a5761167a615383565b602002602001019060ff16908160ff1681525050600c816004815181106116a3576116a3615383565b602002602001019060ff16908160ff1681525050600d8160058151811061117f5761117f615383565b6023816001815181106116e1576116e1615383565b602002602001019060ff16908160ff168152505060248160028151811061170a5761170a615383565b602002602001019060ff16908160ff168152505060288160038151811061173357611733615383565b602002602001019060ff16908160ff168152505060298160048151811061175c5761175c615383565b602002602001019060ff16908160ff1681525050602a8160058151811061117f5761117f615383565b81600803611891576040805160078082526101008201909252906020820160e0803683370190505090506008816001815181106117c4576117c4615383565b602002602001019060ff16908160ff16815250506025816002815181106117ed576117ed615383565b602002602001019060ff16908160ff168152505060268160038151811061181657611816615383565b602002602001019060ff16908160ff168152505060278160048151811061183f5761183f615383565b602002602001019060ff16908160ff1681525050602b8160058151811061186857611868615383565b602002602001019060ff16908160ff1681525050602c8160068151811061117f5761117f615383565b81600d036119f05760408051600980825261014082019092529060208201610120803683370190505090506009816001815181106118d1576118d1615383565b602002602001019060ff16908160ff1681525050602d816002815181106118fa576118fa615383565b602002602001019060ff16908160ff1681525050602e8160038151811061192357611923615383565b602002602001019060ff16908160ff1681525050602f8160048151811061194c5761194c615383565b602002602001019060ff16908160ff168152505060308160058151811061197557611975615383565b602002602001019060ff16908160ff168152505060318160068151811061199e5761199e615383565b602002602001019060ff16908160ff16815250506032816007815181106119c7576119c7615383565b602002602001019060ff16908160ff168152505060338160088151811061117f5761117f615383565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5245434950450000000000000000000000000000000000006044820152606401610c2e565b919050565b6000611a62836123fc565b8210611af0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c2e565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b6000610a9e600a54600b548461414d565b611b3f614bde565b600a54600b5460005b603f811015611b7b57611b5c83838361414d565b8482603f8110611b6e57611b6e615383565b6020020152600101611b48565b50505090565b611b89614bfd565b600c5460005b6013811015611bc1576008810282901c60ff16838260138110611bb457611bb4615383565b6020020152600101611b8f565b505090565b60007f0000000000000000000000000000000000000000000000000000000062c89ad0421015611c52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e4f545f4c41554e434845445f594554000000000000000000000000000000006044820152606401610c2e565b60138310611cbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f494e56414c49445f445255475f545950450000000000000000000000000000006044820152606401610c2e565b600c546008840281901c60ff16600003611d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f445255475f4e4f545f415641494c41424c4500000000000000000000000000006044820152606401610c2e565b602c84016000611d41866110d8565b905060005b8151811015611ea7576000898983818110611d6357611d63615383565b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16611d8c8261227f565b73ffffffffffffffffffffffffffffffffffffffff1614611e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e4f545f4f574e455200000000000000000000000000000000000000000000006044820152606401610c2e565b605d81901c84811480611e37575080848481518110611e2a57611e2a615383565b602002602001015160ff16145b611e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f494e56414c49445f4d4f4c4543554c45000000000000000000000000000000006044820152606401610c2e565b5050600101611d46565b50600080611ecb611eb989603f615416565b611ec66110518860b01c90565b613ece565b95508590505b8251821015611f0e5760008a8a84818110611eee57611eee615383565b905060200201359050611f02338383613b4d565b82600101925050611ed1565b611f188787613f7f565b75ffffff00000000000000000000000000000000000000600160088a021b860301600c55509398975050505050505050565b610cf683838360405180602001604052806000815250612d9d565b6000611f7060085490565b8210611ffe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c2e565b6008828154811061201157612011615383565b90600052602060002001549050919050565b600d5473ffffffffffffffffffffffffffffffffffffffff1633146120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f660116120d283858361547c565b6040516120df9190615597565b60405180910390a15050565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461216c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f0000000000000000000000000000000000000000000000000000000062c89ad042106121f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b600a54600b54600c5460005b855181101561226e5760005b85828151811061221f5761221f615383565b60200260200101518110156122655761225585858560008b878151811061224857612248615383565b60200260200101516139cc565b509196509450925060010161220d565b50600101612201565b50600a92909255600b55600c555050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610a9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610c2e565b6060610a9e8261285a565b6011805461232390615330565b80601f016020809104026020016040519081016040528092919081815260200182805461234f90615330565b801561239c5780601f106123715761010080835404028352916020019161239c565b820191906000526020600020905b81548152906001019060200180831161237f57829003601f168201915b505050505081565b60007f0000000000000000000000000000000000000000000000000000000062c89ad042108015610a9e57505073ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b600073ffffffffffffffffffffffffffffffffffffffff82166124a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610c2e565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff838116918217909255600d54604051919216907fb51454ce8c7f26becd312a46c4815553887f2ec876a0b8dc813b87f62edf6f8090600090a350565b600e5473ffffffffffffffffffffffffffffffffffffffff163314612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b600d54604051339173ffffffffffffffffffffffffffffffffffffffff16907f357bdeb5828fa83945f38a88510ce5cd7d628dafb346d767efbc693149fdd97c90600090a3600d80547fffffffffffffffffffffffff00000000000000000000000000000000000000009081163317909155600e80549091169055565b600d5473ffffffffffffffffffffffffffffffffffffffff163314612741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b600f5473ffffffffffffffffffffffffffffffffffffffff16158061278557507f0000000000000000000000000000000000000000000000000000000062c89ad042105b6127eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517ff928fb8eb698919f7913a088854d968497807df4a72cd4247abff4f883f21af090600090a250565b60606000612867836123fc565b90508067ffffffffffffffff81111561288257612882614dae565b6040519080825280602002602001820160405280156128ab578160200160208202803683370190505b50915060005b818110156128e8576128c38482611a57565b8382815181106128d5576128d5615383565b60209081029190910101526001016128b1565b5050919050565b600f54479073ffffffffffffffffffffffffffffffffffffffff1680156129165780612930565b600d5473ffffffffffffffffffffffffffffffffffffffff165b905061293c8183614198565b6129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45544845525f5452414e534645525f4641494c454400000000000000000000006044820152606401610c2e565b8073ffffffffffffffffffffffffffffffffffffffff167f0f2fb75cc1977a496e94837f859e957f68e26e70dc1b75d9945ee92ae57969ba836040516129ea91815260200190565b60405180910390a25050565b606060018054610ab390615330565b60607f0000000000000000000000000000000000000000000000000000000062c89ad0421015612a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e4f545f4c41554e434845445f594554000000000000000000000000000000006044820152606401610c2e565b600a54600b54600c54611fff60a382901c16600087821015612ab35781612ab5565b875b905080600003612b21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4e4f5f4d4f4c4543554c45535f415641494c41424c45000000000000000000006044820152606401610c2e565b86811015612b8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43414e4e4f545f46554c4c46494c5f52455155455354000000000000000000006044820152606401610c2e565b601254810234811115612bfa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f494e434f52524543545f56414c554500000000000000000000000000000000006044820152606401610c2e565b80341115612c7457612c0e33823403614198565b612c74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610c2e565b8167ffffffffffffffff811115612c8d57612c8d614dae565b604051908082528060200260200182016040528015612cb6578160200160208202803683370190505b5096505b8115612d50576000612ccf6110518660b01c90565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9094019390506000612d08888888611075868a613e53565b929a5090985096509050612d498c612d208385613ece565b8b876001900397508781518110612d3957612d39615383565b6020026020010181815250613f7f565b5050612cba565b505050600a92909255600b55600c559392505050565b612d71338383614201565b5050565b612d7d614bde565b612d85614bfd565b612d8d611b37565b9150612d97611b81565b90509091565b612da73383613a8d565b612e33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610c2e565b612e3f8484848461432e565b50505050565b600d5473ffffffffffffffffffffffffffffffffffffffff163314612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b6010541580612ef457507f0000000000000000000000000000000000000000000000000000000062c89ad042105b612f5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b601081905560405181907f915b9b61db96cacba1d6c8742c3d2a17db37987e84da54d10914b7727108af6d90600090a250565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16613041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c2e565b60006011805461305090615330565b80601f016020809104026020016040519081016040528092919081815260200182805461307c90615330565b80156130c95780601f1061309e576101008083540402835291602001916130c9565b820191906000526020600020905b8154815290600101906020018083116130ac57829003601f168201915b5050505050905060008151116130ee5760405180602001604052806000815250613119565b806130f8846143d1565b604051602001613109929190615640565b6040516020818303038152906040525b9392505050565b600c54600090600883021c60ff16610a9e565b600d5473ffffffffffffffffffffffffffffffffffffffff1633146131b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f0000000000000000000000000000000000000000000000000000000062c89ad0421061323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b60128190556040518181527f58f31eedb732333651eb2bff26211e514153de5291f042e854484f93098b374f9060200160405180910390a150565b336132828261227f565b73ffffffffffffffffffffffffffffffffffffffff16146132ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e4f545f4f574e455200000000000000000000000000000000000000000000006044820152606401610c2e565b605d81901c603f81108015906133155750605281105b61337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e4f545f445255470000000000000000000000000000000000000000000000006044820152606401610c2e565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1018160006133a9826123fc565b9050805b80156133ee5760006133ca846133c2846153e1565b935083611a57565b9050816000036133e3576133dd81614506565b506133ad565b6133dd843383613b4d565b50600c546001600885021b0173010000000000000000000000000000000000000001600c55612e3f84614506565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461349d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f0000000000000000000000000000000000000000000000000000000062c89ad04210613526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b60005b8151811015612d7157600082828151811061354657613546615383565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff811660008181526013909352604080842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551919350917f313c675e9ececfba001bed0fc8ec48331fdf9847949eed1f1b82b9b9d1b8b9e491a250600101613529565b606060118054610ab390615330565b600d5473ffffffffffffffffffffffffffffffffffffffff16331461365f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610c2e565b7f0000000000000000000000000000000000000000000000000000000062c89ad042106136e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f414c52454144595f4c41554e43484544000000000000000000000000000000006044820152606401610c2e565b60005b8151811015612d7157600082828151811061370857613708615383565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff811660008181526013909352604080842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905551919350917f49b4500e73caa9020c236689aa79d5b89c45038a8f45000bc0812828679ceb1291a2506001016136eb565b600061379f8261227f565b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061384e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a9e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a9e565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16613929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610c2e565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906139868261227f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060008060006139df8a8a8961414d565b11613a46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4e4f5f415641494c4142494c49545900000000000000000000000000000000006044820152606401610c2e565b6000613a556110518960b01c90565b9050613a638a8a8a8a6145df565b91965094509250613a8086613a788984613ece565b935083613f7f565b5095509550955095915050565b600080613a998361227f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613b07575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80613b4557508373ffffffffffffffffffffffffffffffffffffffff16613b2d84610b36565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613b6d8261227f565b73ffffffffffffffffffffffffffffffffffffffff1614613c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610c2e565b73ffffffffffffffffffffffffffffffffffffffff8216613cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c2e565b613cbd838383614657565b613cc860008261392c565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290613cfe908490615698565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613d39908490615416565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000600143034033835a604051602001613e17949392919093845260609290921b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660208401526034830152605482015260740190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052805160209091012092915050565b60008115613e7557613e66826001615416565b613e7090846156de565b613119565b60009392505050565b60008060008060005b603f821015613eae57613e9b89898461414d565b01808610613eae57816001019150613e87565b613eba898989856145df565b919b909a5090985091965090945050505050565b605d82901b60a382901c17603e831115613f09577ffffffffffffffffffffffffffffffffffffffffffff8ffffffffffffffffffff16613f2c565b613f188160016050600261470b565b9050613f298160036051600461470b565b90505b613f3b8160036053600361470b565b9050613f4c8160016055600261470b565b9050613f5d8160036056600361470b565b9050613f6e8160036058600361470b565b9050613119816007605a600661470b565b73ffffffffffffffffffffffffffffffffffffffff8216613ffc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c2e565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615614088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c2e565b61409460008383614657565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906140ca908490615416565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060158210156141695750610fff600c820284901c16613119565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb016006021c603f16919050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146141f2576040519150601f19603f3d011682016040523d82523d6000602084013e6141f7565b606091505b5090949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603614296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c2e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b614339848484613b4d565b6143458484848461472e565b612e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c2e565b60608160000361441457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561443e5780614428816156f2565b91506144379050600a8361572a565b9150614418565b60008167ffffffffffffffff81111561445957614459614dae565b6040519080825280601f01601f191660200182016040528015614483576020820181803683370190505b5090505b8415613b4557614498600183615698565b91506144a5600a866156de565b6144b0906030615416565b60f81b8183815181106144c5576144c5615383565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506144ff600a8661572a565b9450614487565b60006145118261227f565b905061451f81600084614657565b61452a60008361392c565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600360205260408120805460019290614560908490615698565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008060008475fff80000000000000000000000000000000000000000019450601584101561461b575050506001600c82021b8403838361464d565b5085915050600160067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb8401021b8403835b9450945094915050565b73ffffffffffffffffffffffffffffffffffffffff8316158061469a57507f0000000000000000000000000000000000000000000000000000000062c89ad04210155b614700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e4f545f4c41554e434845445f594554000000000000000000000000000000006044820152606401610c2e565b610cf6838383614921565b60008261471c8387831c87166156de565b901b84841b1986161795945050505050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614916576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906147a590339089908890889060040161573e565b6020604051808303816000875af19250505080156147fe575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526147fb91810190615787565b60015b6148cb573d80801561482c576040519150601f19603f3d011682016040523d82523d6000602084013e614831565b606091505b5080516000036148c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c2e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613b45565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff83166149895761498481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6149c6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146149c6576149c68382614a27565b73ffffffffffffffffffffffffffffffffffffffff82166149ea57610cf681614ade565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610cf657610cf68282614b8d565b60006001614a34846123fc565b614a3e9190615698565b600083815260076020526040902054909150808214614a9e5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090614af090600190615698565b60008381526009602052604081205460088054939450909284908110614b1857614b18615383565b906000526020600020015490508060088381548110614b3957614b39615383565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614b7157614b716157a4565b6001900381819060005260206000200160009055905550505050565b6000614b98836123fc565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b604051806107e00160405280603f906020820280368337509192915050565b6040518061026001604052806013906020820280368337509192915050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461392957600080fd5b600060208284031215614c5c57600080fd5b813561311981614c1c565b60005b83811015614c82578181015183820152602001614c6a565b83811115612e3f5750506000910152565b60008151808452614cab816020860160208601614c67565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006131196020830184614c93565b600060208284031215614d0257600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611a5257600080fd5b60008060408385031215614d4057600080fd5b614d4983614d09565b946020939093013593505050565b600060208284031215614d6957600080fd5b61311982614d09565b600080600060608486031215614d8757600080fd5b614d9084614d09565b9250614d9e60208501614d09565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715614e2457614e24614dae565b604052919050565b600067ffffffffffffffff821115614e4657614e46614dae565b5060051b60200190565b600082601f830112614e6157600080fd5b81356020614e76614e7183614e2c565b614ddd565b82815260059290921b84018101918181019086841115614e9557600080fd5b8286015b84811015614eb757614eaa81614d09565b8352918301918301614e99565b509695505050505050565b60008060408385031215614ed557600080fd5b823567ffffffffffffffff80821115614eed57600080fd5b614ef986838701614e50565b9350602091508185013581811115614f1057600080fd5b85019050601f81018613614f2357600080fd5b8035614f31614e7182614e2c565b81815260059190911b82018301908381019088831115614f5057600080fd5b928401925b82841015614f6e57833582529284019290840190614f55565b80955050505050509250929050565b6020808252825182820181905260009190848201906040850190845b81811015614fb857835160ff1683529284019291840191600101614f99565b50909695505050505050565b8060005b603f811015612e3f578151845260209384019390910190600101614fc8565b6107e08101610a9e8284614fc4565b8060005b6013811015612e3f578151845260209384019390910190600101614ffa565b6102608101610a9e8284614ff6565b6000806000806060858703121561503e57600080fd5b843567ffffffffffffffff8082111561505657600080fd5b818701915087601f83011261506a57600080fd5b81358181111561507957600080fd5b8860208260051b850101111561508e57600080fd5b6020928301965094505085013591506150a960408601614d09565b905092959194509250565b600080602083850312156150c757600080fd5b823567ffffffffffffffff808211156150df57600080fd5b818501915085601f8301126150f357600080fd5b81358181111561510257600080fd5b86602082850101111561511457600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b81811015614fb857835183529284019291840191600101615142565b60008060006060848603121561517357600080fd5b61517c84614d09565b95602085013595506040909401359392505050565b600080604083850312156151a457600080fd5b6151ad83614d09565b9150602083013580151581146151c257600080fd5b809150509250929050565b610a4081016151dc8285614fc4565b6131196107e0830184614ff6565b6000806000806080858703121561520057600080fd5b61520985614d09565b93506020615218818701614d09565b935060408601359250606086013567ffffffffffffffff8082111561523c57600080fd5b818801915088601f83011261525057600080fd5b81358181111561526257615262614dae565b615292847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601614ddd565b915080825289848285010111156152a857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156152da57600080fd5b813567ffffffffffffffff8111156152f157600080fd5b613b4584828501614e50565b6000806040838503121561531057600080fd5b61531983614d09565b915061532760208401614d09565b90509250929050565b600181811c9082168061534457607f821691505b60208210810361537d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816153f0576153f06153b2565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60008219821115615429576154296153b2565b500190565b601f821115610cf657600081815260208120601f850160051c810160208610156154555750805b601f850160051c820191505b8181101561547457828155600101615461565b505050505050565b67ffffffffffffffff83111561549457615494614dae565b6154a8836154a28354615330565b8361542e565b6000601f8411600181146154fa57600085156154c45750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355615590565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b828110156155495786850135825560209485019460019092019101615529565b5086821015615584577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60006020808352600084546155ab81615330565b808487015260406001808416600081146155cc576001811461560457615632565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01528284151560051b8a01019550615632565b896000528660002060005b8581101561562a5781548b820186015290830190880161560f565b8a0184019650505b509398975050505050505050565b60008351615652818460208801614c67565b7f2f00000000000000000000000000000000000000000000000000000000000000908301908152835161568c816001840160208801614c67565b01600101949350505050565b6000828210156156aa576156aa6153b2565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826156ed576156ed6156af565b500690565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615723576157236153b2565b5060010190565b600082615739576157396156af565b500490565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261577d6080830184614c93565b9695505050505050565b60006020828403121561579957600080fd5b815161311981614c1c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212207a434d96455236ea98a740b68b693d2417fd102d73a778837d0a1312381efc4664736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000055e559c974346ed3ae4f8b1b1b6c87b6506ccabc000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000062c89ad00000000000000000000000000000000000000000000000000000000000000024787375626c696d6174696f2e66616374696f6e2e6172742f6170692f6d6574616461746100000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): xsublimatio.faction.art/api/metadata
Arg [1] : owner_ (address): 0x55e559C974346ED3aE4F8B1b1B6C87b6506ccaBC
Arg [2] : pricePerTokenMint_ (uint256): 100000000000000000
Arg [3] : launchTimestamp_ (uint256): 1657314000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000055e559c974346ed3ae4f8b1b1b6c87b6506ccabc
Arg [2] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [3] : 0000000000000000000000000000000000000000000000000000000062c89ad0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [5] : 787375626c696d6174696f2e66616374696f6e2e6172742f6170692f6d657461
Arg [6] : 6461746100000000000000000000000000000000000000000000000000000000
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.