Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.302 ETH
Eth Value
$998.17 (@ $3,305.19/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 101 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16677214 | 687 days ago | IN | 0 ETH | 0.00148032 | ||||
Mint | 15978789 | 785 days ago | IN | 0 ETH | 0.00772751 | ||||
Safe Transfer Fr... | 15958115 | 788 days ago | IN | 0 ETH | 0.00084409 | ||||
Mint | 15957239 | 788 days ago | IN | 0 ETH | 0.00257441 | ||||
Set Approval For... | 15870482 | 800 days ago | IN | 0 ETH | 0.00113566 | ||||
Mint | 15864932 | 801 days ago | IN | 0 ETH | 0.01114058 | ||||
Mint | 15864437 | 801 days ago | IN | 0 ETH | 0.0108073 | ||||
Mint | 15864323 | 801 days ago | IN | 0 ETH | 0.01054858 | ||||
Mint | 15864276 | 801 days ago | IN | 0 ETH | 0.00992139 | ||||
Mint | 15864274 | 801 days ago | IN | 0 ETH | 0.01038212 | ||||
Mint | 15864206 | 801 days ago | IN | 0 ETH | 0.01076915 | ||||
Mint | 15850640 | 803 days ago | IN | 0 ETH | 0.0022945 | ||||
Mint | 15850587 | 803 days ago | IN | 0 ETH | 0.01224239 | ||||
Mint | 15850397 | 803 days ago | IN | 0 ETH | 0.01030696 | ||||
Mint | 15850372 | 803 days ago | IN | 0 ETH | 0.01423972 | ||||
Mint | 15850353 | 803 days ago | IN | 0 ETH | 0.00719723 | ||||
Mint | 15850295 | 803 days ago | IN | 0 ETH | 0.00696018 | ||||
Renounce Ownersh... | 15629313 | 834 days ago | IN | 0 ETH | 0.00021303 | ||||
Change Price | 15629279 | 834 days ago | IN | 0 ETH | 0.0002214 | ||||
Mint | 15629203 | 834 days ago | IN | 0.001 ETH | 0.00210193 | ||||
Mint | 15629201 | 834 days ago | IN | 0.005 ETH | 0.00848235 | ||||
Mint | 15629199 | 834 days ago | IN | 0.005 ETH | 0.00827692 | ||||
Set Approval For... | 15629195 | 834 days ago | IN | 0 ETH | 0.00055963 | ||||
Mint | 15629191 | 834 days ago | IN | 0.01 ETH | 0.01869031 | ||||
Mint | 15629191 | 834 days ago | IN | 0.01 ETH | 0.01900744 |
Loading...
Loading
Contract Name:
TwoBitSnakes
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ // SPDX-License-Identifier: MIT // File: contracts/ISnakeDetail.sol /** __ __ __ _)|__) (_ |\ | _ | _ _ /__|__) __)| \|(_||((-_) */ pragma solidity ^0.8.0; interface ISnakeDetail { struct Color { uint64 red; uint64 green; uint64 blue; } struct Detail { uint256 timestamp; uint64 nameIndex; uint64 poisonIndex; uint64 placeIndex; uint64 speciesIndex; Color topColor; Color bottomColor; } /// @notice Returns the details associated with a given token ID. /// @dev Throws if the token ID is not valid. /// @param tokenId The ID of the token that represents the Bear /// @return detail memory function details(uint256 tokenId) external view returns (Detail memory detail); } // File: base64-sol/base64.sol pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: contracts/SnakeComposition.sol pragma solidity ^0.8.0; library SnakeComposition { using Strings for uint256; function fourIndexFromRandom(uint8 random) internal pure returns (uint256) { uint8 spread = random % 100; if (spread >= 46) { return 0; // 54% is Python } else if (spread >= 16) { return 1; // 30% is Green Snake } else if (spread >= 1) { return 2; // 15% is Copperhead } return 3; // 1% is Cobra } function colorBottomFromRandom(bytes memory source, uint256 indexRed, uint256 indexGreen, uint256 indexBlue, uint256 speciesIndex) internal pure returns (ISnakeDetail.Color memory) { return randomizeColors( _colorBottomFloorForSpecies(speciesIndex), _colorBottomCeilingForSpecies(speciesIndex), ISnakeDetail.Color(uint8(source[indexRed]), uint8(source[indexGreen]), uint8(source[indexBlue])) ); } function colorTopFromRandom(bytes memory source, uint256 indexRed, uint256 indexGreen, uint256 indexBlue, uint256 speciesIndex) internal pure returns (ISnakeDetail.Color memory) { return randomizeColors( _colorTopFloorForSpecies(speciesIndex), _colorTopCeilingForSpecies(speciesIndex), ISnakeDetail.Color(uint8(source[indexRed]), uint8(source[indexGreen]), uint8(source[indexBlue])) ); } function _colorBottomFloorForSpecies(uint256 index) private pure returns (ISnakeDetail.Color memory) { if (index == 0) { // Python return ISnakeDetail.Color(64, 38, 14); } else if (index == 1) { // Green Snake return ISnakeDetail.Color(45, 79, 20); } else if (index == 2) { // Copperhead return ISnakeDetail.Color(146, 116, 103); } else { // Cobra return ISnakeDetail.Color(0, 0, 0); } } function _colorBottomCeilingForSpecies(uint256 index) private pure returns (ISnakeDetail.Color memory) { if (index == 0) { // Python return ISnakeDetail.Color(119, 81, 45); } else if (index == 1) { // Green Snake return ISnakeDetail.Color(74, 131, 33); } else if (index == 2) { // Copperhead return ISnakeDetail.Color(197, 157, 139); } else { // Cobra return ISnakeDetail.Color(18, 18, 19); } } function _colorTopFloorForSpecies(uint256 index) private pure returns (ISnakeDetail.Color memory) { if (index == 0) { // Python return ISnakeDetail.Color(174, 151, 119); } else if (index == 1) { // Green Snake return ISnakeDetail.Color(109, 193, 47); } else if (index == 2) { // Copperhead return ISnakeDetail.Color(83, 38, 44); } else { // Cobra return ISnakeDetail.Color(139, 136, 98); } } function _colorTopCeilingForSpecies(uint256 index) private pure returns (ISnakeDetail.Color memory) { if (index == 0) { // Python return ISnakeDetail.Color(225, 196, 155); } else if (index == 1) { // Green Snake return ISnakeDetail.Color(144, 255, 62); } else if (index == 2) { // Copperhead return ISnakeDetail.Color(134, 62, 72); } else { // Cobra return ISnakeDetail.Color(190, 187, 134); } } function randomizeColors(ISnakeDetail.Color memory floor, ISnakeDetail.Color memory ceiling, ISnakeDetail.Color memory random) private pure returns (ISnakeDetail.Color memory color) { uint256 percent = (uint256(random.red) + uint256(random.green) + uint256(random.blue)) % 100; color.red = floor.red + uint8(uint256(ceiling.red + (random.red % 2) - floor.red) * percent / 100); color.green = floor.green + uint8(uint256(ceiling.green + (random.green % 2) - floor.green) * percent / 100); color.blue = floor.blue + uint8(uint256(ceiling.blue + (random.blue % 2) - floor.blue) * percent / 100); } function createSvg(ISnakeDetail.Detail memory detail) internal pure returns (bytes memory) { return abi.encodePacked( svgOpen(1080, 1080), "<path id='Head' d='M540 675 L810 675 810 405 540 405 Z' fill='", svgColor(detail.topColor), "'/><path id='Torso' d='M270 675 L540 675 540 405 270 405 Z' fill='", svgColor(detail.bottomColor), "'/></svg>" ); } function svgColor(ISnakeDetail.Color memory color) internal pure returns (string memory) { return string(abi.encodePacked("rgb(", uint256(color.red).toString(), ",", uint256(color.green).toString(), ",", uint256(color.blue).toString(), ")")); } function svgOpen(uint256 width, uint256 height) private pure returns (string memory) { return string(abi.encodePacked("<svg viewBox='0 0 ", width.toString(), " ", height.toString(), "' xmlns='http://www.w3.org/2000/svg' version='1.1'>")); } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external ; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external ; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external ; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external ; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.8.9 <0.9.0; contract TwoBitSnakes is ERC721A, Ownable, ISnakeDetail, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; /// @dev Counter for token Ids Counters.Counter private _tokenIds; /// @dev Price for one snake uint256 public snakePrice = 0.001 ether; /// @dev Maximum snakes that will be minted uint256 private constant _maxTokens = 4000; uint256 private constant seed = 1; /// @dev Maximum quantity of snakes that will be minted at once uint256 public constant maximumMintQuantity = 10; uint256 private _seed; // Mapping of TokenIds to generated snake Detail mapping(uint256 => ISnakeDetail.Detail) private _tokenIdToSnakeDetails; bool public paused = true; string[4] private _species = ["Python", "Green Snake", "Copperhead", "Cobra"]; string[4] private _poison = ["1", "2", "3", "4"]; string[18] private _names = ["Sssskye", "Sssscarlet", "Sssseven", "Ssssloan", "Sssselena", "Ssssara", "Sssstar", "Sssstacy", "Sssstormie", "Ssssteven", "Ssssean", "Sssslade", "Ssssantana", "Ssssaul", "Ssssam", "Sssscott", "Ssssasssuke", "Sssstephano"]; string[18] private _places = ["Sssshanghai", "Ssssan Antonio", "Sssseattle", "Sssseoul", "Ssssao Paulo", "Ssssydney", "Ssssan Diego", "Ssssaint Petersssburg", "Ssssurat", "Ssssingapore", "Ssssapporo", "Sssstockholm", "Ssssharjah", "Ssssultanah", "Ssssale", "Ssssaltillo", "Ssssokoto", "El Ssssalvador"]; constructor() ERC721A("Two Bit Snakes", "TBS") { _seed = uint256(keccak256(abi.encodePacked(msg.sender, blockhash(block.number-1), block.timestamp))); } function mint(uint256 quantity) public payable nonReentrant { require(!paused, "The contract is paused!"); require(quantity > 0 && quantity <= maximumMintQuantity, "Quantity is invalid"); require(msg.value >= snakePrice * quantity, "Ether sent is not correct"); require(_tokenIds.current() + quantity <= _maxTokens, "Maximum snakes exceeded"); _seed = uint256(keccak256(abi.encodePacked(_seed >> 1, msg.sender, blockhash(block.number-1), block.timestamp))); for (uint256 i = 0; i < quantity; i++) { uint256 tokenId = _tokenIds.current(); _safeMint(msg.sender, seed); _tokenIds.increment(); _tokenIdToSnakeDetails[tokenId] = _createDetailFromRandom(_seed, tokenId); if (i + 1 < quantity) { _seed = uint256(keccak256(abi.encodePacked(_seed >> 1))); } } } function setPaused() public onlyOwner { paused = !paused; } function changePrice(uint256 _snakePrice) public onlyOwner { snakePrice = _snakePrice; } /// @inheritdoc ISnakeDetail function details(uint256 tokenId) external view override returns (Detail memory detail) { require(_exists(tokenId) && tokenId < _maxTokens, "Nonexistent token"); detail = _tokenIdToSnakeDetails[tokenId]; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return _tokenUriForDetail(_tokenIdToSnakeDetails[tokenId], tokenId); } function _tokenUriForDetail(Detail memory detail, uint256 tokenId) private view returns (string memory) { return string(abi.encodePacked( _baseURI(), Base64.encode(abi.encodePacked( '{"name":"', _nameFromDetail(detail, tokenId), '","description":"', 'We made some mf snakes on the mf chain', '","attributes":[{"', _attributesFromDetail(detail), '"}],"image":"', "data:image/svg+xml;base64,", Base64.encode(SnakeComposition.createSvg(detail)), '"}' )) )); } /// @notice Send funds from sales to the team function withdraw() external onlyOwner{ payable(msg.sender).transfer(address(this).balance); } function _baseURI() internal pure virtual override returns (string memory) { return "data:application/json;base64,"; } function _createDetailFromRandom(uint256 random, uint256 tokenId) private view returns (Detail memory) { bytes memory randomPieces = abi.encodePacked(random); uint256 increment = (tokenId % 20) + 1; uint256 speciesIndex = SnakeComposition.fourIndexFromRandom(uint8(randomPieces[9 + increment])); return Detail( block.timestamp, uint8(uint8(randomPieces[2 + increment]) % _names.length), uint8(SnakeComposition.fourIndexFromRandom(uint8(randomPieces[increment]))), uint8(uint8(randomPieces[8 + increment]) % _places.length), uint8(speciesIndex), SnakeComposition.colorTopFromRandom(randomPieces, 6 + increment, 3 + increment, 4 + increment, speciesIndex), SnakeComposition.colorBottomFromRandom(randomPieces, 5 + increment, 7 + increment, 1 + increment, speciesIndex) ); } function _attributesFromDetail(Detail memory detail) private view returns (string memory) { return string(abi.encodePacked( 'trait_type":"Species","value":"', _species[detail.speciesIndex], '"},{"trait_type":"Poison","value":"', _poison[detail.poisonIndex], '"},{"trait_type":"Name","value":"', _names[detail.nameIndex], '"},{"trait_type":"Location","value":"', _places[detail.placeIndex], '"},{"trait_type":"Snake Head Color","value":"', SnakeComposition.svgColor(detail.topColor), '"},{"trait_type":"Snake Body Color","value":"', SnakeComposition.svgColor(detail.bottomColor) )); } function _nameFromDetail(Detail memory detail, uint256 tokenId) private view returns (string memory) { return string(abi.encodePacked(_names[detail.nameIndex], ' from ', _places[detail.placeIndex], ' #', (tokenId).toString())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_snakePrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"details","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint64","name":"nameIndex","type":"uint64"},{"internalType":"uint64","name":"poisonIndex","type":"uint64"},{"internalType":"uint64","name":"placeIndex","type":"uint64"},{"internalType":"uint64","name":"speciesIndex","type":"uint64"},{"components":[{"internalType":"uint64","name":"red","type":"uint64"},{"internalType":"uint64","name":"green","type":"uint64"},{"internalType":"uint64","name":"blue","type":"uint64"}],"internalType":"struct ISnakeDetail.Color","name":"topColor","type":"tuple"},{"components":[{"internalType":"uint64","name":"red","type":"uint64"},{"internalType":"uint64","name":"green","type":"uint64"},{"internalType":"uint64","name":"blue","type":"uint64"}],"internalType":"struct ISnakeDetail.Color","name":"bottomColor","type":"tuple"}],"internalType":"struct ISnakeDetail.Detail","name":"detail","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snakePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66038d7ea4c68000600b908155600e805460ff19166001179055600661010090815265283cba3437b760d11b6101205260809081526101409182526a477265656e20536e616b6560a81b6101605260a091909152600a6101809081526910dbdc1c195c9a19585960b21b6101a05260c05261020060405260056101c090815264436f62726160d81b6101e05260e0526200009e90600f90600462000793565b506040805160c081018252600160808201818152603160f81b60a0840152825282518084018452818152601960f91b6020828101919091528084019190915283518085018552828152603360f81b81830152838501528351808501909452908352600d60fa1b9083015260608101919091526200012090601390600462000793565b5060408051610280810182526007610240820181815266537373736b796560c81b610260840152825282518084018452600a8082526914dcdcdcd8d85c9b195d60b21b602083810191909152808501929092528451808601865260088082526729b9b9b9b2bb32b760c11b8285015285870191909152855180870187528181526729b9b9b9b637b0b760c11b8185015260608601528551808701875260098082526853737373656c656e6160b81b82860152608087019190915286518088018852858152665373737361726160c81b8186015260a0870152865180880188528581526629b9b9b9ba30b960c91b8186015260c08701528651808801885282815267537373737461637960c01b8186015260e0870152865180880188528381526953737373746f726d696560b01b81860152610100870152865180880188529081526829b9b9b9ba32bb32b760b91b81850152610120860152855180870187528481526629b9b9b9b2b0b760c91b818501526101408601528551808701875281815267537373736c61646560c01b81850152610160860152855180870187529182526953737373616e74616e6160b01b82840152610180850191909152845180860186529283526614dcdcdcd85d5b60ca1b838301526101a084019290925283518085018552600681526553737373616d60d01b818301526101c0840152835180850185529182526714dcdcdcd8dbdd1d60c21b828201526101e083019190915282518084018452600b8082526a5373737361737373756b6560a81b82840152610200840191909152835180850190945283526a5373737374657068616e6f60a81b908301526102208101919091526200039e906017906012620007e3565b506040805161028081018252600b61024082018181526a5373737368616e6768616960a81b610260840152825282518084018452600e8082526d53737373616e20416e746f6e696f60901b6020838101919091528085019290925284518086018652600a8082526953737373656174746c6560b01b82850152858701919091528551808701875260088082526714dcdcdcd95bdd5b60c21b82860152606087019190915286518088018852600c8082526b53737373616f205061756c6f60a01b828701526080880191909152875180890189526009808252685373737379646e657960b81b8288015260a08901919091528851808a018a528281526b53737373616e20446965676f60a01b8188015260c08901528851808a018a52601581527f5373737361696e742050657465727373736275726700000000000000000000008188015260e08901528851808a018a529283526714dcdcdcdd5c985d60c21b83870152610100880192909252875180890189528181526b53737373696e6761706f726560a01b818701526101208801528751808901895283815269537373736170706f726f60b01b81870152610140880152875180890189529081526b53737373746f636b686f6c6d60a01b8186015261016087015286518088018852918252690a6e6e6e6d0c2e4d4c2d60b31b82850152610180860191909152855180870187528481526a0a6e6e6e6ead8e8c2dcc2d60ab1b818501526101a086015285518087018752600781526653737373616c6560c81b818501526101c0860152855180870187529384526a53737373616c74696c6c6f60a81b848401526101e08501939093528451808601865292835268537373736f6b6f746f60b81b8383015261020084019290925283518085019094529083526d22b61029b9b9b9b0b63b30b237b960911b9083015261022081019190915262000660906029906012620007e3565b503480156200066e57600080fd5b506040518060400160405280600e81526020016d54776f2042697420536e616b657360901b8152506040518060400160405280600381526020016254425360e81b8152508160029081620006c3919062000940565b506003620006d2828262000940565b50506000805550620006e43362000741565b600160098190553390620006f9904362000a0c565b60405160609290921b6001600160601b031916602083015240603482015242605482015260740160408051601f198184030181529190528051602090910120600c5562000a34565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8260048101928215620007d1579160200282015b82811115620007d15782518290620007c0908262000940565b5091602001919060010190620007a7565b50620007df92915062000821565b5090565b8260128101928215620007d1579160200282015b82811115620007d1578251829062000810908262000940565b5091602001919060010190620007f7565b80821115620007df57600062000838828262000842565b5060010162000821565b5080546200085090620008b1565b6000825580601f1062000861575050565b601f01602090049060005260206000209081019062000881919062000884565b50565b5b80821115620007df576000815560010162000885565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620008c657607f821691505b602082108103620008e757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200093b57600081815260208120601f850160051c81016020861015620009165750805b601f850160051c820191505b81811015620009375782815560010162000922565b5050505b505050565b81516001600160401b038111156200095c576200095c6200089b565b62000974816200096d8454620008b1565b84620008ed565b602080601f831160018114620009ac5760008415620009935750858301515b600019600386901b1c1916600185901b17855562000937565b600085815260208120601f198616915b82811015620009dd57888601518255948401946001909101908401620009bc565b5085821015620009fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111562000a2e57634e487b7160e01b600052601160045260246000fd5b92915050565b612c4e8062000a446000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146103fa578063c87b56dd1461041a578063e985e9c51461043a578063f2fde38b1461045a57600080fd5b8063a0712d68146103a7578063a22cb465146103ba578063a2b40d19146103da57600080fd5b80636352211e146102f257806370a0823114610312578063715018a6146103325780638da5cb5b1461034757806395d89b4114610365578063a005ec7a1461037a57600080fd5b806323b872dd1161012357806323b872dd1461025857806337a66d85146102785780633ccfd60b1461028d57806342842e0e146102a257806349360b4a146102c25780635c975abb146102d857600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa578063180c42a21461021c57806318160ddd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046120e6565b61047a565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104cc565b6040516101979190612153565b3480156101ce57600080fd5b506101e26101dd366004612166565b61055e565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004612196565b6105a2565b005b34801561022857600080fd5b50610231600a81565b604051908152602001610197565b34801561024b57600080fd5b5060015460005403610231565b34801561026457600080fd5b5061021a6102733660046121c0565b610642565b34801561028457600080fd5b5061021a6107da565b34801561029957600080fd5b5061021a6107f6565b3480156102ae57600080fd5b5061021a6102bd3660046121c0565b61082d565b3480156102ce57600080fd5b50610231600b5481565b3480156102e457600080fd5b50600e5461018b9060ff1681565b3480156102fe57600080fd5b506101e261030d366004612166565b61084d565b34801561031e57600080fd5b5061023161032d3660046121fc565b610858565b34801561033e57600080fd5b5061021a6108a6565b34801561035357600080fd5b506008546001600160a01b03166101e2565b34801561037157600080fd5b506101b56108ba565b34801561038657600080fd5b5061039a610395366004612166565b6108c9565b6040516101979190612217565b61021a6103b5366004612166565b6109eb565b3480156103c657600080fd5b5061021a6103d53660046122b9565b610dbe565b3480156103e657600080fd5b5061021a6103f5366004612166565b610e2a565b34801561040657600080fd5b5061021a61041536600461230b565b610e37565b34801561042657600080fd5b506101b5610435366004612166565b610e81565b34801561044657600080fd5b5061018b6104553660046123e6565b610f91565b34801561046657600080fd5b5061021a6104753660046121fc565b610fbf565b60006301ffc9a760e01b6001600160e01b0319831614806104ab57506380ac58cd60e01b6001600160e01b03198316145b806104c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104db90612419565b80601f016020809104026020016040519081016040528092919081815260200182805461050790612419565b80156105545780601f1061052957610100808354040283529160200191610554565b820191906000526020600020905b81548152906001019060200180831161053757829003601f168201915b5050505050905090565b600061056982611035565b610586576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ad8261084d565b9050336001600160a01b038216146105e6576105c98133610f91565b6105e6576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061064d8261105c565b9050836001600160a01b0316816001600160a01b0316146106805760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106cd576106b08633610f91565b6106cd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106f457604051633a954ecd60e21b815260040160405180910390fd5b80156106ff57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036107915760018401600081815260046020526040812054900361078f57600054811461078f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107e26110ca565b600e805460ff19811660ff90911615179055565b6107fe6110ca565b60405133904780156108fc02916000818181858888f1935050505015801561082a573d6000803e3d6000fd5b50565b61084883838360405180602001604052806000815250610e37565b505050565b60006104c68261105c565b60006001600160a01b038216610881576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6108ae6110ca565b6108b86000611124565b565b6060600380546104db90612419565b6108d1612067565b6108da82611035565b80156108e75750610fa082105b61092c5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064015b60405180910390fd5b506000908152600d6020908152604091829020825160e0810184528154815260018201546001600160401b0380821683860152600160401b808304821684880152600160801b8084048316606080870191909152600160c01b9094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c082015290565b600260095403610a3d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610923565b6002600955600e5460ff1615610a955760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610923565b600081118015610aa65750600a8111155b610ae85760405162461bcd60e51b8152602060048201526013602482015272145d585b9d1a5d1e481a5cc81a5b9d985b1a59606a1b6044820152606401610923565b80600b54610af69190612469565b341015610b455760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610923565b610fa081610b52600a5490565b610b5c9190612480565b1115610baa5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20736e616b65732065786365656465640000000000000000006044820152606401610923565b6001600c54901c33600143610bbf9190612493565b4042604051602001610bfc949392919093845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b60408051601f198184030181529190528051602090910120600c5560005b81811015610db5576000610c2d600a5490565b9050610c3a336001611176565b610c48600a80546001019055565b610c54600c5482611194565b6000828152600d602090815260409182902083518155838201516001808301805487870151606089015160808a01516001600160401b039687166fffffffffffffffffffffffffffffffff1994851617600160401b9388168402176fffffffffffffffffffffffffffffffff16600160801b92881683026001600160c01b031617600160c01b918816919091021790935560a08901518051600288018054838b0151938c015167ffffffffffffffff60801b19938a1691871691909117938916850293909317821692881686029290921790915560c09099015180516003909701805498820151919099015196861697909216969096179084169095029490941790951691169091021790558390610d6d908490612480565b1015610da257600c546040805160019290921c60208301520160408051601f198184030181529190528051602090910120600c555b5080610dad816124a6565b915050610c1a565b50506001600955565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e326110ca565b600b55565b610e42848484610642565b6001600160a01b0383163b15610e7b57610e5e84848484611326565b610e7b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e8c82611035565b610ecc5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610923565b6000828152600d6020908152604091829020825160e0810184528154815260018201546001600160401b0380821683860152600160401b808304821684880152600160801b8084048316606080870191909152600160c01b9094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c08201526104c69083611412565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610fc76110ca565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610923565b61082a81611124565b60008054821080156104c6575050600090815260046020526040902054600160e01b161590565b6000816000548110156110b15760008181526004602052604081205490600160e01b821690036110af575b806000036110a8575060001901600081815260046020526040902054611087565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610923565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111908282604051806020016040528060008152506114c3565b5050565b61119c612067565b6000836040516020016111b191815260200190565b60408051601f19818403018152919052905060006111d06014856124d5565b6111db906001612480565b9050600061120b836111ee846009612480565b815181106111fe576111fe6124e9565b016020015160f81c611530565b90506040518060e0016040528042815260200160128585600261122e9190612480565b8151811061123e5761123e6124e9565b0160200151611250919060f81c6124d5565b60ff166001600160401b031681526020016112768585815181106111fe576111fe6124e9565b60ff16815260200160128561128c866008612480565b8151811061129c5761129c6124e9565b01602001516112ae919060f81c6124d5565b60ff9081168252831660208201526040016112ea856112ce866006612480565b6112d9876003612480565b6112e4886004612480565b87611585565b815260200161131a856112fe866005612480565b611309876007612480565b611314886001612480565b87611633565b90529695505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061135b9033908990889088906004016124ff565b6020604051808303816000875af1925050508015611396575060408051601f3d908101601f1916820190925261139391810190612532565b60015b6113f4573d8080156113c4576040519150601f19603f3d011682016040523d82523d6000602084013e6113c9565b606091505b5080516000036113ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061144e60408051808201909152601d81527f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015290565b61149b61145b8585611665565b611464866116c4565b6114756114708861178f565b6117c9565b6040516020016114879392919061256b565b6040516020818303038152906040526117c9565b6040516020016114ac929190612681565b604051602081830303815290604052905092915050565b6114cd838361192d565b6001600160a01b0383163b15610848576000548281035b6114f76000868380600101945086611326565b611514576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114e457816000541461152957600080fd5b5050505050565b60008061153e6064846126b0565b9050602e8160ff16106115545750600092915050565b60108160ff16106115685750600192915050565b60018160ff161061157c5750600292915050565b50600392915050565b60408051606081018252600080825260208201819052918101919091526116296115ae83611a2b565b6115b784611af1565b60405180606001604052808a8a815181106115d4576115d46124e9565b0160209081015160f81c82528b519101908b908a9081106115f7576115f76124e9565b0160209081015160f81c82528b519101908b908990811061161a5761161a6124e9565b016020015160f81c9052611bb2565b9695505050505050565b604080516060810182526000808252602082018190529181019190915261162961165c83611d6d565b6115b784611e2c565b6060601783602001516001600160401b031660128110611687576116876124e9565b01602984606001516001600160401b0316601281106116a8576116a86124e9565b016116b284611eec565b6040516020016114ac9392919061276f565b6060600f82608001516001600160401b0316600481106116e6576116e66124e9565b01601383604001516001600160401b031660048110611707576117076124e9565b01601784602001516001600160401b031660128110611728576117286124e9565b01602985606001516001600160401b031660128110611749576117496124e9565b016117578660a00151611fec565b6117648760c00151611fec565b604051602001611779969594939291906127be565b6040516020818303038152906040529050919050565b606061179d61043880612042565b6117aa8360a00151611fec565b6117b78460c00151611fec565b60405160200161177993929190612941565b606081516000036117e857505060408051602081019091526000815290565b6000604051806060016040528060408152602001612bd960409139905060006003845160026118179190612480565b6118219190612a46565b61182c906004612469565b9050600061183b826020612480565b6001600160401b03811115611852576118526122f5565b6040519080825280601f01601f19166020018201604052801561187c576020820181803683370190505b509050818152600183018586518101602084015b818310156118e8576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611890565b60038951066001811461190257600281146119135761191f565b613d3d60f01b60011983015261191f565b603d60f81b6000198301525b509398975050505050505050565b60008054908290036119525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a0157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016119c9565b5081600003611a2257604051622e076360e81b815260040160405180910390fd5b60005550505050565b604080516060810182526000808252602082018190529181019190915281600003611a735750506040805160608101825260ae81526097602082015260779181019190915290565b81600103611a9e57505060408051606081018252606d815260c16020820152602f9181019190915290565b81600203611ac9575050604080516060810182526053815260266020820152602c9181019190915290565b505060408051606081018252608b81526088602082015260629181019190915290565b919050565b604080516060810182526000808252602082018190529181019190915281600003611b395750506040805160608101825260e1815260c46020820152609b9181019190915290565b81600103611b64575050604080516060810182526090815260ff6020820152603e9181019190915290565b81600203611b8f5750506040805160608101825260868152603e602082015260489181019190915290565b50506040805160608101825260be815260bb602082015260869181019190915290565b60408051606081018252600080825260208201819052918101919091526000606483604001516001600160401b031684602001516001600160401b031685600001516001600160401b0316611c079190612480565b611c119190612480565b611c1b91906124d5565b9050606481866000015160028660000151611c369190612a5a565b8751611c429190612a80565b611c4c9190612aa0565b6001600160401b0316611c5f9190612469565b611c699190612a46565b8551611c789160ff1690612a80565b6001600160401b03168252602080860151908401516064918391611c9e90600290612a5a565b8760200151611cad9190612a80565b611cb79190612aa0565b6001600160401b0316611cca9190612469565b611cd49190612a46565b60ff168560200151611ce69190612a80565b6001600160401b03166020830152604080860151908401516064918391611d0f90600290612a5a565b8760400151611d1e9190612a80565b611d289190612aa0565b6001600160401b0316611d3b9190612469565b611d459190612a46565b60ff168560400151611d579190612a80565b6001600160401b03166040830152509392505050565b604080516060810182526000808252602082018190529181019190915281600003611db45750506040805160608101825281815260266020820152600e9181019190915290565b81600103611ddf57505060408051606081018252602d8152604f602082015260149181019190915290565b81600203611e0a57505060408051606081018252609281526074602082015260679181019190915290565b5050604080516060810182526000808252602082018190529181019190915290565b604080516060810182526000808252602082018190529181019190915281600003611e74575050604080516060810182526077815260516020820152602d9181019190915290565b81600103611e9f57505060408051606081018252604a81526083602082015260219181019190915290565b81600203611eca5750506040805160608101825260c58152609d6020820152608b9181019190915290565b5050604080516060810182526012808252602082015260139181019190915290565b606081600003611f135750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f3d5780611f27816124a6565b9150611f369050600a83612a46565b9150611f17565b6000816001600160401b03811115611f5757611f576122f5565b6040519080825280601f01601f191660200182016040528015611f81576020820181803683370190505b5090505b841561140a57611f96600183612493565b9150611fa3600a866124d5565b611fae906030612480565b60f81b818381518110611fc357611fc36124e9565b60200101906001600160f81b031916908160001a905350611fe5600a86612a46565b9450611f85565b606061200482600001516001600160401b0316611eec565b61201a83602001516001600160401b0316611eec565b61203084604001516001600160401b0316611eec565b60405160200161177993929190612ac0565b606061204d83611eec565b61205683611eec565b6040516020016114ac929190612b38565b6040805160e0810182526000808252602080830182905282840182905260608084018390526080840183905284519081018552828152908101829052928301529060a0820190815260408051606081018252600080825260208281018290529282015291015290565b6001600160e01b03198116811461082a57600080fd5b6000602082840312156120f857600080fd5b81356110a8816120d0565b60005b8381101561211e578181015183820152602001612106565b50506000910152565b6000815180845261213f816020860160208601612103565b601f01601f19169290920160200192915050565b6020815260006110a86020830184612127565b60006020828403121561217857600080fd5b5035919050565b80356001600160a01b0381168114611aec57600080fd5b600080604083850312156121a957600080fd5b6121b28361217f565b946020939093013593505050565b6000806000606084860312156121d557600080fd5b6121de8461217f565b92506121ec6020850161217f565b9150604084013590509250925092565b60006020828403121561220e57600080fd5b6110a88261217f565b815181526020808301516001600160401b039081168284015260408085015182168185015260608086015183169085015260808086015183169085015260a080860151805184169186019190915292830151821660c08501528201511660e08301526101608201905060c083015180516001600160401b03908116610100850152602082015181166101208501526040820151166101408401525b5092915050565b600080604083850312156122cc57600080fd5b6122d58361217f565b9150602083013580151581146122ea57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561232157600080fd5b61232a8561217f565b93506123386020860161217f565b92506040850135915060608501356001600160401b038082111561235b57600080fd5b818701915087601f83011261236f57600080fd5b813581811115612381576123816122f5565b604051601f8201601f19908116603f011681019083821181831017156123a9576123a96122f5565b816040528281528a60208487010111156123c257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123f957600080fd5b6124028361217f565b91506124106020840161217f565b90509250929050565b600181811c9082168061242d57607f821691505b60208210810361244d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176104c6576104c6612453565b808201808211156104c6576104c6612453565b818103818111156104c6576104c6612453565b6000600182016124b8576124b8612453565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124e4576124e46124bf565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061162990830184612127565b60006020828403121561254457600080fd5b81516110a8816120d0565b60008151612561818560208601612103565b9290920192915050565b683d913730b6b2911d1160b91b81528351600090612590816009850160208901612103565b701116113232b9b1b934b83a34b7b7111d1160791b6009918401918201527f5765206d61646520736f6d65206d6620736e616b6573206f6e20746865206d66601a820152651031b430b4b760d11b603a8201527111161130ba3a3934b13aba32b9911d2dbd9160711b60408201528451612611816052840160208901612103565b6c113eae961134b6b0b3b2911d1160991b605292909101918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000605f8201528351612665816079840160208801612103565b61227d60f01b60799290910191820152607b0195945050505050565b60008351612693818460208801612103565b8351908301906126a7818360208801612103565b01949350505050565b600060ff8316806126c3576126c36124bf565b8060ff84160691505092915050565b8054600090600181811c90808316806126ec57607f831692505b6020808410820361270d57634e487b7160e01b600052602260045260246000fd5b818015612721576001811461273657612763565b60ff1986168952841515850289019650612763565b60008881526020902060005b8681101561275b5781548b820152908501908301612742565b505084890196505b50505050505092915050565b600061277b82866126d2565b65010333937b6960d51b815261279460068201866126d2565b905061202360f01b815283516127b1816002840160208801612103565b0160020195945050505050565b7f74726169745f74797065223a2253706563696573222c2276616c7565223a2200815260006127f0601f8301896126d2565b7f227d2c7b2274726169745f74797065223a22506f69736f6e222c2276616c7565815262111d1160e91b602082015261282c60238201896126d2565b7f227d2c7b2274726169745f74797065223a224e616d65222c2276616c7565223a8152601160f91b6020820152905061286860218201886126d2565b7f227d2c7b2274726169745f74797065223a224c6f636174696f6e222c2276616c8152643ab2911d1160d91b602082015290506128a860258201876126d2565b90507f227d2c7b2274726169745f74797065223a22536e616b65204865616420436f6c81526c37b91116113b30b63ab2911d1160991b80602083015285516128f781602d850160208a01612103565b7f227d2c7b2274726169745f74797065223a22536e616b6520426f647920436f6c602d9390910192830152604d820152612934605a82018561254f565b9998505050505050505050565b60008451612953818460208901612103565b80830190507f3c706174682069643d27486561642720643d274d35343020363735204c38313081527f2036373520383130203430352035343020343035205a272066696c6c3d270000602082015284516129b481603e840160208901612103565b7f272f3e3c706174682069643d27546f72736f2720643d274d3237302036373520603e92909101918201527f4c3534302036373520353430203430352032373020343035205a272066696c6c605e820152613d2760f01b607e8201528351612a23816080840160208801612103565b6813979f1e17b9bb339f60b91b6080929091019182015260890195945050505050565b600082612a5557612a556124bf565b500490565b60006001600160401b0380841680612a7457612a746124bf565b92169190910692915050565b6001600160401b038181168382160190808211156122b2576122b2612453565b6001600160401b038281168282160390808211156122b2576122b2612453565b630e4cec4560e31b815260008451612adf816004850160208901612103565b8083019050600b60fa1b8060048301528551612b02816005850160208a01612103565b60059201918201528351612b1d816006840160208801612103565b602960f81b6006929091019182015260070195945050505050565b7101e39bb33903b34b2bba137bc1e93981018160751b815260008351612b65816012850160208801612103565b600160fd1b6012918401918201528351612b86816013840160208801612103565b7f2720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f601392909101918201527239bb3393903b32b939b4b7b71e93989718939f60691b603382015260460194935050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212204324ba102cb78a071214ff5f1046263bc20ccdf46af05216a50c10158c094c4564736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101665760003560e01c80636352211e116100d1578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146103fa578063c87b56dd1461041a578063e985e9c51461043a578063f2fde38b1461045a57600080fd5b8063a0712d68146103a7578063a22cb465146103ba578063a2b40d19146103da57600080fd5b80636352211e146102f257806370a0823114610312578063715018a6146103325780638da5cb5b1461034757806395d89b4114610365578063a005ec7a1461037a57600080fd5b806323b872dd1161012357806323b872dd1461025857806337a66d85146102785780633ccfd60b1461028d57806342842e0e146102a257806349360b4a146102c25780635c975abb146102d857600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa578063180c42a21461021c57806318160ddd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046120e6565b61047a565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104cc565b6040516101979190612153565b3480156101ce57600080fd5b506101e26101dd366004612166565b61055e565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004612196565b6105a2565b005b34801561022857600080fd5b50610231600a81565b604051908152602001610197565b34801561024b57600080fd5b5060015460005403610231565b34801561026457600080fd5b5061021a6102733660046121c0565b610642565b34801561028457600080fd5b5061021a6107da565b34801561029957600080fd5b5061021a6107f6565b3480156102ae57600080fd5b5061021a6102bd3660046121c0565b61082d565b3480156102ce57600080fd5b50610231600b5481565b3480156102e457600080fd5b50600e5461018b9060ff1681565b3480156102fe57600080fd5b506101e261030d366004612166565b61084d565b34801561031e57600080fd5b5061023161032d3660046121fc565b610858565b34801561033e57600080fd5b5061021a6108a6565b34801561035357600080fd5b506008546001600160a01b03166101e2565b34801561037157600080fd5b506101b56108ba565b34801561038657600080fd5b5061039a610395366004612166565b6108c9565b6040516101979190612217565b61021a6103b5366004612166565b6109eb565b3480156103c657600080fd5b5061021a6103d53660046122b9565b610dbe565b3480156103e657600080fd5b5061021a6103f5366004612166565b610e2a565b34801561040657600080fd5b5061021a61041536600461230b565b610e37565b34801561042657600080fd5b506101b5610435366004612166565b610e81565b34801561044657600080fd5b5061018b6104553660046123e6565b610f91565b34801561046657600080fd5b5061021a6104753660046121fc565b610fbf565b60006301ffc9a760e01b6001600160e01b0319831614806104ab57506380ac58cd60e01b6001600160e01b03198316145b806104c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104db90612419565b80601f016020809104026020016040519081016040528092919081815260200182805461050790612419565b80156105545780601f1061052957610100808354040283529160200191610554565b820191906000526020600020905b81548152906001019060200180831161053757829003601f168201915b5050505050905090565b600061056982611035565b610586576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ad8261084d565b9050336001600160a01b038216146105e6576105c98133610f91565b6105e6576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061064d8261105c565b9050836001600160a01b0316816001600160a01b0316146106805760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106cd576106b08633610f91565b6106cd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106f457604051633a954ecd60e21b815260040160405180910390fd5b80156106ff57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036107915760018401600081815260046020526040812054900361078f57600054811461078f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107e26110ca565b600e805460ff19811660ff90911615179055565b6107fe6110ca565b60405133904780156108fc02916000818181858888f1935050505015801561082a573d6000803e3d6000fd5b50565b61084883838360405180602001604052806000815250610e37565b505050565b60006104c68261105c565b60006001600160a01b038216610881576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6108ae6110ca565b6108b86000611124565b565b6060600380546104db90612419565b6108d1612067565b6108da82611035565b80156108e75750610fa082105b61092c5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064015b60405180910390fd5b506000908152600d6020908152604091829020825160e0810184528154815260018201546001600160401b0380821683860152600160401b808304821684880152600160801b8084048316606080870191909152600160c01b9094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c082015290565b600260095403610a3d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610923565b6002600955600e5460ff1615610a955760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610923565b600081118015610aa65750600a8111155b610ae85760405162461bcd60e51b8152602060048201526013602482015272145d585b9d1a5d1e481a5cc81a5b9d985b1a59606a1b6044820152606401610923565b80600b54610af69190612469565b341015610b455760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610923565b610fa081610b52600a5490565b610b5c9190612480565b1115610baa5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20736e616b65732065786365656465640000000000000000006044820152606401610923565b6001600c54901c33600143610bbf9190612493565b4042604051602001610bfc949392919093845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b60408051601f198184030181529190528051602090910120600c5560005b81811015610db5576000610c2d600a5490565b9050610c3a336001611176565b610c48600a80546001019055565b610c54600c5482611194565b6000828152600d602090815260409182902083518155838201516001808301805487870151606089015160808a01516001600160401b039687166fffffffffffffffffffffffffffffffff1994851617600160401b9388168402176fffffffffffffffffffffffffffffffff16600160801b92881683026001600160c01b031617600160c01b918816919091021790935560a08901518051600288018054838b0151938c015167ffffffffffffffff60801b19938a1691871691909117938916850293909317821692881686029290921790915560c09099015180516003909701805498820151919099015196861697909216969096179084169095029490941790951691169091021790558390610d6d908490612480565b1015610da257600c546040805160019290921c60208301520160408051601f198184030181529190528051602090910120600c555b5080610dad816124a6565b915050610c1a565b50506001600955565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e326110ca565b600b55565b610e42848484610642565b6001600160a01b0383163b15610e7b57610e5e84848484611326565b610e7b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e8c82611035565b610ecc5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610923565b6000828152600d6020908152604091829020825160e0810184528154815260018201546001600160401b0380821683860152600160401b808304821684880152600160801b8084048316606080870191909152600160c01b9094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c08201526104c69083611412565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610fc76110ca565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610923565b61082a81611124565b60008054821080156104c6575050600090815260046020526040902054600160e01b161590565b6000816000548110156110b15760008181526004602052604081205490600160e01b821690036110af575b806000036110a8575060001901600081815260046020526040902054611087565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610923565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111908282604051806020016040528060008152506114c3565b5050565b61119c612067565b6000836040516020016111b191815260200190565b60408051601f19818403018152919052905060006111d06014856124d5565b6111db906001612480565b9050600061120b836111ee846009612480565b815181106111fe576111fe6124e9565b016020015160f81c611530565b90506040518060e0016040528042815260200160128585600261122e9190612480565b8151811061123e5761123e6124e9565b0160200151611250919060f81c6124d5565b60ff166001600160401b031681526020016112768585815181106111fe576111fe6124e9565b60ff16815260200160128561128c866008612480565b8151811061129c5761129c6124e9565b01602001516112ae919060f81c6124d5565b60ff9081168252831660208201526040016112ea856112ce866006612480565b6112d9876003612480565b6112e4886004612480565b87611585565b815260200161131a856112fe866005612480565b611309876007612480565b611314886001612480565b87611633565b90529695505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061135b9033908990889088906004016124ff565b6020604051808303816000875af1925050508015611396575060408051601f3d908101601f1916820190925261139391810190612532565b60015b6113f4573d8080156113c4576040519150601f19603f3d011682016040523d82523d6000602084013e6113c9565b606091505b5080516000036113ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061144e60408051808201909152601d81527f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015290565b61149b61145b8585611665565b611464866116c4565b6114756114708861178f565b6117c9565b6040516020016114879392919061256b565b6040516020818303038152906040526117c9565b6040516020016114ac929190612681565b604051602081830303815290604052905092915050565b6114cd838361192d565b6001600160a01b0383163b15610848576000548281035b6114f76000868380600101945086611326565b611514576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114e457816000541461152957600080fd5b5050505050565b60008061153e6064846126b0565b9050602e8160ff16106115545750600092915050565b60108160ff16106115685750600192915050565b60018160ff161061157c5750600292915050565b50600392915050565b60408051606081018252600080825260208201819052918101919091526116296115ae83611a2b565b6115b784611af1565b60405180606001604052808a8a815181106115d4576115d46124e9565b0160209081015160f81c82528b519101908b908a9081106115f7576115f76124e9565b0160209081015160f81c82528b519101908b908990811061161a5761161a6124e9565b016020015160f81c9052611bb2565b9695505050505050565b604080516060810182526000808252602082018190529181019190915261162961165c83611d6d565b6115b784611e2c565b6060601783602001516001600160401b031660128110611687576116876124e9565b01602984606001516001600160401b0316601281106116a8576116a86124e9565b016116b284611eec565b6040516020016114ac9392919061276f565b6060600f82608001516001600160401b0316600481106116e6576116e66124e9565b01601383604001516001600160401b031660048110611707576117076124e9565b01601784602001516001600160401b031660128110611728576117286124e9565b01602985606001516001600160401b031660128110611749576117496124e9565b016117578660a00151611fec565b6117648760c00151611fec565b604051602001611779969594939291906127be565b6040516020818303038152906040529050919050565b606061179d61043880612042565b6117aa8360a00151611fec565b6117b78460c00151611fec565b60405160200161177993929190612941565b606081516000036117e857505060408051602081019091526000815290565b6000604051806060016040528060408152602001612bd960409139905060006003845160026118179190612480565b6118219190612a46565b61182c906004612469565b9050600061183b826020612480565b6001600160401b03811115611852576118526122f5565b6040519080825280601f01601f19166020018201604052801561187c576020820181803683370190505b509050818152600183018586518101602084015b818310156118e8576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611890565b60038951066001811461190257600281146119135761191f565b613d3d60f01b60011983015261191f565b603d60f81b6000198301525b509398975050505050505050565b60008054908290036119525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a0157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016119c9565b5081600003611a2257604051622e076360e81b815260040160405180910390fd5b60005550505050565b604080516060810182526000808252602082018190529181019190915281600003611a735750506040805160608101825260ae81526097602082015260779181019190915290565b81600103611a9e57505060408051606081018252606d815260c16020820152602f9181019190915290565b81600203611ac9575050604080516060810182526053815260266020820152602c9181019190915290565b505060408051606081018252608b81526088602082015260629181019190915290565b919050565b604080516060810182526000808252602082018190529181019190915281600003611b395750506040805160608101825260e1815260c46020820152609b9181019190915290565b81600103611b64575050604080516060810182526090815260ff6020820152603e9181019190915290565b81600203611b8f5750506040805160608101825260868152603e602082015260489181019190915290565b50506040805160608101825260be815260bb602082015260869181019190915290565b60408051606081018252600080825260208201819052918101919091526000606483604001516001600160401b031684602001516001600160401b031685600001516001600160401b0316611c079190612480565b611c119190612480565b611c1b91906124d5565b9050606481866000015160028660000151611c369190612a5a565b8751611c429190612a80565b611c4c9190612aa0565b6001600160401b0316611c5f9190612469565b611c699190612a46565b8551611c789160ff1690612a80565b6001600160401b03168252602080860151908401516064918391611c9e90600290612a5a565b8760200151611cad9190612a80565b611cb79190612aa0565b6001600160401b0316611cca9190612469565b611cd49190612a46565b60ff168560200151611ce69190612a80565b6001600160401b03166020830152604080860151908401516064918391611d0f90600290612a5a565b8760400151611d1e9190612a80565b611d289190612aa0565b6001600160401b0316611d3b9190612469565b611d459190612a46565b60ff168560400151611d579190612a80565b6001600160401b03166040830152509392505050565b604080516060810182526000808252602082018190529181019190915281600003611db45750506040805160608101825281815260266020820152600e9181019190915290565b81600103611ddf57505060408051606081018252602d8152604f602082015260149181019190915290565b81600203611e0a57505060408051606081018252609281526074602082015260679181019190915290565b5050604080516060810182526000808252602082018190529181019190915290565b604080516060810182526000808252602082018190529181019190915281600003611e74575050604080516060810182526077815260516020820152602d9181019190915290565b81600103611e9f57505060408051606081018252604a81526083602082015260219181019190915290565b81600203611eca5750506040805160608101825260c58152609d6020820152608b9181019190915290565b5050604080516060810182526012808252602082015260139181019190915290565b606081600003611f135750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f3d5780611f27816124a6565b9150611f369050600a83612a46565b9150611f17565b6000816001600160401b03811115611f5757611f576122f5565b6040519080825280601f01601f191660200182016040528015611f81576020820181803683370190505b5090505b841561140a57611f96600183612493565b9150611fa3600a866124d5565b611fae906030612480565b60f81b818381518110611fc357611fc36124e9565b60200101906001600160f81b031916908160001a905350611fe5600a86612a46565b9450611f85565b606061200482600001516001600160401b0316611eec565b61201a83602001516001600160401b0316611eec565b61203084604001516001600160401b0316611eec565b60405160200161177993929190612ac0565b606061204d83611eec565b61205683611eec565b6040516020016114ac929190612b38565b6040805160e0810182526000808252602080830182905282840182905260608084018390526080840183905284519081018552828152908101829052928301529060a0820190815260408051606081018252600080825260208281018290529282015291015290565b6001600160e01b03198116811461082a57600080fd5b6000602082840312156120f857600080fd5b81356110a8816120d0565b60005b8381101561211e578181015183820152602001612106565b50506000910152565b6000815180845261213f816020860160208601612103565b601f01601f19169290920160200192915050565b6020815260006110a86020830184612127565b60006020828403121561217857600080fd5b5035919050565b80356001600160a01b0381168114611aec57600080fd5b600080604083850312156121a957600080fd5b6121b28361217f565b946020939093013593505050565b6000806000606084860312156121d557600080fd5b6121de8461217f565b92506121ec6020850161217f565b9150604084013590509250925092565b60006020828403121561220e57600080fd5b6110a88261217f565b815181526020808301516001600160401b039081168284015260408085015182168185015260608086015183169085015260808086015183169085015260a080860151805184169186019190915292830151821660c08501528201511660e08301526101608201905060c083015180516001600160401b03908116610100850152602082015181166101208501526040820151166101408401525b5092915050565b600080604083850312156122cc57600080fd5b6122d58361217f565b9150602083013580151581146122ea57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561232157600080fd5b61232a8561217f565b93506123386020860161217f565b92506040850135915060608501356001600160401b038082111561235b57600080fd5b818701915087601f83011261236f57600080fd5b813581811115612381576123816122f5565b604051601f8201601f19908116603f011681019083821181831017156123a9576123a96122f5565b816040528281528a60208487010111156123c257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123f957600080fd5b6124028361217f565b91506124106020840161217f565b90509250929050565b600181811c9082168061242d57607f821691505b60208210810361244d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176104c6576104c6612453565b808201808211156104c6576104c6612453565b818103818111156104c6576104c6612453565b6000600182016124b8576124b8612453565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124e4576124e46124bf565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061162990830184612127565b60006020828403121561254457600080fd5b81516110a8816120d0565b60008151612561818560208601612103565b9290920192915050565b683d913730b6b2911d1160b91b81528351600090612590816009850160208901612103565b701116113232b9b1b934b83a34b7b7111d1160791b6009918401918201527f5765206d61646520736f6d65206d6620736e616b6573206f6e20746865206d66601a820152651031b430b4b760d11b603a8201527111161130ba3a3934b13aba32b9911d2dbd9160711b60408201528451612611816052840160208901612103565b6c113eae961134b6b0b3b2911d1160991b605292909101918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000605f8201528351612665816079840160208801612103565b61227d60f01b60799290910191820152607b0195945050505050565b60008351612693818460208801612103565b8351908301906126a7818360208801612103565b01949350505050565b600060ff8316806126c3576126c36124bf565b8060ff84160691505092915050565b8054600090600181811c90808316806126ec57607f831692505b6020808410820361270d57634e487b7160e01b600052602260045260246000fd5b818015612721576001811461273657612763565b60ff1986168952841515850289019650612763565b60008881526020902060005b8681101561275b5781548b820152908501908301612742565b505084890196505b50505050505092915050565b600061277b82866126d2565b65010333937b6960d51b815261279460068201866126d2565b905061202360f01b815283516127b1816002840160208801612103565b0160020195945050505050565b7f74726169745f74797065223a2253706563696573222c2276616c7565223a2200815260006127f0601f8301896126d2565b7f227d2c7b2274726169745f74797065223a22506f69736f6e222c2276616c7565815262111d1160e91b602082015261282c60238201896126d2565b7f227d2c7b2274726169745f74797065223a224e616d65222c2276616c7565223a8152601160f91b6020820152905061286860218201886126d2565b7f227d2c7b2274726169745f74797065223a224c6f636174696f6e222c2276616c8152643ab2911d1160d91b602082015290506128a860258201876126d2565b90507f227d2c7b2274726169745f74797065223a22536e616b65204865616420436f6c81526c37b91116113b30b63ab2911d1160991b80602083015285516128f781602d850160208a01612103565b7f227d2c7b2274726169745f74797065223a22536e616b6520426f647920436f6c602d9390910192830152604d820152612934605a82018561254f565b9998505050505050505050565b60008451612953818460208901612103565b80830190507f3c706174682069643d27486561642720643d274d35343020363735204c38313081527f2036373520383130203430352035343020343035205a272066696c6c3d270000602082015284516129b481603e840160208901612103565b7f272f3e3c706174682069643d27546f72736f2720643d274d3237302036373520603e92909101918201527f4c3534302036373520353430203430352032373020343035205a272066696c6c605e820152613d2760f01b607e8201528351612a23816080840160208801612103565b6813979f1e17b9bb339f60b91b6080929091019182015260890195945050505050565b600082612a5557612a556124bf565b500490565b60006001600160401b0380841680612a7457612a746124bf565b92169190910692915050565b6001600160401b038181168382160190808211156122b2576122b2612453565b6001600160401b038281168282160390808211156122b2576122b2612453565b630e4cec4560e31b815260008451612adf816004850160208901612103565b8083019050600b60fa1b8060048301528551612b02816005850160208a01612103565b60059201918201528351612b1d816006840160208801612103565b602960f81b6006929091019182015260070195945050505050565b7101e39bb33903b34b2bba137bc1e93981018160751b815260008351612b65816012850160208801612103565b600160fd1b6012918401918201528351612b86816013840160208801612103565b7f2720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f601392909101918201527239bb3393903b32b939b4b7b71e93989718939f60691b603382015260460194935050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212204324ba102cb78a071214ff5f1046263bc20ccdf46af05216a50c10158c094c4564736f6c63430008110033
Deployed Bytecode Sourcemap
72694:6215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33300:639;;;;;;;;;;-1:-1:-1;33300:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33300:639:0;;;;;;;;34202:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40686:218::-;;;;;;;;;;-1:-1:-1;40686:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1719:32:1;;;1701:51;;1689:2;1674:18;40686:218:0;1555:203:1;40126:401:0;;;;;;;;;;-1:-1:-1;40126:401:0;;;;;:::i;:::-;;:::i;:::-;;73219:48;;;;;;;;;;;;73265:2;73219:48;;;;;2346:25:1;;;2334:2;2319:18;73219:48:0;2200:177:1;29953:323:0;;;;;;;;;;-1:-1:-1;30227:12:0;;30014:7;30211:13;:28;29953:323;;44325:2818;;;;;;;;;;-1:-1:-1;44325:2818:0;;;;;:::i;:::-;;:::i;75286:73::-;;;;;;;;;;;;;:::i;76799:104::-;;;;;;;;;;;;;:::i;47239:186::-;;;;;;;;;;-1:-1:-1;47239:186:0;;;;;:::i;:::-;;:::i;72962:39::-;;;;;;;;;;;;;;;;73439:25;;;;;;;;;;-1:-1:-1;73439:25:0;;;;;;;;35595:152;;;;;;;;;;-1:-1:-1;35595:152:0;;;;;:::i;:::-;;:::i;31137:233::-;;;;;;;;;;-1:-1:-1;31137:233:0;;;;;:::i;:::-;;:::i;71838:103::-;;;;;;;;;;;;;:::i;71190:87::-;;;;;;;;;;-1:-1:-1;71263:6:0;;-1:-1:-1;;;;;71263:6:0;71190:87;;34378:104;;;;;;;;;;;;;:::i;75513:228::-;;;;;;;;;;-1:-1:-1;75513:228:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;74361:917::-;;;;;;:::i;:::-;;:::i;41244:234::-;;;;;;;;;;-1:-1:-1;41244:234:0;;;;;:::i;:::-;;:::i;75367:102::-;;;;;;;;;;-1:-1:-1;75367:102:0;;;;;:::i;:::-;;:::i;48023:400::-;;;;;;;;;;-1:-1:-1;48023:400:0;;;;;:::i;:::-;;:::i;75812:233::-;;;;;;;;;;-1:-1:-1;75812:233:0;;;;;:::i;:::-;;:::i;41635:164::-;;;;;;;;;;-1:-1:-1;41635:164:0;;;;;:::i;:::-;;:::i;72096:201::-;;;;;;;;;;-1:-1:-1;72096:201:0;;;;;:::i;:::-;;:::i;33300:639::-;33385:4;-1:-1:-1;;;;;;;;;33709:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33786:25:0;;;33709:102;:179;;;-1:-1:-1;;;;;;;;;;33863:25:0;;;33709:179;33689:199;33300:639;-1:-1:-1;;33300:639:0:o;34202:100::-;34256:13;34289:5;34282:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34202:100;:::o;40686:218::-;40762:7;40787:16;40795:7;40787;:16::i;:::-;40782:64;;40812:34;;-1:-1:-1;;;40812:34:0;;;;;;;;;;;40782:64;-1:-1:-1;40866:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;40866:30:0;;40686:218::o;40126:401::-;40208:13;40224:16;40232:7;40224;:16::i;:::-;40208:32;-1:-1:-1;64431:10:0;-1:-1:-1;;;;;40257:28:0;;;40253:175;;40305:44;40322:5;64431:10;41635:164;:::i;40305:44::-;40300:128;;40377:35;;-1:-1:-1;;;40377:35:0;;;;;;;;;;;40300:128;40440:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;40440:35:0;-1:-1:-1;;;;;40440:35:0;;;;;;;;;40491:28;;40440:24;;40491:28;;;;;;;40197:330;40126:401;;:::o;44325:2818::-;44460:27;44490;44509:7;44490:18;:27::i;:::-;44460:57;;44575:4;-1:-1:-1;;;;;44534:45:0;44550:19;-1:-1:-1;;;;;44534:45:0;;44530:86;;44588:28;;-1:-1:-1;;;44588:28:0;;;;;;;;;;;44530:86;44630:27;43433:24;;;:15;:24;;;;;43661:26;;64431:10;43058:30;;;-1:-1:-1;;;;;42751:28:0;;43036:20;;;43033:56;44816:180;;44909:43;44926:4;64431:10;41635:164;:::i;44909:43::-;44904:92;;44961:35;;-1:-1:-1;;;44961:35:0;;;;;;;;;;;44904:92;-1:-1:-1;;;;;45013:16:0;;45009:52;;45038:23;;-1:-1:-1;;;45038:23:0;;;;;;;;;;;45009:52;45210:15;45207:160;;;45350:1;45329:19;45322:30;45207:160;-1:-1:-1;;;;;45747:24:0;;;;;;;:18;:24;;;;;;45745:26;;-1:-1:-1;;45745:26:0;;;45816:22;;;;;;;;;45814:24;;-1:-1:-1;45814:24:0;;;38984:11;38959:23;38955:41;38942:63;-1:-1:-1;;;38942:63:0;46109:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;46404:47:0;;:52;;46400:627;;46509:1;46499:11;;46477:19;46632:30;;;:17;:30;;;;;;:35;;46628:384;;46770:13;;46755:11;:28;46751:242;;46917:30;;;;:17;:30;;;;;:52;;;46751:242;46458:569;46400:627;47074:7;47070:2;-1:-1:-1;;;;;47055:27:0;47064:4;-1:-1:-1;;;;;47055:27:0;;;;;;;;;;;44449:2694;;;44325:2818;;;:::o;75286:73::-;71076:13;:11;:13::i;:::-;75345:6:::1;::::0;;-1:-1:-1;;75335:16:0;::::1;75345:6;::::0;;::::1;75344:7;75335:16;::::0;;75286:73::o;76799:104::-;71076:13;:11;:13::i;:::-;76844:51:::1;::::0;76852:10:::1;::::0;76873:21:::1;76844:51:::0;::::1;;;::::0;::::1;::::0;;;76873:21;76852:10;76844:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;76799:104::o:0;47239:186::-;47378:39;47395:4;47401:2;47405:7;47378:39;;;;;;;;;;;;:16;:39::i;:::-;47239:186;;;:::o;35595:152::-;35667:7;35710:27;35729:7;35710:18;:27::i;31137:233::-;31209:7;-1:-1:-1;;;;;31233:19:0;;31229:60;;31261:28;;-1:-1:-1;;;31261:28:0;;;;;;;;;;;31229:60;-1:-1:-1;;;;;;31307:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;31307:55:0;;31137:233::o;71838:103::-;71076:13;:11;:13::i;:::-;71903:30:::1;71930:1;71903:18;:30::i;:::-;71838:103::o:0;34378:104::-;34434:13;34467:7;34460:14;;;;;:::i;75513:228::-;75579:20;;:::i;:::-;75620:16;75628:7;75620;:16::i;:::-;:40;;;;;73097:4;75640:7;:20;75620:40;75612:70;;;;-1:-1:-1;;;75612:70:0;;6508:2:1;75612:70:0;;;6490:21:1;6547:2;6527:18;;;6520:30;-1:-1:-1;;;6566:18:1;;;6559:47;6623:18;;75612:70:0;;;;;;;;;-1:-1:-1;75702:31:0;;;;:22;:31;;;;;;;;;75693:40;;;;;;;;;;;;;;;-1:-1:-1;;;;;75693:40:0;;;;;;;-1:-1:-1;;;75693:40:0;;;;;;;;;-1:-1:-1;;;75693:40:0;;;;;;;;;;;;;-1:-1:-1;;;75693:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75513:228::o;74361:917::-;68115:1;68713:7;;:19;68705:63;;;;-1:-1:-1;;;68705:63:0;;6854:2:1;68705:63:0;;;6836:21:1;6893:2;6873:18;;;6866:30;6932:33;6912:18;;;6905:61;6983:18;;68705:63:0;6652:355:1;68705:63:0;68115:1;68846:7;:18;74441:6:::1;::::0;::::1;;74440:7;74432:43;;;::::0;-1:-1:-1;;;74432:43:0;;7214:2:1;74432:43:0::1;::::0;::::1;7196:21:1::0;7253:2;7233:18;;;7226:30;7292:25;7272:18;;;7265:53;7335:18;;74432:43:0::1;7012:347:1::0;74432:43:0::1;74505:1;74494:8;:12;:47;;;;;73265:2;74510:8;:31;;74494:47;74486:79;;;::::0;-1:-1:-1;;;74486:79:0;;7566:2:1;74486:79:0::1;::::0;::::1;7548:21:1::0;7605:2;7585:18;;;7578:30;-1:-1:-1;;;7624:18:1;;;7617:49;7683:18;;74486:79:0::1;7364:343:1::0;74486:79:0::1;74610:8;74597:10;;:21;;;;:::i;:::-;74584:9;:34;;74576:72;;;::::0;-1:-1:-1;;;74576:72:0;;8219:2:1;74576:72:0::1;::::0;::::1;8201:21:1::0;8258:2;8238:18;;;8231:30;8297:27;8277:18;;;8270:55;8342:18;;74576:72:0::1;8017:349:1::0;74576:72:0::1;73097:4;74689:8;74667:19;:9;14423:14:::0;;14331:114;74667:19:::1;:30;;;;:::i;:::-;:44;;74659:80;;;::::0;-1:-1:-1;;;74659:80:0;;8703:2:1;74659:80:0::1;::::0;::::1;8685:21:1::0;8742:2;8722:18;;;8715:30;8781:25;8761:18;;;8754:53;8824:18;;74659:80:0::1;8501:347:1::0;74659:80:0::1;74804:1;74795:5;;:10;;74807;74842:1;74829:12;:14;;;;:::i;:::-;74819:25;74846:15;74778:84;;;;;;;;;;9199:19:1::0;;;9256:2;9252:15;;;;-1:-1:-1;;9248:53:1;9243:2;9234:12;;9227:75;9327:2;9318:12;;9311:28;9364:2;9355:12;;9348:28;9401:3;9392:13;;8986:425;74778:84:0::1;;::::0;;-1:-1:-1;;74778:84:0;;::::1;::::0;;;;;;74768:95;;74778:84:::1;74768:95:::0;;::::1;::::0;74752:5:::1;:112:::0;74760:104:::1;74875:396;74899:8;74895:1;:12;74875:396;;;74929:15;74947:19;:9;14423:14:::0;;14331:114;74947:19:::1;74929:37;;74981:27;74991:10;73140:1;74981:9;:27::i;:::-;75023:21;:9;14542:19:::0;;14560:1;14542:19;;;14453:127;75023:21:::1;75093:39;75117:5;;75124:7;75093:23;:39::i;:::-;75059:31;::::0;;;:22:::1;:31;::::0;;;;;;;;:73;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;75059:73:0;;::::1;-1:-1:-1::0;;75059:73:0;;;;-1:-1:-1;;;75059:73:0;;::::1;::::0;::::1;;::::0;;-1:-1:-1;;;75059:73:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;75059:73:0;;-1:-1:-1;;;75059:73:0;;::::1;::::0;;;::::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;75059:73:0;;::::1;::::0;;;;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;::::0;;75159:8;;75151:5:::1;::::0;:1;;:5:::1;:::i;:::-;:16;75147:113;;;75231:5;::::0;75214:28:::1;::::0;;75240:1:::1;75231:10:::0;;;::::1;75214:28;::::0;::::1;9545:19:1::0;9580:12;75214:28:0::1;::::0;;-1:-1:-1;;75214:28:0;;::::1;::::0;;;;;;75204:39;;75214:28:::1;75204:39:::0;;::::1;::::0;75188:5:::1;:56:::0;75147:113:::1;-1:-1:-1::0;74909:3:0;::::1;::::0;::::1;:::i;:::-;;;;74875:396;;;-1:-1:-1::0;;68071:1:0;69025:7;:22;74361:917::o;41244:234::-;64431:10;41339:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41339:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41339:60:0;;;;;;;;;;41415:55;;540:41:1;;;41339:49:0;;64431:10;41415:55;;513:18:1;41415:55:0;;;;;;;41244:234;;:::o;75367:102::-;71076:13;:11;:13::i;:::-;75437:10:::1;:24:::0;75367:102::o;48023:400::-;48191:31;48204:4;48210:2;48214:7;48191:12;:31::i;:::-;-1:-1:-1;;;;;48237:14:0;;;:19;48233:183;;48276:56;48307:4;48313:2;48317:7;48326:5;48276:30;:56::i;:::-;48271:145;;48360:40;;-1:-1:-1;;;48360:40:0;;;;;;;;;;;48271:145;48023:400;;;;:::o;75812:233::-;75885:13;75919:16;75927:7;75919;:16::i;:::-;75911:46;;;;-1:-1:-1;;;75911:46:0;;6508:2:1;75911:46:0;;;6490:21:1;6547:2;6527:18;;;6520:30;-1:-1:-1;;;6566:18:1;;;6559:47;6623:18;;75911:46:0;6306:341:1;75911:46:0;75996:31;;;;:22;:31;;;;;;;;;75977:60;;;;;;;;;;;;;;;-1:-1:-1;;;;;75977:60:0;;;;;;;-1:-1:-1;;;75977:60:0;;;;;;;;;-1:-1:-1;;;75977:60:0;;;;;;;;;;;;;-1:-1:-1;;;75977:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76019:7;75977:18;:60::i;41635:164::-;-1:-1:-1;;;;;41756:25:0;;;41732:4;41756:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41635:164::o;72096:201::-;71076:13;:11;:13::i;:::-;-1:-1:-1;;;;;72185:22:0;::::1;72177:73;;;::::0;-1:-1:-1;;;72177:73:0;;9945:2:1;72177:73:0::1;::::0;::::1;9927:21:1::0;9984:2;9964:18;;;9957:30;10023:34;10003:18;;;9996:62;-1:-1:-1;;;10074:18:1;;;10067:36;10120:19;;72177:73:0::1;9743:402:1::0;72177:73:0::1;72261:28;72280:8;72261:18;:28::i;42057:282::-:0;42122:4;42212:13;;42202:7;:23;42159:153;;;;-1:-1:-1;;42263:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42263:44:0;:49;;42057:282::o;36750:1275::-;36817:7;36852;36954:13;;36947:4;:20;36943:1015;;;36992:14;37009:23;;;:17;:23;;;;;;;-1:-1:-1;;;37098:24:0;;:29;;37094:845;;37763:113;37770:6;37780:1;37770:11;37763:113;;-1:-1:-1;;;37841:6:0;37823:25;;;;:17;:25;;;;;;37763:113;;;37909:6;36750:1275;-1:-1:-1;;;36750:1275:0:o;37094:845::-;36969:989;36943:1015;37986:31;;-1:-1:-1;;;37986:31:0;;;;;;;;;;;71355:132;71263:6;;-1:-1:-1;;;;;71263:6:0;64431:10;71419:23;71411:68;;;;-1:-1:-1;;;71411:68:0;;10352:2:1;71411:68:0;;;10334:21:1;;;10371:18;;;10364:30;10430:34;10410:18;;;10403:62;10482:18;;71411:68:0;10150:356:1;72457:191:0;72550:6;;;-1:-1:-1;;;;;72567:17:0;;;-1:-1:-1;;;;;;72567:17:0;;;;;;;72600:40;;72550:6;;;72567:17;72550:6;;72600:40;;72531:16;;72600:40;72520:128;72457:191;:::o;58176:112::-;58253:27;58263:2;58267:8;58253:27;;;;;;;;;;;;:9;:27::i;:::-;58176:112;;:::o;77051:912::-;77139:13;;:::i;:::-;77165:25;77210:6;77193:24;;;;;;9545:19:1;;9589:2;9580:12;;9416:182;77193:24:0;;;;-1:-1:-1;;77193:24:0;;;;;;;;;;-1:-1:-1;77228:17:0;77249:12;77259:2;77249:7;:12;:::i;:::-;77248:18;;77265:1;77248:18;:::i;:::-;77228:38;-1:-1:-1;77277:20:0;77300:72;77343:12;77356:13;77228:38;77356:1;:13;:::i;:::-;77343:27;;;;;;;;:::i;:::-;;;;;;;77300:36;:72::i;:::-;77277:95;;77390:565;;;;;;;;77411:15;77390:565;;;;77484:13;77453:12;77470:9;77466:1;:13;;;;:::i;:::-;77453:27;;;;;;;;:::i;:::-;;;;;77447:50;;;77453:27;;77447:50;:::i;:::-;77390:565;;-1:-1:-1;;;;;77390:565:0;;;;;77519:68;77562:12;77575:9;77562:23;;;;;;;;:::i;77519:68::-;77390:565;;;;;;77646:14;77615:12;77628:13;77632:9;77628:1;:13;:::i;:::-;77615:27;;;;;;;;:::i;:::-;;;;;77609:51;;;77615:27;;77609:51;:::i;:::-;77390:565;;;;;;;;;;;;;;77710:108;77746:12;77760:13;77764:9;77760:1;:13;:::i;:::-;77775;77779:9;77775:1;:13;:::i;:::-;77790;77794:9;77790:1;:13;:::i;:::-;77805:12;77710:35;:108::i;:::-;77390:565;;;;77833:111;77872:12;77886:13;77890:9;77886:1;:13;:::i;:::-;77901;77905:9;77901:1;:13;:::i;:::-;77916;77920:9;77916:1;:13;:::i;:::-;77931:12;77833:38;:111::i;:::-;77390:565;;77383:572;77051:912;-1:-1:-1;;;;;;77051:912:0:o;50507:716::-;50691:88;;-1:-1:-1;;;50691:88:0;;50670:4;;-1:-1:-1;;;;;50691:45:0;;;;;:88;;64431:10;;50758:4;;50764:7;;50773:5;;50691:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50691:88:0;;;;;;;;-1:-1:-1;;50691:88:0;;;;;;;;;;;;:::i;:::-;;;50687:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50974:6;:13;50991:1;50974:18;50970:235;;51020:40;;-1:-1:-1;;;51020:40:0;;;;;;;;;;;50970:235;51163:6;51157:13;51148:6;51144:2;51140:15;51133:38;50687:529;-1:-1:-1;;;;;;50850:64:0;-1:-1:-1;;;50850:64:0;;-1:-1:-1;50687:529:0;50507:716;;;;;;:::o;76053:687::-;76142:13;76213:10;76997:38;;;;;;;;;;;;;;;;;;76911:132;76213:10;76238:482;76321:32;76337:6;76345:7;76321:15;:32::i;:::-;76516:29;76538:6;76516:21;:29::i;:::-;76632:49;76646:34;76673:6;76646:26;:34::i;:::-;76632:13;:49::i;:::-;76252:467;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76238:13;:482::i;:::-;76182:549;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76168:564;;76053:687;;;;:::o;57403:689::-;57534:19;57540:2;57544:8;57534:5;:19::i;:::-;-1:-1:-1;;;;;57595:14:0;;;:19;57591:483;;57635:11;57649:13;57697:14;;;57730:233;57761:62;57800:1;57804:2;57808:7;;;;;;57817:5;57761:30;:62::i;:::-;57756:167;;57859:40;;-1:-1:-1;;;57859:40:0;;;;;;;;;;;57756:167;57958:3;57950:5;:11;57730:233;;58045:3;58028:13;;:20;58024:34;;58050:8;;;58024:34;57616:458;;57403:689;;;:::o;8493:395::-;8559:7;;8594:12;8603:3;8594:6;:12;:::i;:::-;8579:27;;8631:2;8621:6;:12;;;8617:230;;-1:-1:-1;8657:1:0;;8493:395;-1:-1:-1;;8493:395:0:o;8617:230::-;8707:2;8697:6;:12;;;8693:154;;-1:-1:-1;8733:1:0;;8493:395;-1:-1:-1;;8493:395:0:o;8693:154::-;8788:1;8778:6;:11;;;8774:73;;-1:-1:-1;8813:1:0;;8493:395;-1:-1:-1;;8493:395:0:o;8774:73::-;-1:-1:-1;8864:1:0;;8493:395;-1:-1:-1;;8493:395:0:o;9362:449::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9558:245:0;9588:38;9613:12;9588:24;:38::i;:::-;9641:40;9668:12;9641:26;:40::i;:::-;9696:96;;;;;;;;9721:6;9728:8;9721:16;;;;;;;;:::i;:::-;;;;;;;;;9696:96;;9746:18;;9696:96;;;9746:6;;9753:10;;9746:18;;;;;;:::i;:::-;;;;;;;;;9696:96;;9773:17;;9696:96;;;9773:6;;9780:9;;9773:17;;;;;;:::i;:::-;;;;;;;9696:96;;9558:15;:245::i;:::-;9551:252;9362:449;-1:-1:-1;;;;;;9362:449:0:o;8896:458::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9095:251:0;9125:41;9153:12;9125:27;:41::i;:::-;9181:43;9211:12;9181:29;:43::i;78663:243::-;78749:13;78806:6;78813;:16;;;-1:-1:-1;;;;;78806:24:0;;;;;;;;:::i;:::-;;78842:7;78850:6;:17;;;-1:-1:-1;;;;;78842:26:0;;;;;;;;:::i;:::-;;78876:20;78877:7;78876:18;:20::i;:::-;78789:108;;;;;;;;;;:::i;77971:684::-;78046:13;78152:8;78161:6;:19;;;-1:-1:-1;;;;;78152:29:0;;;;;;;;:::i;:::-;;78235:7;78243:6;:18;;;-1:-1:-1;;;;;78235:27:0;;;;;;;;:::i;:::-;;78314:6;78321;:16;;;-1:-1:-1;;;;;78314:24:0;;;;;;;;:::i;:::-;;78394:7;78402:6;:17;;;-1:-1:-1;;;;;78394:26:0;;;;;;;;:::i;:::-;;78484:42;78510:6;:15;;;78484:25;:42::i;:::-;78590:45;78616:6;:18;;;78590:25;:45::i;:::-;78086:560;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78072:575;;77971:684;;;:::o;12473:449::-;12550:12;12613:19;12621:4;12627;12613:7;:19::i;:::-;12726:25;12735:6;:15;;;12726:8;:25::i;:::-;12849:28;12858:6;:18;;;12849:8;:28::i;:::-;12582:332;;;;;;;;;;:::i;1686:1912::-;1744:13;1774:4;:11;1789:1;1774:16;1770:31;;-1:-1:-1;;1792:9:0;;;;;;;;;-1:-1:-1;1792:9:0;;;1686:1912::o;1770:31::-;1853:19;1875:12;;;;;;;;;;;;;;;;;1853:34;;1939:18;1985:1;1966:4;:11;1980:1;1966:15;;;;:::i;:::-;1965:21;;;;:::i;:::-;1960:27;;:1;:27;:::i;:::-;1939:48;-1:-1:-1;2070:20:0;2104:15;1939:48;2117:2;2104:15;:::i;:::-;-1:-1:-1;;;;;2093:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2093:27:0;;2070:50;;2217:10;2209:6;2202:26;2312:1;2305:5;2301:13;2371:4;2422;2416:11;2407:7;2403:25;2518:2;2510:6;2506:15;2591:754;2610:6;2601:7;2598:19;2591:754;;;2710:1;2701:7;2697:15;2686:26;;2749:7;2743:14;2875:4;2867:5;2863:2;2859:14;2855:25;2845:8;2841:40;2835:47;2824:9;2816:67;2929:1;2918:9;2914:17;2901:30;;3008:4;3000:5;2996:2;2992:14;2988:25;2978:8;2974:40;2968:47;2957:9;2949:67;3062:1;3051:9;3047:17;3034:30;;3141:4;3133:5;3130:1;3125:14;3121:25;3111:8;3107:40;3101:47;3090:9;3082:67;3195:1;3184:9;3180:17;3167:30;;3274:4;3266:5;3254:25;3244:8;3240:40;3234:47;3223:9;3215:67;-1:-1:-1;3328:1:0;3313:17;2591:754;;;3418:1;3411:4;3405:11;3401:19;3439:1;3434:54;;;;3507:1;3502:52;;;;3394:160;;3434:54;-1:-1:-1;;;;;3450:17:0;;3443:43;3434:54;;3502:52;-1:-1:-1;;;;;3518:17:0;;3511:41;3394:160;-1:-1:-1;3584:6:0;;1686:1912;-1:-1:-1;;;;;;;;1686:1912:0:o;51685:2966::-;51758:20;51781:13;;;51809;;;51805:44;;51831:18;;-1:-1:-1;;;51831:18:0;;;;;;;;;;;51805:44;-1:-1:-1;;;;;52337:22:0;;;;;;:18;:22;;;;25434:2;52337:22;;;:71;;52375:32;52363:45;;52337:71;;;52651:31;;;:17;:31;;;;;-1:-1:-1;39415:15:0;;39389:24;39385:46;38984:11;38959:23;38955:41;38952:52;38942:63;;52651:173;;52886:23;;;;52651:31;;52337:22;;53651:25;52337:22;;53504:335;54165:1;54151:12;54147:20;54105:346;54206:3;54197:7;54194:16;54105:346;;54424:7;54414:8;54411:1;54384:25;54381:1;54378;54373:59;54259:1;54246:15;54105:346;;;54109:77;54484:8;54496:1;54484:13;54480:45;;54506:19;;-1:-1:-1;;;54506:19:0;;;;;;;;;;;54480:45;54542:13;:19;-1:-1:-1;47239:186:0;;;:::o;10820:493::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10933:5:0;10942:1;10933:10;10929:377;;-1:-1:-1;;10977:33:0;;;;;;;;10996:3;10977:33;;11001:3;10977:33;;;;11006:3;10977:33;;;;;;;;10820:493::o;10929:377::-;11032:5;11041:1;11032:10;11028:278;;-1:-1:-1;;11081:32:0;;;;;;;;11100:3;11081:32;;11105:3;11081:32;;;;11110:2;11081:32;;;;;;;;10820:493::o;11028:278::-;11135:5;11144:1;11135:10;11131:175;;-1:-1:-1;;11183:30:0;;;;;;;;11202:2;11183:30;;11206:2;11183:30;;;;11210:2;11183:30;;;;;;;;10820:493::o;11131:175::-;-1:-1:-1;;11262:32:0;;;;;;;;11281:3;11262:32;;11286:3;11262:32;;;;11291:2;11262:32;;;;;;;;10820:493::o;11131:175::-;10820:493;;;:::o;11321:497::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;11436:5:0;11445:1;11436:10;11432:379;;-1:-1:-1;;11480:33:0;;;;;;;;11499:3;11480:33;;11504:3;11480:33;;;;11509:3;11480:33;;;;;;;;11321:497::o;11432:379::-;11535:5;11544:1;11535:10;11531:280;;-1:-1:-1;;11584:32:0;;;;;;;;11603:3;11584:32;;11608:3;11584:32;;;;11613:2;11584:32;;;;;;;;11321:497::o;11531:280::-;11638:5;11647:1;11638:10;11634:177;;-1:-1:-1;;11686:31:0;;;;;;;;11705:3;11686:31;;11710:2;11686:31;;;;11714:2;11686:31;;;;;;;;11321:497::o;11634:177::-;-1:-1:-1;;11766:33:0;;;;;;;;11785:3;11766:33;;11790:3;11766:33;;;;11795:3;11766:33;;;;;;;;11321:497::o;11830:635::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;12023:15:0;12112:3;12096:6;:11;;;-1:-1:-1;;;;;12088:20:0;12072:6;:12;;;-1:-1:-1;;;;;12064:21:0;12050:6;:10;;;-1:-1:-1;;;;;12042:19:0;:43;;;;:::i;:::-;:66;;;;:::i;:::-;12041:74;;;;:::i;:::-;12023:92;;12220:3;12210:7;12197:5;:9;;;12192:1;12179:6;:10;;;:14;;;;:::i;:::-;12164:11;;:30;;;;:::i;:::-;:42;;;;:::i;:::-;-1:-1:-1;;;;;12156:51:0;:61;;;;:::i;:::-;:67;;;;:::i;:::-;12138:9;;:86;;;;;;:::i;:::-;-1:-1:-1;;;;;12126:98:0;;;12314:11;;;;;12294:12;;;;12339:3;;12329:7;;12294:16;;12309:1;;12294:16;:::i;:::-;12277:7;:13;;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;-1:-1:-1;;;;;12269:57:0;:67;;;;:::i;:::-;:73;;;;:::i;:::-;12249:94;;:5;:11;;;:94;;;;:::i;:::-;-1:-1:-1;;;;;12235:108:0;:11;;;:108;12429:10;;;;;12410:11;;;;12453:3;;12443:7;;12410:15;;12424:1;;12410:15;:::i;:::-;12394:7;:12;;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;-1:-1:-1;;;;;12386:54:0;:64;;;;:::i;:::-;:70;;;;:::i;:::-;12367:90;;:5;:10;;;:90;;;;:::i;:::-;-1:-1:-1;;;;;12354:103:0;:10;;;:103;-1:-1:-1;12354:5:0;11830:635;-1:-1:-1;;;11830:635:0:o;9819:489::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9935:5:0;9944:1;9935:10;9931:370;;-1:-1:-1;;9979:30:0;;;;;;;;;;;10002:2;9979:30;;;;10006:2;9979:30;;;;;;;;9819:489::o;9931:370::-;10031:5;10040:1;10031:10;10027:274;;-1:-1:-1;;10080:30:0;;;;;;;;10099:2;10080:30;;10103:2;10080:30;;;;10107:2;10080:30;;;;;;;;9819:489::o;10027:274::-;10132:5;10141:1;10132:10;10128:173;;-1:-1:-1;;10180:33:0;;;;;;;;10199:3;10180:33;;10204:3;10180:33;;;;10209:3;10180:33;;;;;;;;9819:489::o;10128:173::-;-1:-1:-1;;10262:27:0;;;;;;;;-1:-1:-1;10262:27:0;;;;;;;;;;;;;;;;;9819:489::o;10316:496::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10434:5:0;10443:1;10434:10;10430:375;;-1:-1:-1;;10478:31:0;;;;;;;;10497:3;10478:31;;10502:2;10478:31;;;;10506:2;10478:31;;;;;;;;10316:496::o;10430:375::-;10531:5;10540:1;10531:10;10527:278;;-1:-1:-1;;10580:31:0;;;;;;;;10599:2;10580:31;;10603:3;10580:31;;;;10608:2;10580:31;;;;;;;;10316:496::o;10527:278::-;10633:5;10642:1;10633:10;10629:176;;-1:-1:-1;;10681:33:0;;;;;;;;10700:3;10681:33;;10705:3;10681:33;;;;10710:3;10681:33;;;;;;;;10316:496::o;10629:176::-;-1:-1:-1;;10763:30:0;;;;;;;;10782:2;10763:30;;;;;;;10790:2;10763:30;;;;;;;;10316:496::o;6282:723::-;6338:13;6559:5;6568:1;6559:10;6555:53;;-1:-1:-1;;6586:10:0;;;;;;;;;;;;-1:-1:-1;;;6586:10:0;;;;;6282:723::o;6555:53::-;6633:5;6618:12;6674:78;6681:9;;6674:78;;6707:8;;;;:::i;:::-;;-1:-1:-1;6730:10:0;;-1:-1:-1;6738:2:0;6730:10;;:::i;:::-;;;6674:78;;;6762:19;6794:6;-1:-1:-1;;;;;6784:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6784:17:0;;6762:39;;6812:154;6819:10;;6812:154;;6846:11;6856:1;6846:11;;:::i;:::-;;-1:-1:-1;6915:10:0;6923:2;6915:5;:10;:::i;:::-;6902:24;;:2;:24;:::i;:::-;6889:39;;6872:6;6879;6872:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6872:56:0;;;;;;;;-1:-1:-1;6943:11:0;6952:2;6943:11;;:::i;:::-;;;6812:154;;12930:258;13004:13;13069:29;13077:5;:9;;;-1:-1:-1;;;;;13069:18:0;:27;:29::i;:::-;13105:31;13113:5;:11;;;-1:-1:-1;;;;;13105:20:0;:29;:31::i;:::-;13143:30;13151:5;:10;;;-1:-1:-1;;;;;13143:19:0;:28;:30::i;:::-;13044:135;;;;;;;;;;:::i;13200:254::-;13270:13;13349:16;:5;:14;:16::i;:::-;13372:17;:6;:15;:17::i;:::-;13310:135;;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:282::-;900:3;938:5;932:12;965:6;960:3;953:19;981:76;1050:6;1043:4;1038:3;1034:14;1027:4;1020:5;1016:16;981:76;:::i;:::-;1111:2;1090:15;-1:-1:-1;;1086:29:1;1077:39;;;;1118:4;1073:50;;847:282;-1:-1:-1;;847:282:1:o;1134:231::-;1283:2;1272:9;1265:21;1246:4;1303:56;1355:2;1344:9;1340:18;1332:6;1303:56;:::i;1370:180::-;1429:6;1482:2;1470:9;1461:7;1457:23;1453:32;1450:52;;;1498:1;1495;1488:12;1450:52;-1:-1:-1;1521:23:1;;1370:180;-1:-1:-1;1370:180:1:o;1763:173::-;1831:20;;-1:-1:-1;;;;;1880:31:1;;1870:42;;1860:70;;1926:1;1923;1916:12;1941:254;2009:6;2017;2070:2;2058:9;2049:7;2045:23;2041:32;2038:52;;;2086:1;2083;2076:12;2038:52;2109:29;2128:9;2109:29;:::i;:::-;2099:39;2185:2;2170:18;;;;2157:32;;-1:-1:-1;;;1941:254:1:o;2382:328::-;2459:6;2467;2475;2528:2;2516:9;2507:7;2503:23;2499:32;2496:52;;;2544:1;2541;2534:12;2496:52;2567:29;2586:9;2567:29;:::i;:::-;2557:39;;2615:38;2649:2;2638:9;2634:18;2615:38;:::i;:::-;2605:48;;2700:2;2689:9;2685:18;2672:32;2662:42;;2382:328;;;;;:::o;2715:186::-;2774:6;2827:2;2815:9;2806:7;2802:23;2798:32;2795:52;;;2843:1;2840;2833:12;2795:52;2866:29;2885:9;2866:29;:::i;3177:847::-;3386:13;;3368:32;;3447:4;3435:17;;;3429:24;-1:-1:-1;;;;;3528:21:1;;;3506:20;;;3499:51;3610:4;3598:17;;;3592:24;3588:33;;3566:20;;;3559:63;3682:4;3670:17;;;3664:24;3660:33;;3638:20;;;3631:63;3754:4;3742:17;;;3736:24;3732:33;;3710:20;;;3703:63;3815:4;3803:17;;;3797:24;3018:12;;3014:21;;3870:20;;;3002:34;;;;3078:16;;;3072:23;3068:32;;3052:14;;;3045:56;3143:16;;3137:23;3133:32;3117:14;;;3110:56;3355:3;3340:19;;;-1:-1:-1;3940:4:1;3928:17;;3922:24;3018:12;;-1:-1:-1;;;;;3014:21:1;;;4010:6;3995:22;;3002:34;3089:4;3078:16;;3072:23;3068:32;;3052:14;;;3045:56;3154:4;3143:16;;3137:23;3133:32;3117:14;;;3110:56;3955:63;;3177:847;;;;:::o;4029:347::-;4094:6;4102;4155:2;4143:9;4134:7;4130:23;4126:32;4123:52;;;4171:1;4168;4161:12;4123:52;4194:29;4213:9;4194:29;:::i;:::-;4184:39;;4273:2;4262:9;4258:18;4245:32;4320:5;4313:13;4306:21;4299:5;4296:32;4286:60;;4342:1;4339;4332:12;4286:60;4365:5;4355:15;;;4029:347;;;;;:::o;4381:127::-;4442:10;4437:3;4433:20;4430:1;4423:31;4473:4;4470:1;4463:15;4497:4;4494:1;4487:15;4513:1138;4608:6;4616;4624;4632;4685:3;4673:9;4664:7;4660:23;4656:33;4653:53;;;4702:1;4699;4692:12;4653:53;4725:29;4744:9;4725:29;:::i;:::-;4715:39;;4773:38;4807:2;4796:9;4792:18;4773:38;:::i;:::-;4763:48;;4858:2;4847:9;4843:18;4830:32;4820:42;;4913:2;4902:9;4898:18;4885:32;-1:-1:-1;;;;;4977:2:1;4969:6;4966:14;4963:34;;;4993:1;4990;4983:12;4963:34;5031:6;5020:9;5016:22;5006:32;;5076:7;5069:4;5065:2;5061:13;5057:27;5047:55;;5098:1;5095;5088:12;5047:55;5134:2;5121:16;5156:2;5152;5149:10;5146:36;;;5162:18;;:::i;:::-;5237:2;5231:9;5205:2;5291:13;;-1:-1:-1;;5287:22:1;;;5311:2;5283:31;5279:40;5267:53;;;5335:18;;;5355:22;;;5332:46;5329:72;;;5381:18;;:::i;:::-;5421:10;5417:2;5410:22;5456:2;5448:6;5441:18;5496:7;5491:2;5486;5482;5478:11;5474:20;5471:33;5468:53;;;5517:1;5514;5507:12;5468:53;5573:2;5568;5564;5560:11;5555:2;5547:6;5543:15;5530:46;5618:1;5613:2;5608;5600:6;5596:15;5592:24;5585:35;5639:6;5629:16;;;;;;;4513:1138;;;;;;;:::o;5656:260::-;5724:6;5732;5785:2;5773:9;5764:7;5760:23;5756:32;5753:52;;;5801:1;5798;5791:12;5753:52;5824:29;5843:9;5824:29;:::i;:::-;5814:39;;5872:38;5906:2;5895:9;5891:18;5872:38;:::i;:::-;5862:48;;5656:260;;;;;:::o;5921:380::-;6000:1;5996:12;;;;6043;;;6064:61;;6118:4;6110:6;6106:17;6096:27;;6064:61;6171:2;6163:6;6160:14;6140:18;6137:38;6134:161;;6217:10;6212:3;6208:20;6205:1;6198:31;6252:4;6249:1;6242:15;6280:4;6277:1;6270:15;6134:161;;5921:380;;;:::o;7712:127::-;7773:10;7768:3;7764:20;7761:1;7754:31;7804:4;7801:1;7794:15;7828:4;7825:1;7818:15;7844:168;7917:9;;;7948;;7965:15;;;7959:22;;7945:37;7935:71;;7986:18;;:::i;8371:125::-;8436:9;;;8457:10;;;8454:36;;;8470:18;;:::i;8853:128::-;8920:9;;;8941:11;;;8938:37;;;8955:18;;:::i;9603:135::-;9642:3;9663:17;;;9660:43;;9683:18;;:::i;:::-;-1:-1:-1;9730:1:1;9719:13;;9603:135::o;10511:127::-;10572:10;10567:3;10563:20;10560:1;10553:31;10603:4;10600:1;10593:15;10627:4;10624:1;10617:15;10643:112;10675:1;10701;10691:35;;10706:18;;:::i;:::-;-1:-1:-1;10740:9:1;;10643:112::o;10760:127::-;10821:10;10816:3;10812:20;10809:1;10802:31;10852:4;10849:1;10842:15;10876:4;10873:1;10866:15;10892:500;-1:-1:-1;;;;;11161:15:1;;;11143:34;;11213:15;;11208:2;11193:18;;11186:43;11260:2;11245:18;;11238:34;;;11308:3;11303:2;11288:18;;11281:31;;;11086:4;;11329:57;;11366:19;;11358:6;11329:57;:::i;11397:249::-;11466:6;11519:2;11507:9;11498:7;11494:23;11490:32;11487:52;;;11535:1;11532;11525:12;11487:52;11567:9;11561:16;11586:30;11610:5;11586:30;:::i;11651:198::-;11693:3;11731:5;11725:12;11746:65;11804:6;11799:3;11792:4;11785:5;11781:16;11746:65;:::i;:::-;11827:16;;;;;11651:198;-1:-1:-1;;11651:198:1:o;11854:1928::-;-1:-1:-1;;;12806:43:1;;12872:13;;12788:3;;12894:74;12872:13;12957:1;12948:11;;12941:4;12929:17;;12894:74;:::i;:::-;-1:-1:-1;;;13027:1:1;12987:16;;;13019:10;;;13012:66;13107:34;13102:2;13094:11;;13087:55;-1:-1:-1;;;13166:2:1;13158:11;;13151:29;-1:-1:-1;;;13204:2:1;13196:11;;13189:69;13283:13;;13305:76;13283:13;13367:2;13359:11;;13352:4;13340:17;;13305:76;:::i;:::-;-1:-1:-1;;;13441:2:1;13400:17;;;;13433:11;;;13426:59;13514:28;13509:2;13501:11;;13494:49;13568:13;;13590:77;13568:13;13652:3;13644:12;;13637:4;13625:17;;13590:77;:::i;:::-;-1:-1:-1;;;13727:3:1;13686:17;;;;13719:12;;;13712:36;13772:3;13764:12;;11854:1928;-1:-1:-1;;;;;11854:1928:1:o;13787:496::-;13966:3;14004:6;13998:13;14020:66;14079:6;14074:3;14067:4;14059:6;14055:17;14020:66;:::i;:::-;14149:13;;14108:16;;;;14171:70;14149:13;14108:16;14218:4;14206:17;;14171:70;:::i;:::-;14257:20;;13787:496;-1:-1:-1;;;;13787:496:1:o;14288:157::-;14318:1;14352:4;14349:1;14345:12;14376:3;14366:37;;14383:18;;:::i;:::-;14435:3;14428:4;14425:1;14421:12;14417:22;14412:27;;;14288:157;;;;:::o;14576:1002::-;14661:12;;14626:3;;14716:1;14736:18;;;;14789;;;;14816:61;;14870:4;14862:6;14858:17;14848:27;;14816:61;14896:2;14944;14936:6;14933:14;14913:18;14910:38;14907:161;;14990:10;14985:3;14981:20;14978:1;14971:31;15025:4;15022:1;15015:15;15053:4;15050:1;15043:15;14907:161;15084:18;15111:133;;;;15258:1;15253:319;;;;15077:495;;15111:133;-1:-1:-1;;15144:24:1;;15132:37;;15217:14;;15210:22;15198:35;;15189:45;;;-1:-1:-1;15111:133:1;;15253:319;14523:1;14516:14;;;14560:4;14547:18;;15347:1;15361:165;15375:6;15372:1;15369:13;15361:165;;;15453:14;;15440:11;;;15433:35;15496:16;;;;15390:10;;15361:165;;;15365:3;;15555:6;15550:3;15546:16;15539:23;;15077:495;;;;;;;14576:1002;;;;:::o;15583:770::-;16006:3;16034:38;16068:3;16060:6;16034:38;:::i;:::-;-1:-1:-1;;;16088:2:1;16081:20;16120:45;16162:1;16158:2;16154:10;16146:6;16120:45;:::i;:::-;16110:55;;-1:-1:-1;;;16181:2:1;16174:16;16219:6;16213:13;16235:73;16301:6;16297:1;16293:2;16289:10;16282:4;16274:6;16270:17;16235:73;:::i;:::-;16328:15;16345:1;16324:23;;15583:770;-1:-1:-1;;;;;15583:770:1:o;16358:2240::-;17353:66;17348:3;17341:79;17323:3;17439:47;17482:2;17477:3;17473:12;17465:6;17439:47;:::i;:::-;17506:66;17495:78;;-1:-1:-1;;;17597:2:1;17589:11;;17582:38;17639:46;17681:2;17673:11;;17665:6;17639:46;:::i;:::-;17705:66;17694:78;;-1:-1:-1;;;17796:2:1;17788:11;;17781:33;17629:56;-1:-1:-1;17833:46:1;17875:2;17867:11;;17859:6;17833:46;:::i;:::-;17899:66;17888:78;;-1:-1:-1;;;17990:2:1;17982:11;;17975:43;17823:56;-1:-1:-1;18037:46:1;18079:2;18071:11;;18063:6;18037:46;:::i;:::-;18027:56;;18103:66;18099:2;18092:78;18198:28;18193:3;18189:38;18256:2;18251;18247;18243:11;18236:23;18288:6;18282:13;18304:72;18369:6;18364:2;18360;18356:11;18351:2;18343:6;18339:15;18304:72;:::i;:::-;18439:66;18434:2;18395:15;;;;18426:11;;;18419:87;18530:2;18522:11;;18515:23;18554:38;18588:2;18580:11;;18572:6;18554:38;:::i;:::-;18547:45;16358:2240;-1:-1:-1;;;;;;;;;16358:2240:1:o;18603:1377::-;19133:3;19171:6;19165:13;19187:66;19246:6;19241:3;19234:4;19226:6;19222:17;19187:66;:::i;:::-;19284:6;19279:3;19275:16;19262:29;;19314:34;19307:5;19300:49;19383:32;19376:4;19369:5;19365:16;19358:58;19447:6;19441:13;19463:79;19533:8;19528:2;19521:5;19517:14;19510:4;19502:6;19498:17;19463:79;:::i;:::-;19610:34;19605:2;19561:20;;;;19597:11;;;19590:55;19674:34;19669:2;19661:11;;19654:55;-1:-1:-1;;;19733:3:1;19725:12;;19718:26;19769:13;;19791:77;19769:13;19853:3;19845:12;;19838:4;19826:17;;19791:77;:::i;:::-;-1:-1:-1;;;19928:3:1;19887:17;;;;19920:12;;;19913:33;19970:3;19962:12;;18603:1377;-1:-1:-1;;;;;18603:1377:1:o;19985:120::-;20025:1;20051;20041:35;;20056:18;;:::i;:::-;-1:-1:-1;20090:9:1;;19985:120::o;20110:191::-;20141:1;-1:-1:-1;;;;;20212:2:1;20209:1;20205:10;20234:3;20224:37;;20241:18;;:::i;:::-;20279:10;;20275:20;;;;;20110:191;-1:-1:-1;;20110:191:1:o;20306:180::-;-1:-1:-1;;;;;20411:10:1;;;20423;;;20407:27;;20446:11;;;20443:37;;;20460:18;;:::i;20491:183::-;-1:-1:-1;;;;;20610:10:1;;;20598;;;20594:27;;20633:12;;;20630:38;;;20648:18;;:::i;20679:1286::-;-1:-1:-1;;;21335:3:1;21328:19;21310:3;21376:6;21370:13;21392:74;21459:6;21455:1;21450:3;21446:11;21439:4;21431:6;21427:17;21392:74;:::i;:::-;21494:6;21489:3;21485:16;21475:26;;-1:-1:-1;;;21551:2:1;21547:1;21543:2;21539:10;21532:22;21585:6;21579:13;21601:75;21667:8;21663:1;21659:2;21655:10;21648:4;21640:6;21636:17;21601:75;:::i;:::-;21736:1;21695:17;;21728:10;;;21721:22;21768:13;;21790:75;21768:13;21852:1;21844:10;;21837:4;21825:17;;21790:75;:::i;:::-;-1:-1:-1;;;21925:1:1;21884:17;;;;21917:10;;;21910:23;21957:1;21949:10;;20679:1286;-1:-1:-1;;;;;20679:1286:1:o;21970:1028::-;-1:-1:-1;;;22477:3:1;22470:33;22452:3;22532:6;22526:13;22548:75;22616:6;22611:2;22606:3;22602:12;22595:4;22587:6;22583:17;22548:75;:::i;:::-;-1:-1:-1;;;22682:2:1;22642:16;;;22674:11;;;22667:24;22716:13;;22738:76;22716:13;22800:2;22792:11;;22785:4;22773:17;;22738:76;:::i;:::-;22879:34;22874:2;22833:17;;;;22866:11;;;22859:55;-1:-1:-1;;;22938:2:1;22930:11;;22923:42;22989:2;22981:11;;21970:1028;-1:-1:-1;;;;21970:1028:1:o
Swarm Source
ipfs://4324ba102cb78a071214ff5f1046263bc20ccdf46af05216a50c10158c094c45
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,306.39 | 0.302 | $998.53 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.