Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
35 TBS
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TBSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TwoBitSnakes
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-18 */ // SPDX-License-Identifier: MIT // File: contracts/ISnakeDetail.sol /** llllllllllllllllllllllllllllllllllllllllllllllllldkOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd ................................................':oddddddddddddddddddddddddddddddddddddddddddddddddd '''''''''''''''''''''''''''''''''''''''''''''''''cdddddddddddddddddddddddddddddddddddddddddddddddddd */ pragma solidity ^0.8.0; interface ISnakeDetail { struct Color { uint8 red; uint8 green; uint8 blue; } struct Detail { uint256 timestamp; uint8 nameIndex; uint8 poisonIndex; uint8 placeIndex; uint8 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 Snake /// @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.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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.2 // 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 { // Reference type for token approval. 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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); } } // File: contracts/TwoBitSnakes.sol 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 constant snakePrice = 0.003 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 = 2; uint256 private _seed; bool public paused = true; // Mapping of TokenIds to generated snake Detail mapping(uint256 => ISnakeDetail.Detail) private _tokenIdToSnakeDetails; 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; } /// @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":"ApproveToCaller","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":"tokenId","type":"uint256"}],"name":"details","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint8","name":"nameIndex","type":"uint8"},{"internalType":"uint8","name":"poisonIndex","type":"uint8"},{"internalType":"uint8","name":"placeIndex","type":"uint8"},{"internalType":"uint8","name":"speciesIndex","type":"uint8"},{"components":[{"internalType":"uint8","name":"red","type":"uint8"},{"internalType":"uint8","name":"green","type":"uint8"},{"internalType":"uint8","name":"blue","type":"uint8"}],"internalType":"struct ISnakeDetail.Color","name":"topColor","type":"tuple"},{"components":[{"internalType":"uint8","name":"red","type":"uint8"},{"internalType":"uint8","name":"green","type":"uint8"},{"internalType":"uint8","name":"blue","type":"uint8"}],"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
600c805460ff19166001179055600661010090815265283cba3437b760d11b610120526080908152600b6101409081526a477265656e20536e616b6560a81b6101605260a052600a6101809081526910dbdc1c195c9a19585960b21b6101a05260c05261020060405260056101c090815264436f62726160d81b6101e05260e0526200009090600e90600462000789565b506040805160c081018252600160808201818152603160f81b60a0840152825282518084018452818152601960f91b6020828101919091528084019190915283518085018552828152603360f81b81830152838501528351808501909452908352600d60fa1b9083015260608101919091526200011290601290600462000789565b5060408051610280810182526007610240820181815266537373736b796560c81b610260840152825282518084018452600a8082526914dcdcdcd8d85c9b195d60b21b602083810191909152808501929092528451808601865260088082526729b9b9b9b2bb32b760c11b8285015285870191909152855180870187528181526729b9b9b9b637b0b760c11b8185015260608601528551808701875260098082526853737373656c656e6160b81b82860152608087019190915286518088018852858152665373737361726160c81b8186015260a0870152865180880188528581526629b9b9b9ba30b960c91b8186015260c08701528651808801885282815267537373737461637960c01b8186015260e0870152865180880188528381526953737373746f726d696560b01b81860152610100870152865180880188529081526829b9b9b9ba32bb32b760b91b81850152610120860152855180870187528481526629b9b9b9b2b0b760c91b818501526101408601528551808701875281815267537373736c61646560c01b81850152610160860152855180870187529182526953737373616e74616e6160b01b82840152610180850191909152845180860186529283526614dcdcdcd85d5b60ca1b838301526101a084019290925283518085018552600681526553737373616d60d01b818301526101c0840152835180850185529182526714dcdcdcd8dbdd1d60c21b828201526101e083019190915282518084018452600b8082526a5373737361737373756b6560a81b82840152610200840191909152835180850190945283526a5373737374657068616e6f60a81b9083015261022081019190915262000390906016906012620007e0565b506040805161028081018252600b61024082018181526a5373737368616e6768616960a81b610260840152825282518084018452600e8082526d53737373616e20416e746f6e696f60901b6020838101919091528085019290925284518086018652600a8082526953737373656174746c6560b01b82850152858701919091528551808701875260088082526714dcdcdcd95bdd5b60c21b82860152606087019190915286518088018852600c8082526b53737373616f205061756c6f60a01b828701526080880191909152875180890189526009808252685373737379646e657960b81b8288015260a08901919091528851808a018a528281526b53737373616e20446965676f60a01b8188015260c08901528851808a018a52601581527f5373737361696e742050657465727373736275726700000000000000000000008188015260e08901528851808a018a529283526714dcdcdcdd5c985d60c21b83870152610100880192909252875180890189528181526b53737373696e6761706f726560a01b818701526101208801528751808901895283815269537373736170706f726f60b01b81870152610140880152875180890189529081526b53737373746f636b686f6c6d60a01b8186015261016087015286518088018852918252690a6e6e6e6d0c2e4d4c2d60b31b82850152610180860191909152855180870187528481526a0a6e6e6e6ead8e8c2dcc2d60ab1b818501526101a086015285518087018752600781526653737373616c6560c81b818501526101c0860152855180870187529384526a53737373616c74696c6c6f60a81b848401526101e08501939093528451808601865292835268537373736f6b6f746f60b81b8383015261020084019290925283518085019094529083526d22b61029b9b9b9b0b63b30b237b960911b9083015261022081019190915262000652906028906012620007e0565b503480156200066057600080fd5b50604080518082018252600e81526d54776f2042697420536e616b657360901b60208083019182528351808501909452600384526254425360e81b908401528151919291620006b29160029162000825565b508051620006c890600390602084019062000825565b50506000805550620006da3362000737565b600160098190553390620006ef90436200092a565b60405160609290921b6001600160601b031916602083015240603482015242605482015260740160408051601f198184030181529190528051602090910120600b556200098d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8260048101928215620007ce579160200282015b82811115620007ce5782518051620007bd91849160209091019062000825565b50916020019190600101906200079d565b50620007dc929150620008b0565b5090565b8260128101928215620007ce579160200282015b82811115620007ce57825180516200081491849160209091019062000825565b5091602001919060010190620007f4565b828054620008339062000950565b90600052602060002090601f016020900481019282620008575760008555620008a2565b82601f106200087257805160ff1916838001178555620008a2565b82800160010185558215620008a2579182015b82811115620008a257825182559160200191906001019062000885565b50620007dc929150620008d1565b80821115620007dc576000620008c78282620008e8565b50600101620008b0565b5b80821115620007dc5760008155600101620008d2565b508054620008f69062000950565b6000825580601f1062000907575050565b601f016020900490600052602060002090810190620009279190620008d1565b50565b6000828210156200094b57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200096557607f821691505b602082108114156200098757634e487b7160e01b600052602260045260246000fd5b50919050565b612b6d806200099d6000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a0712d681161006f578063a0712d6814610391578063a22cb465146103a4578063b88d4fde146103c4578063c87b56dd146103e4578063e985e9c514610404578063f2fde38b1461044d57600080fd5b80636352211e146102dc57806370a08231146102fc578063715018a61461031c5780638da5cb5b1461033157806395d89b411461034f578063a005ec7a1461036457600080fd5b806323b872dd1161010857806323b872dd1461023d57806337a66d851461025d5780633ccfd60b1461027257806342842e0e1461028757806349360b4a146102a75780635c975abb146102c257600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df578063180c42a21461020157806318160ddd14610224575b600080fd5b34801561015c57600080fd5b5061017061016b366004612005565b61046d565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104bf565b60405161017c919061207a565b3480156101b357600080fd5b506101c76101c236600461208d565b610551565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046120bd565b610595565b005b34801561020d57600080fd5b50610216600281565b60405190815260200161017c565b34801561023057600080fd5b5060015460005403610216565b34801561024957600080fd5b506101ff6102583660046120e7565b610635565b34801561026957600080fd5b506101ff6107c6565b34801561027e57600080fd5b506101ff6107e2565b34801561029357600080fd5b506101ff6102a23660046120e7565b610819565b3480156102b357600080fd5b50610216660aa87bee53800081565b3480156102ce57600080fd5b50600c546101709060ff1681565b3480156102e857600080fd5b506101c76102f736600461208d565b610839565b34801561030857600080fd5b50610216610317366004612123565b610844565b34801561032857600080fd5b506101ff610893565b34801561033d57600080fd5b506008546001600160a01b03166101c7565b34801561035b57600080fd5b5061019a6108a7565b34801561037057600080fd5b5061038461037f36600461208d565b6108b6565b60405161017c919061213e565b6101ff61039f36600461208d565b6109cf565b3480156103b057600080fd5b506101ff6103bf3660046121e4565b610d7a565b3480156103d057600080fd5b506101ff6103df366004612236565b610e10565b3480156103f057600080fd5b5061019a6103ff36600461208d565b610e5a565b34801561041057600080fd5b5061017061041f366004612312565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561045957600080fd5b506101ff610468366004612123565b610f61565b60006301ffc9a760e01b6001600160e01b03198316148061049e57506380ac58cd60e01b6001600160e01b03198316145b806104b95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104ce90612345565b80601f01602080910402602001604051908101604052809291908181526020018280546104fa90612345565b80156105475780601f1061051c57610100808354040283529160200191610547565b820191906000526020600020905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b600061055c82610fd7565b610579576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105a082610839565b9050336001600160a01b038216146105d9576105bc813361041f565b6105d9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061064082610ffe565b9050836001600160a01b0316816001600160a01b0316146106735760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106c0576106a3863361041f565b6106c057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e757604051633a954ecd60e21b815260040160405180910390fd5b80156106f257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661077d576001840160008181526004602052604090205461077b57600054811461077b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107ce611066565b600c805460ff19811660ff90911615179055565b6107ea611066565b60405133904780156108fc02916000818181858888f19350505050158015610816573d6000803e3d6000fd5b50565b61083483838360405180602001604052806000815250610e10565b505050565b60006104b982610ffe565b60006001600160a01b03821661086d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61089b611066565b6108a560006110c0565b565b6060600380546104ce90612345565b6108be611f86565b6108c782610fd7565b80156108d45750610fa082105b6109195760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064015b60405180910390fd5b506000908152600d6020908152604091829020825160e08101845281548152600182015460ff8082168386015261010080830482168488015262010000808404831660608087019190915263010000009094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c082015290565b60026009541415610a225760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610910565b6002600955600c5460ff1615610a7a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610910565b600081118015610a8b575060028111155b610acd5760405162461bcd60e51b8152602060048201526013602482015272145d585b9d1a5d1e481a5cc81a5b9d985b1a59606a1b6044820152606401610910565b610ade81660aa87bee538000612396565b341015610b2d5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610910565b610fa081610b3a600a5490565b610b4491906123b5565b1115610b925760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20736e616b65732065786365656465640000000000000000006044820152606401610910565b6001600b54901c33600143610ba791906123cd565b4042604051602001610be4949392919093845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b60408051601f198184030181529190528051602090910120600b5560005b81811015610d71576000610c15600a5490565b9050610c22336001611112565b610c30600a80546001019055565b610c3c600b5482611130565b6000828152600d602090815260409182902083518155838201516001808301805487870151606089015160808a015160ff96871661ffff199485161761010093881684021763ffff0000191662010000928816830263ff0000001916176301000000918816919091021790935560a08901518051600288018054838b0151938c015162ff000019938a1691871691909117938916850293909317821692881686029290921790915560c09099015180516003909701805498820151919099015196861697909216969096179084169095029490941790951691169091021790558390610d299084906123b5565b1015610d5e57600b546040805160019290921c60208301520160408051601f198184030181529190528051602090910120600b555b5080610d69816123e4565b915050610c02565b50506001600955565b6001600160a01b038216331415610da45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e1b848484610635565b6001600160a01b0383163b15610e5457610e37848484846112b9565b610e54576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e6582610fd7565b610ea55760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610910565b6000828152600d6020908152604091829020825160e08101845281548152600182015460ff8082168386015261010080830482168488015262010000808404831660608087019190915263010000009094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c08201526104b990836113b1565b610f69611066565b6001600160a01b038116610fce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b610816816110c0565b60008054821080156104b9575050600090815260046020526040902054600160e01b161590565b60008160005481101561104d57600081815260046020526040902054600160e01b811661104b575b80611044575060001901600081815260046020526040902054611026565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610910565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61112c828260405180602001604052806000815250611462565b5050565b611138611f86565b60008360405160200161114d91815260200190565b60408051601f198184030181529190529050600061116c601485612415565b6111779060016123b5565b905060006111a78361118a8460096123b5565b8151811061119a5761119a612429565b016020015160f81c6114cf565b90506040518060e001604052804281526020016012858560026111ca91906123b5565b815181106111da576111da612429565b01602001516111ec919060f81c612415565b60ff16815260200161120985858151811061119a5761119a612429565b60ff16815260200160128561121f8660086123b5565b8151811061122f5761122f612429565b0160200151611241919060f81c612415565b60ff90811682528316602082015260400161127d856112618660066123b5565b61126c8760036123b5565b6112778860046123b5565b87611524565b81526020016112ad856112918660056123b5565b61129c8760076123b5565b6112a78860016123b5565b876115d2565b90529695505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112ee90339089908890889060040161243f565b602060405180830381600087803b15801561130857600080fd5b505af1925050508015611338575060408051601f3d908101601f1916820190925261133591810190612472565b60015b611393573d808015611366576040519150601f19603f3d011682016040523d82523d6000602084013e61136b565b606091505b50805161138b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606113ed60408051808201909152601d81527f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015290565b61143a6113fa8585611604565b61140386611657565b61141461140f8861170a565b611744565b604051602001611426939291906124ab565b604051602081830303815290604052611744565b60405160200161144b9291906125c1565b604051602081830303815290604052905092915050565b61146c83836118aa565b6001600160a01b0383163b15610834576000548281035b61149660008683806001019450866112b9565b6114b3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114835781600054146114c857600080fd5b5050505050565b6000806114dd6064846125f0565b9050602e8160ff16106114f35750600092915050565b60108160ff16106115075750600192915050565b60018160ff161061151b5750600292915050565b50600392915050565b60408051606081018252600080825260208201819052918101919091526115c861154d836119a1565b61155684611a66565b60405180606001604052808a8a8151811061157357611573612429565b0160209081015160f81c82528b519101908b908a90811061159657611596612429565b0160209081015160f81c82528b519101908b90899081106115b9576115b9612429565b016020015160f81c9052611b26565b9695505050505050565b60408051606081018252600080825260208201819052918101919091526115c86115fb83611ca2565b61155684611d60565b60606016836020015160ff166012811061162057611620612429565b016028846060015160ff166012811061163b5761163b612429565b0161164584611e1f565b60405160200161144b939291906126ac565b6060600e826080015160ff166004811061167357611673612429565b016012836040015160ff166004811061168e5761168e612429565b016016846020015160ff16601281106116a9576116a9612429565b016028856060015160ff16601281106116c4576116c4612429565b016116d28660a00151611f1d565b6116df8760c00151611f1d565b6040516020016116f4969594939291906126fb565b6040516020818303038152906040529050919050565b606061171861043880611f61565b6117258360a00151611f1d565b6117328460c00151611f1d565b6040516020016116f49392919061287e565b606081516000141561176457505060408051602081019091526000815290565b6000604051806060016040528060408152602001612af8604091399050600060038451600261179391906123b5565b61179d9190612983565b6117a8906004612396565b905060006117b78260206123b5565b67ffffffffffffffff8111156117cf576117cf612220565b6040519080825280601f01601f1916602001820160405280156117f9576020820181803683370190505b509050818152600183018586518101602084015b81831015611865576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161180d565b60038951066001811461187f57600281146118905761189c565b613d3d60f01b60011983015261189c565b603d60f81b6000198301525b509398975050505050505050565b600054816118cb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461197a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611942565b508161199857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6040805160608101825260008082526020820181905291810191909152816119e65750506040805160608101825260ae81526097602082015260779181019190915290565b8160011415611a1257505060408051606081018252606d815260c16020820152602f9181019190915290565b8160021415611a3e575050604080516060810182526053815260266020820152602c9181019190915290565b505060408051606081018252608b81526088602082015260629181019190915290565b919050565b604080516060810182526000808252602082018190529181019190915281611aab5750506040805160608101825260e1815260c46020820152609b9181019190915290565b8160011415611ad7575050604080516060810182526090815260ff6020820152603e9181019190915290565b8160021415611b035750506040805160608101825260868152603e602082015260489181019190915290565b50506040805160608101825260be815260bb602082015260869181019190915290565b604080516060810182526000808252602082018190529181019190915260006064836040015160ff16846020015160ff16856000015160ff16611b6991906123b5565b611b7391906123b5565b611b7d9190612415565b9050606481866000015160028660000151611b9891906125f0565b8751611ba49190612997565b611bae91906129bc565b60ff16611bbb9190612396565b611bc59190612983565b8551611bd19190612997565b60ff168252602080860151908401516064918391611bf1906002906125f0565b8760200151611c009190612997565b611c0a91906129bc565b60ff16611c179190612396565b611c219190612983565b8560200151611c309190612997565b60ff166020830152604080860151908401516064918391611c53906002906125f0565b8760400151611c629190612997565b611c6c91906129bc565b60ff16611c799190612396565b611c839190612983565b8560400151611c929190612997565b60ff166040830152509392505050565b604080516060810182526000808252602082018190529181019190915281611ce65750506040805160608101825281815260266020820152600e9181019190915290565b8160011415611d1257505060408051606081018252602d8152604f602082015260149181019190915290565b8160021415611d3e57505060408051606081018252609281526074602082015260679181019190915290565b5050604080516060810182526000808252602082018190529181019190915290565b604080516060810182526000808252602082018190529181019190915281611da5575050604080516060810182526077815260516020820152602d9181019190915290565b8160011415611dd157505060408051606081018252604a81526083602082015260219181019190915290565b8160021415611dfd5750506040805160608101825260c58152609d6020820152608b9181019190915290565b5050604080516060810182526012808252602082015260139181019190915290565b606081611e435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e6d5780611e57816123e4565b9150611e669050600a83612983565b9150611e47565b60008167ffffffffffffffff811115611e8857611e88612220565b6040519080825280601f01601f191660200182016040528015611eb2576020820181803683370190505b5090505b84156113a957611ec76001836123cd565b9150611ed4600a86612415565b611edf9060306123b5565b60f81b818381518110611ef457611ef4612429565b60200101906001600160f81b031916908160001a905350611f16600a86612983565b9450611eb6565b6060611f2f826000015160ff16611e1f565b611f3f836020015160ff16611e1f565b611f4f846040015160ff16611e1f565b6040516020016116f4939291906129df565b6060611f6c83611e1f565b611f7583611e1f565b60405160200161144b929190612a57565b6040805160e0810182526000808252602080830182905282840182905260608084018390526080840183905284519081018552828152908101829052928301529060a0820190815260408051606081018252600080825260208281018290529282015291015290565b6001600160e01b03198116811461081657600080fd5b60006020828403121561201757600080fd5b813561104481611fef565b60005b8381101561203d578181015183820152602001612025565b83811115610e545750506000910152565b60008151808452612066816020860160208601612022565b601f01601f19169290920160200192915050565b602081526000611044602083018461204e565b60006020828403121561209f57600080fd5b5035919050565b80356001600160a01b0381168114611a6157600080fd5b600080604083850312156120d057600080fd5b6120d9836120a6565b946020939093013593505050565b6000806000606084860312156120fc57600080fd5b612105846120a6565b9250612113602085016120a6565b9150604084013590509250925092565b60006020828403121561213557600080fd5b611044826120a6565b6000610160820190508251825260ff602084015116602083015260ff604084015116604083015260ff606084015116606083015260ff608084015116608083015260a08301516121b160a084018260ff815116825260ff602082015116602083015260ff60408201511660408301525050565b5060c0830151805160ff908116610100850152602082015181166101208501526040820151166101408401525092915050565b600080604083850312156121f757600080fd5b612200836120a6565b91506020830135801515811461221557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561224c57600080fd5b612255856120a6565b9350612263602086016120a6565b925060408501359150606085013567ffffffffffffffff8082111561228757600080fd5b818701915087601f83011261229b57600080fd5b8135818111156122ad576122ad612220565b604051601f8201601f19908116603f011681019083821181831017156122d5576122d5612220565b816040528281528a60208487010111156122ee57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561232557600080fd5b61232e836120a6565b915061233c602084016120a6565b90509250929050565b600181811c9082168061235957607f821691505b6020821081141561237a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123b0576123b0612380565b500290565b600082198211156123c8576123c8612380565b500190565b6000828210156123df576123df612380565b500390565b60006000198214156123f8576123f8612380565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612424576124246123ff565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906115c89083018461204e565b60006020828403121561248457600080fd5b815161104481611fef565b600081516124a1818560208601612022565b9290920192915050565b683d913730b6b2911d1160b91b815283516000906124d0816009850160208901612022565b701116113232b9b1b934b83a34b7b7111d1160791b6009918401918201527f5765206d61646520736f6d65206d6620736e616b6573206f6e20746865206d66601a820152651031b430b4b760d11b603a8201527111161130ba3a3934b13aba32b9911d2dbd9160711b60408201528451612551816052840160208901612022565b6c113eae961134b6b0b3b2911d1160991b605292909101918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000605f82015283516125a5816079840160208801612022565b61227d60f01b60799290910191820152607b0195945050505050565b600083516125d3818460208801612022565b8351908301906125e7818360208801612022565b01949350505050565b600060ff831680612603576126036123ff565b8060ff84160691505092915050565b8054600090600181811c908083168061262c57607f831692505b602080841082141561264e57634e487b7160e01b600052602260045260246000fd5b8180156126625760018114612673576126a0565b60ff198616895284890196506126a0565b60008881526020902060005b868110156126985781548b82015290850190830161267f565b505084890196505b50505050505092915050565b60006126b88286612612565b65010333937b6960d51b81526126d16006820186612612565b905061202360f01b815283516126ee816002840160208801612022565b0160020195945050505050565b7f74726169745f74797065223a2253706563696573222c2276616c7565223a22008152600061272d601f830189612612565b7f227d2c7b2274726169745f74797065223a22506f69736f6e222c2276616c7565815262111d1160e91b60208201526127696023820189612612565b7f227d2c7b2274726169745f74797065223a224e616d65222c2276616c7565223a8152601160f91b602082015290506127a56021820188612612565b7f227d2c7b2274726169745f74797065223a224c6f636174696f6e222c2276616c8152643ab2911d1160d91b602082015290506127e56025820187612612565b90507f227d2c7b2274726169745f74797065223a22536e616b65204865616420436f6c81526c37b91116113b30b63ab2911d1160991b806020830152855161283481602d850160208a01612022565b7f227d2c7b2274726169745f74797065223a22536e616b6520426f647920436f6c602d9390910192830152604d820152612871605a82018561248f565b9998505050505050505050565b60008451612890818460208901612022565b80830190507f3c706174682069643d27486561642720643d274d35343020363735204c38313081527f2036373520383130203430352035343020343035205a272066696c6c3d270000602082015284516128f181603e840160208901612022565b7f272f3e3c706174682069643d27546f72736f2720643d274d3237302036373520603e92909101918201527f4c3534302036373520353430203430352032373020343035205a272066696c6c605e820152613d2760f01b607e8201528351612960816080840160208801612022565b6813979f1e17b9bb339f60b91b6080929091019182015260890195945050505050565b600082612992576129926123ff565b500490565b600060ff821660ff84168060ff038211156129b4576129b4612380565b019392505050565b600060ff821660ff8416808210156129d6576129d6612380565b90039392505050565b630e4cec4560e31b8152600084516129fe816004850160208901612022565b8083019050600b60fa1b8060048301528551612a21816005850160208a01612022565b60059201918201528351612a3c816006840160208801612022565b602960f81b6006929091019182015260070195945050505050565b7101e39bb33903b34b2bba137bc1e93981018160751b815260008351612a84816012850160208801612022565b600160fd1b6012918401918201528351612aa5816013840160208801612022565b7f2720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f601392909101918201527239bb3393903b32b939b4b7b71e93989718939f60691b603382015260460194935050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220fb0bc94917a2e299bd9d7c282cb670c4d12c184e79befb694533044c6e285eb664736f6c63430008090033
Deployed Bytecode
0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a0712d681161006f578063a0712d6814610391578063a22cb465146103a4578063b88d4fde146103c4578063c87b56dd146103e4578063e985e9c514610404578063f2fde38b1461044d57600080fd5b80636352211e146102dc57806370a08231146102fc578063715018a61461031c5780638da5cb5b1461033157806395d89b411461034f578063a005ec7a1461036457600080fd5b806323b872dd1161010857806323b872dd1461023d57806337a66d851461025d5780633ccfd60b1461027257806342842e0e1461028757806349360b4a146102a75780635c975abb146102c257600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df578063180c42a21461020157806318160ddd14610224575b600080fd5b34801561015c57600080fd5b5061017061016b366004612005565b61046d565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104bf565b60405161017c919061207a565b3480156101b357600080fd5b506101c76101c236600461208d565b610551565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046120bd565b610595565b005b34801561020d57600080fd5b50610216600281565b60405190815260200161017c565b34801561023057600080fd5b5060015460005403610216565b34801561024957600080fd5b506101ff6102583660046120e7565b610635565b34801561026957600080fd5b506101ff6107c6565b34801561027e57600080fd5b506101ff6107e2565b34801561029357600080fd5b506101ff6102a23660046120e7565b610819565b3480156102b357600080fd5b50610216660aa87bee53800081565b3480156102ce57600080fd5b50600c546101709060ff1681565b3480156102e857600080fd5b506101c76102f736600461208d565b610839565b34801561030857600080fd5b50610216610317366004612123565b610844565b34801561032857600080fd5b506101ff610893565b34801561033d57600080fd5b506008546001600160a01b03166101c7565b34801561035b57600080fd5b5061019a6108a7565b34801561037057600080fd5b5061038461037f36600461208d565b6108b6565b60405161017c919061213e565b6101ff61039f36600461208d565b6109cf565b3480156103b057600080fd5b506101ff6103bf3660046121e4565b610d7a565b3480156103d057600080fd5b506101ff6103df366004612236565b610e10565b3480156103f057600080fd5b5061019a6103ff36600461208d565b610e5a565b34801561041057600080fd5b5061017061041f366004612312565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561045957600080fd5b506101ff610468366004612123565b610f61565b60006301ffc9a760e01b6001600160e01b03198316148061049e57506380ac58cd60e01b6001600160e01b03198316145b806104b95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104ce90612345565b80601f01602080910402602001604051908101604052809291908181526020018280546104fa90612345565b80156105475780601f1061051c57610100808354040283529160200191610547565b820191906000526020600020905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b600061055c82610fd7565b610579576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105a082610839565b9050336001600160a01b038216146105d9576105bc813361041f565b6105d9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061064082610ffe565b9050836001600160a01b0316816001600160a01b0316146106735760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106c0576106a3863361041f565b6106c057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e757604051633a954ecd60e21b815260040160405180910390fd5b80156106f257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661077d576001840160008181526004602052604090205461077b57600054811461077b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107ce611066565b600c805460ff19811660ff90911615179055565b6107ea611066565b60405133904780156108fc02916000818181858888f19350505050158015610816573d6000803e3d6000fd5b50565b61083483838360405180602001604052806000815250610e10565b505050565b60006104b982610ffe565b60006001600160a01b03821661086d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61089b611066565b6108a560006110c0565b565b6060600380546104ce90612345565b6108be611f86565b6108c782610fd7565b80156108d45750610fa082105b6109195760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064015b60405180910390fd5b506000908152600d6020908152604091829020825160e08101845281548152600182015460ff8082168386015261010080830482168488015262010000808404831660608087019190915263010000009094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c082015290565b60026009541415610a225760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610910565b6002600955600c5460ff1615610a7a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610910565b600081118015610a8b575060028111155b610acd5760405162461bcd60e51b8152602060048201526013602482015272145d585b9d1a5d1e481a5cc81a5b9d985b1a59606a1b6044820152606401610910565b610ade81660aa87bee538000612396565b341015610b2d5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610910565b610fa081610b3a600a5490565b610b4491906123b5565b1115610b925760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20736e616b65732065786365656465640000000000000000006044820152606401610910565b6001600b54901c33600143610ba791906123cd565b4042604051602001610be4949392919093845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b60408051601f198184030181529190528051602090910120600b5560005b81811015610d71576000610c15600a5490565b9050610c22336001611112565b610c30600a80546001019055565b610c3c600b5482611130565b6000828152600d602090815260409182902083518155838201516001808301805487870151606089015160808a015160ff96871661ffff199485161761010093881684021763ffff0000191662010000928816830263ff0000001916176301000000918816919091021790935560a08901518051600288018054838b0151938c015162ff000019938a1691871691909117938916850293909317821692881686029290921790915560c09099015180516003909701805498820151919099015196861697909216969096179084169095029490941790951691169091021790558390610d299084906123b5565b1015610d5e57600b546040805160019290921c60208301520160408051601f198184030181529190528051602090910120600b555b5080610d69816123e4565b915050610c02565b50506001600955565b6001600160a01b038216331415610da45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e1b848484610635565b6001600160a01b0383163b15610e5457610e37848484846112b9565b610e54576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e6582610fd7565b610ea55760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610910565b6000828152600d6020908152604091829020825160e08101845281548152600182015460ff8082168386015261010080830482168488015262010000808404831660608087019190915263010000009094048316608086015287518085018952600287015480851682528381048516828a01528290048416818a015260a0860152875193840188526003909501548083168452908104821695830195909552929093049091169282019290925260c08201526104b990836113b1565b610f69611066565b6001600160a01b038116610fce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b610816816110c0565b60008054821080156104b9575050600090815260046020526040902054600160e01b161590565b60008160005481101561104d57600081815260046020526040902054600160e01b811661104b575b80611044575060001901600081815260046020526040902054611026565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610910565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61112c828260405180602001604052806000815250611462565b5050565b611138611f86565b60008360405160200161114d91815260200190565b60408051601f198184030181529190529050600061116c601485612415565b6111779060016123b5565b905060006111a78361118a8460096123b5565b8151811061119a5761119a612429565b016020015160f81c6114cf565b90506040518060e001604052804281526020016012858560026111ca91906123b5565b815181106111da576111da612429565b01602001516111ec919060f81c612415565b60ff16815260200161120985858151811061119a5761119a612429565b60ff16815260200160128561121f8660086123b5565b8151811061122f5761122f612429565b0160200151611241919060f81c612415565b60ff90811682528316602082015260400161127d856112618660066123b5565b61126c8760036123b5565b6112778860046123b5565b87611524565b81526020016112ad856112918660056123b5565b61129c8760076123b5565b6112a78860016123b5565b876115d2565b90529695505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112ee90339089908890889060040161243f565b602060405180830381600087803b15801561130857600080fd5b505af1925050508015611338575060408051601f3d908101601f1916820190925261133591810190612472565b60015b611393573d808015611366576040519150601f19603f3d011682016040523d82523d6000602084013e61136b565b606091505b50805161138b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606113ed60408051808201909152601d81527f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015290565b61143a6113fa8585611604565b61140386611657565b61141461140f8861170a565b611744565b604051602001611426939291906124ab565b604051602081830303815290604052611744565b60405160200161144b9291906125c1565b604051602081830303815290604052905092915050565b61146c83836118aa565b6001600160a01b0383163b15610834576000548281035b61149660008683806001019450866112b9565b6114b3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114835781600054146114c857600080fd5b5050505050565b6000806114dd6064846125f0565b9050602e8160ff16106114f35750600092915050565b60108160ff16106115075750600192915050565b60018160ff161061151b5750600292915050565b50600392915050565b60408051606081018252600080825260208201819052918101919091526115c861154d836119a1565b61155684611a66565b60405180606001604052808a8a8151811061157357611573612429565b0160209081015160f81c82528b519101908b908a90811061159657611596612429565b0160209081015160f81c82528b519101908b90899081106115b9576115b9612429565b016020015160f81c9052611b26565b9695505050505050565b60408051606081018252600080825260208201819052918101919091526115c86115fb83611ca2565b61155684611d60565b60606016836020015160ff166012811061162057611620612429565b016028846060015160ff166012811061163b5761163b612429565b0161164584611e1f565b60405160200161144b939291906126ac565b6060600e826080015160ff166004811061167357611673612429565b016012836040015160ff166004811061168e5761168e612429565b016016846020015160ff16601281106116a9576116a9612429565b016028856060015160ff16601281106116c4576116c4612429565b016116d28660a00151611f1d565b6116df8760c00151611f1d565b6040516020016116f4969594939291906126fb565b6040516020818303038152906040529050919050565b606061171861043880611f61565b6117258360a00151611f1d565b6117328460c00151611f1d565b6040516020016116f49392919061287e565b606081516000141561176457505060408051602081019091526000815290565b6000604051806060016040528060408152602001612af8604091399050600060038451600261179391906123b5565b61179d9190612983565b6117a8906004612396565b905060006117b78260206123b5565b67ffffffffffffffff8111156117cf576117cf612220565b6040519080825280601f01601f1916602001820160405280156117f9576020820181803683370190505b509050818152600183018586518101602084015b81831015611865576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161180d565b60038951066001811461187f57600281146118905761189c565b613d3d60f01b60011983015261189c565b603d60f81b6000198301525b509398975050505050505050565b600054816118cb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461197a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611942565b508161199857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6040805160608101825260008082526020820181905291810191909152816119e65750506040805160608101825260ae81526097602082015260779181019190915290565b8160011415611a1257505060408051606081018252606d815260c16020820152602f9181019190915290565b8160021415611a3e575050604080516060810182526053815260266020820152602c9181019190915290565b505060408051606081018252608b81526088602082015260629181019190915290565b919050565b604080516060810182526000808252602082018190529181019190915281611aab5750506040805160608101825260e1815260c46020820152609b9181019190915290565b8160011415611ad7575050604080516060810182526090815260ff6020820152603e9181019190915290565b8160021415611b035750506040805160608101825260868152603e602082015260489181019190915290565b50506040805160608101825260be815260bb602082015260869181019190915290565b604080516060810182526000808252602082018190529181019190915260006064836040015160ff16846020015160ff16856000015160ff16611b6991906123b5565b611b7391906123b5565b611b7d9190612415565b9050606481866000015160028660000151611b9891906125f0565b8751611ba49190612997565b611bae91906129bc565b60ff16611bbb9190612396565b611bc59190612983565b8551611bd19190612997565b60ff168252602080860151908401516064918391611bf1906002906125f0565b8760200151611c009190612997565b611c0a91906129bc565b60ff16611c179190612396565b611c219190612983565b8560200151611c309190612997565b60ff166020830152604080860151908401516064918391611c53906002906125f0565b8760400151611c629190612997565b611c6c91906129bc565b60ff16611c799190612396565b611c839190612983565b8560400151611c929190612997565b60ff166040830152509392505050565b604080516060810182526000808252602082018190529181019190915281611ce65750506040805160608101825281815260266020820152600e9181019190915290565b8160011415611d1257505060408051606081018252602d8152604f602082015260149181019190915290565b8160021415611d3e57505060408051606081018252609281526074602082015260679181019190915290565b5050604080516060810182526000808252602082018190529181019190915290565b604080516060810182526000808252602082018190529181019190915281611da5575050604080516060810182526077815260516020820152602d9181019190915290565b8160011415611dd157505060408051606081018252604a81526083602082015260219181019190915290565b8160021415611dfd5750506040805160608101825260c58152609d6020820152608b9181019190915290565b5050604080516060810182526012808252602082015260139181019190915290565b606081611e435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e6d5780611e57816123e4565b9150611e669050600a83612983565b9150611e47565b60008167ffffffffffffffff811115611e8857611e88612220565b6040519080825280601f01601f191660200182016040528015611eb2576020820181803683370190505b5090505b84156113a957611ec76001836123cd565b9150611ed4600a86612415565b611edf9060306123b5565b60f81b818381518110611ef457611ef4612429565b60200101906001600160f81b031916908160001a905350611f16600a86612983565b9450611eb6565b6060611f2f826000015160ff16611e1f565b611f3f836020015160ff16611e1f565b611f4f846040015160ff16611e1f565b6040516020016116f4939291906129df565b6060611f6c83611e1f565b611f7583611e1f565b60405160200161144b929190612a57565b6040805160e0810182526000808252602080830182905282840182905260608084018390526080840183905284519081018552828152908101829052928301529060a0820190815260408051606081018252600080825260208281018290529282015291015290565b6001600160e01b03198116811461081657600080fd5b60006020828403121561201757600080fd5b813561104481611fef565b60005b8381101561203d578181015183820152602001612025565b83811115610e545750506000910152565b60008151808452612066816020860160208601612022565b601f01601f19169290920160200192915050565b602081526000611044602083018461204e565b60006020828403121561209f57600080fd5b5035919050565b80356001600160a01b0381168114611a6157600080fd5b600080604083850312156120d057600080fd5b6120d9836120a6565b946020939093013593505050565b6000806000606084860312156120fc57600080fd5b612105846120a6565b9250612113602085016120a6565b9150604084013590509250925092565b60006020828403121561213557600080fd5b611044826120a6565b6000610160820190508251825260ff602084015116602083015260ff604084015116604083015260ff606084015116606083015260ff608084015116608083015260a08301516121b160a084018260ff815116825260ff602082015116602083015260ff60408201511660408301525050565b5060c0830151805160ff908116610100850152602082015181166101208501526040820151166101408401525092915050565b600080604083850312156121f757600080fd5b612200836120a6565b91506020830135801515811461221557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561224c57600080fd5b612255856120a6565b9350612263602086016120a6565b925060408501359150606085013567ffffffffffffffff8082111561228757600080fd5b818701915087601f83011261229b57600080fd5b8135818111156122ad576122ad612220565b604051601f8201601f19908116603f011681019083821181831017156122d5576122d5612220565b816040528281528a60208487010111156122ee57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561232557600080fd5b61232e836120a6565b915061233c602084016120a6565b90509250929050565b600181811c9082168061235957607f821691505b6020821081141561237a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123b0576123b0612380565b500290565b600082198211156123c8576123c8612380565b500190565b6000828210156123df576123df612380565b500390565b60006000198214156123f8576123f8612380565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612424576124246123ff565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906115c89083018461204e565b60006020828403121561248457600080fd5b815161104481611fef565b600081516124a1818560208601612022565b9290920192915050565b683d913730b6b2911d1160b91b815283516000906124d0816009850160208901612022565b701116113232b9b1b934b83a34b7b7111d1160791b6009918401918201527f5765206d61646520736f6d65206d6620736e616b6573206f6e20746865206d66601a820152651031b430b4b760d11b603a8201527111161130ba3a3934b13aba32b9911d2dbd9160711b60408201528451612551816052840160208901612022565b6c113eae961134b6b0b3b2911d1160991b605292909101918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000605f82015283516125a5816079840160208801612022565b61227d60f01b60799290910191820152607b0195945050505050565b600083516125d3818460208801612022565b8351908301906125e7818360208801612022565b01949350505050565b600060ff831680612603576126036123ff565b8060ff84160691505092915050565b8054600090600181811c908083168061262c57607f831692505b602080841082141561264e57634e487b7160e01b600052602260045260246000fd5b8180156126625760018114612673576126a0565b60ff198616895284890196506126a0565b60008881526020902060005b868110156126985781548b82015290850190830161267f565b505084890196505b50505050505092915050565b60006126b88286612612565b65010333937b6960d51b81526126d16006820186612612565b905061202360f01b815283516126ee816002840160208801612022565b0160020195945050505050565b7f74726169745f74797065223a2253706563696573222c2276616c7565223a22008152600061272d601f830189612612565b7f227d2c7b2274726169745f74797065223a22506f69736f6e222c2276616c7565815262111d1160e91b60208201526127696023820189612612565b7f227d2c7b2274726169745f74797065223a224e616d65222c2276616c7565223a8152601160f91b602082015290506127a56021820188612612565b7f227d2c7b2274726169745f74797065223a224c6f636174696f6e222c2276616c8152643ab2911d1160d91b602082015290506127e56025820187612612565b90507f227d2c7b2274726169745f74797065223a22536e616b65204865616420436f6c81526c37b91116113b30b63ab2911d1160991b806020830152855161283481602d850160208a01612022565b7f227d2c7b2274726169745f74797065223a22536e616b6520426f647920436f6c602d9390910192830152604d820152612871605a82018561248f565b9998505050505050505050565b60008451612890818460208901612022565b80830190507f3c706174682069643d27486561642720643d274d35343020363735204c38313081527f2036373520383130203430352035343020343035205a272066696c6c3d270000602082015284516128f181603e840160208901612022565b7f272f3e3c706174682069643d27546f72736f2720643d274d3237302036373520603e92909101918201527f4c3534302036373520353430203430352032373020343035205a272066696c6c605e820152613d2760f01b607e8201528351612960816080840160208801612022565b6813979f1e17b9bb339f60b91b6080929091019182015260890195945050505050565b600082612992576129926123ff565b500490565b600060ff821660ff84168060ff038211156129b4576129b4612380565b019392505050565b600060ff821660ff8416808210156129d6576129d6612380565b90039392505050565b630e4cec4560e31b8152600084516129fe816004850160208901612022565b8083019050600b60fa1b8060048301528551612a21816005850160208a01612022565b60059201918201528351612a3c816006840160208801612022565b602960f81b6006929091019182015260070195945050505050565b7101e39bb33903b34b2bba137bc1e93981018160751b815260008351612a84816012850160208801612022565b600160fd1b6012918401918201528351612aa5816013840160208801612022565b7f2720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f601392909101918201527239bb3393903b32b939b4b7b71e93989718939f60691b603382015260460194935050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220fb0bc94917a2e299bd9d7c282cb670c4d12c184e79befb694533044c6e285eb664736f6c63430008090033
Deployed Bytecode Sourcemap
74599:6111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35782:639;;;;;;;;;;-1:-1:-1;35782:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35782:639:0;;;;;;;;36684:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43167:218::-;;;;;;;;;;-1:-1:-1;43167:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;43167:218:0;1550:203:1;42608:400:0;;;;;;;;;;-1:-1:-1;42608:400:0;;;;;:::i;:::-;;:::i;:::-;;75133:47;;;;;;;;;;;;75179:1;75133:47;;;;;2341:25:1;;;2329:2;2314:18;75133:47:0;2195:177:1;32435:323:0;;;;;;;;;;-1:-1:-1;32709:12:0;;32496:7;32693:13;:28;32435:323;;46874:2817;;;;;;;;;;-1:-1:-1;46874:2817:0;;;;;:::i;:::-;;:::i;77199:73::-;;;;;;;;;;;;;:::i;78600:104::-;;;;;;;;;;;;;:::i;49787:185::-;;;;;;;;;;-1:-1:-1;49787:185:0;;;;;:::i;:::-;;:::i;74867:48::-;;;;;;;;;;;;74904:11;74867:48;;75219:25;;;;;;;;;;-1:-1:-1;75219:25:0;;;;;;;;38077:152;;;;;;;;;;-1:-1:-1;38077:152:0;;;;;:::i;:::-;;:::i;33619:233::-;;;;;;;;;;-1:-1:-1;33619:233:0;;;;;:::i;:::-;;:::i;73708:103::-;;;;;;;;;;;;;:::i;73060:87::-;;;;;;;;;;-1:-1:-1;73133:6:0;;-1:-1:-1;;;;;73133:6:0;73060:87;;36860:104;;;;;;;;;;;;;:::i;77314:228::-;;;;;;;;;;-1:-1:-1;77314:228:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;76274:917::-;;;;;;:::i;:::-;;:::i;43725:308::-;;;;;;;;;;-1:-1:-1;43725:308:0;;;;;:::i;:::-;;:::i;50570:399::-;;;;;;;;;;-1:-1:-1;50570:399:0;;;;;:::i;:::-;;:::i;77613:233::-;;;;;;;;;;-1:-1:-1;77613:233:0;;;;;:::i;:::-;;:::i;44190:164::-;;;;;;;;;;-1:-1:-1;44190:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44311:25:0;;;44287:4;44311:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44190:164;73966:201;;;;;;;;;;-1:-1:-1;73966:201:0;;;;;:::i;:::-;;:::i;35782:639::-;35867:4;-1:-1:-1;;;;;;;;;36191:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;36268:25:0;;;36191:102;:179;;;-1:-1:-1;;;;;;;;;;36345:25:0;;;36191:179;36171:199;35782:639;-1:-1:-1;;35782:639:0:o;36684:100::-;36738:13;36771:5;36764:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36684:100;:::o;43167:218::-;43243:7;43268:16;43276:7;43268;:16::i;:::-;43263:64;;43293:34;;-1:-1:-1;;;43293:34:0;;;;;;;;;;;43263:64;-1:-1:-1;43347:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;43347:30:0;;43167:218::o;42608:400::-;42689:13;42705:16;42713:7;42705;:16::i;:::-;42689:32;-1:-1:-1;66465:10:0;-1:-1:-1;;;;;42738:28:0;;;42734:175;;42786:44;42803:5;66465:10;44190:164;:::i;42786:44::-;42781:128;;42858:35;;-1:-1:-1;;;42858:35:0;;;;;;;;;;;42781:128;42921:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;42921:35:0;-1:-1:-1;;;;;42921:35:0;;;;;;;;;42972:28;;42921:24;;42972:28;;;;;;;42678:330;42608:400;;:::o;46874:2817::-;47008:27;47038;47057:7;47038:18;:27::i;:::-;47008:57;;47123:4;-1:-1:-1;;;;;47082:45:0;47098:19;-1:-1:-1;;;;;47082:45:0;;47078:86;;47136:28;;-1:-1:-1;;;47136:28:0;;;;;;;;;;;47078:86;47178:27;45988:24;;;:15;:24;;;;;46210:26;;66465:10;45613:30;;;-1:-1:-1;;;;;45306:28:0;;45591:20;;;45588:56;47364:180;;47457:43;47474:4;66465:10;44190:164;:::i;47457:43::-;47452:92;;47509:35;;-1:-1:-1;;;47509:35:0;;;;;;;;;;;47452:92;-1:-1:-1;;;;;47561:16:0;;47557:52;;47586:23;;-1:-1:-1;;;47586:23:0;;;;;;;;;;;47557:52;47758:15;47755:160;;;47898:1;47877:19;47870:30;47755:160;-1:-1:-1;;;;;48295:24:0;;;;;;;:18;:24;;;;;;48293:26;;-1:-1:-1;;48293:26:0;;;48364:22;;;;;;;;;48362:24;;-1:-1:-1;48362:24:0;;;41466:11;41441:23;41437:41;41424:63;-1:-1:-1;;;41424:63:0;48657:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;48952:47:0;;48948:627;;49057:1;49047:11;;49025:19;49180:30;;;:17;:30;;;;;;49176:384;;49318:13;;49303:11;:28;49299:242;;49465:30;;;;:17;:30;;;;;:52;;;49299:242;49006:569;48948:627;49622:7;49618:2;-1:-1:-1;;;;;49603:27:0;49612:4;-1:-1:-1;;;;;49603:27:0;;;;;;;;;;;46997:2694;;;46874:2817;;;:::o;77199:73::-;72946:13;:11;:13::i;:::-;77258:6:::1;::::0;;-1:-1:-1;;77248:16:0;::::1;77258:6;::::0;;::::1;77257:7;77248:16;::::0;;77199:73::o;78600:104::-;72946:13;:11;:13::i;:::-;78645:51:::1;::::0;78653:10:::1;::::0;78674:21:::1;78645:51:::0;::::1;;;::::0;::::1;::::0;;;78674:21;78653:10;78645:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;78600:104::o:0;49787:185::-;49925:39;49942:4;49948:2;49952:7;49925:39;;;;;;;;;;;;:16;:39::i;:::-;49787:185;;;:::o;38077:152::-;38149:7;38192:27;38211:7;38192:18;:27::i;33619:233::-;33691:7;-1:-1:-1;;;;;33715:19:0;;33711:60;;33743:28;;-1:-1:-1;;;33743:28:0;;;;;;;;;;;33711:60;-1:-1:-1;;;;;;33789:25:0;;;;;:18;:25;;;;;;27778:13;33789:55;;33619:233::o;73708:103::-;72946:13;:11;:13::i;:::-;73773:30:::1;73800:1;73773:18;:30::i;:::-;73708:103::o:0;36860:104::-;36916:13;36949:7;36942:14;;;;;:::i;77314:228::-;77380:20;;:::i;:::-;77421:16;77429:7;77421;:16::i;:::-;:40;;;;;75011:4;77441:7;:20;77421:40;77413:70;;;;-1:-1:-1;;;77413:70:0;;6398:2:1;77413:70:0;;;6380:21:1;6437:2;6417:18;;;6410:30;-1:-1:-1;;;6456:18:1;;;6449:47;6513:18;;77413:70:0;;;;;;;;;-1:-1:-1;77503:31:0;;;;:22;:31;;;;;;;;;77494:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77314:228::o;76274:917::-;69985:1;70583:7;;:19;;70575:63;;;;-1:-1:-1;;;70575:63:0;;6744:2:1;70575:63:0;;;6726:21:1;6783:2;6763:18;;;6756:30;6822:33;6802:18;;;6795:61;6873:18;;70575:63:0;6542:355:1;70575:63:0;69985:1;70716:7;:18;76354:6:::1;::::0;::::1;;76353:7;76345:43;;;::::0;-1:-1:-1;;;76345:43:0;;7104:2:1;76345:43:0::1;::::0;::::1;7086:21:1::0;7143:2;7123:18;;;7116:30;7182:25;7162:18;;;7155:53;7225:18;;76345:43:0::1;6902:347:1::0;76345:43:0::1;76418:1;76407:8;:12;:47;;;;;75179:1;76423:8;:31;;76407:47;76399:79;;;::::0;-1:-1:-1;;;76399:79:0;;7456:2:1;76399:79:0::1;::::0;::::1;7438:21:1::0;7495:2;7475:18;;;7468:30;-1:-1:-1;;;7514:18:1;;;7507:49;7573:18;;76399:79:0::1;7254:343:1::0;76399:79:0::1;76510:21;76523:8:::0;74904:11:::1;76510:21;:::i;:::-;76497:9;:34;;76489:72;;;::::0;-1:-1:-1;;;76489:72:0;;8109:2:1;76489:72:0::1;::::0;::::1;8091:21:1::0;8148:2;8128:18;;;8121:30;8187:27;8167:18;;;8160:55;8232:18;;76489:72:0::1;7907:349:1::0;76489:72:0::1;75011:4;76602:8;76580:19;:9;16846:14:::0;;16754:114;76580:19:::1;:30;;;;:::i;:::-;:44;;76572:80;;;::::0;-1:-1:-1;;;76572:80:0;;8596:2:1;76572:80:0::1;::::0;::::1;8578:21:1::0;8635:2;8615:18;;;8608:30;8674:25;8654:18;;;8647:53;8717:18;;76572:80:0::1;8394:347:1::0;76572:80:0::1;76717:1;76708:5;;:10;;76720;76755:1;76742:12;:14;;;;:::i;:::-;76732:25;76759:15;76691:84;;;;;;;;;;9089:19:1::0;;;9146:2;9142:15;;;;-1:-1:-1;;9138:53:1;9133:2;9124:12;;9117:75;9217:2;9208:12;;9201:28;9254:2;9245:12;;9238:28;9291:3;9282:13;;8876:425;76691:84:0::1;;::::0;;-1:-1:-1;;76691:84:0;;::::1;::::0;;;;;;76681:95;;76691:84:::1;76681:95:::0;;::::1;::::0;76665:5:::1;:112:::0;76673:104:::1;76788:396;76812:8;76808:1;:12;76788:396;;;76842:15;76860:19;:9;16846:14:::0;;16754:114;76860:19:::1;76842:37;;76894:27;76904:10;75054:1;76894:9;:27::i;:::-;76936:21;:9;16965:19:::0;;16983:1;16965:19;;;16876:127;76936:21:::1;77006:39;77030:5;;77037:7;77006:23;:39::i;:::-;76972:31;::::0;;;:22:::1;:31;::::0;;;;;;;;:73;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;76972:73:0;;;;::::1;::::0;;::::1;::::0;::::1;;-1:-1:-1::0;;76972:73:0;;;;::::1;::::0;::::1;-1:-1:-1::0;;76972:73:0;;;;;::::1;::::0;;;::::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;76972: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;;77072:8;;77064:5:::1;::::0;:1;;:5:::1;:::i;:::-;:16;77060:113;;;77144:5;::::0;77127:28:::1;::::0;;77153:1:::1;77144:10:::0;;;::::1;77127:28;::::0;::::1;9435:19:1::0;9470:12;77127:28:0::1;::::0;;-1:-1:-1;;77127:28:0;;::::1;::::0;;;;;;77117:39;;77127:28:::1;77117:39:::0;;::::1;::::0;77101:5:::1;:56:::0;77060:113:::1;-1:-1:-1::0;76822:3:0;::::1;::::0;::::1;:::i;:::-;;;;76788:396;;;-1:-1:-1::0;;69941:1:0;70895:7;:22;76274:917::o;43725:308::-;-1:-1:-1;;;;;43824:31:0;;66465:10;43824:31;43820:61;;;43864:17;;-1:-1:-1;;;43864:17:0;;;;;;;;;;;43820:61;66465:10;43894:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;43894:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;43894:60:0;;;;;;;;;;43970:55;;540:41:1;;;43894:49:0;;66465:10;43970:55;;513:18:1;43970:55:0;;;;;;;43725:308;;:::o;50570:399::-;50737:31;50750:4;50756:2;50760:7;50737:12;:31::i;:::-;-1:-1:-1;;;;;50783:14:0;;;:19;50779:183;;50822:56;50853:4;50859:2;50863:7;50872:5;50822:30;:56::i;:::-;50817:145;;50906:40;;-1:-1:-1;;;50906:40:0;;;;;;;;;;;50817:145;50570:399;;;;:::o;77613:233::-;77686:13;77720:16;77728:7;77720;:16::i;:::-;77712:46;;;;-1:-1:-1;;;77712:46:0;;6398:2:1;77712:46:0;;;6380:21:1;6437:2;6417:18;;;6410:30;-1:-1:-1;;;6456:18:1;;;6449:47;6513:18;;77712:46:0;6196:341:1;77712:46:0;77797:31;;;;:22;:31;;;;;;;;;77778:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77820:7;77778:18;:60::i;73966:201::-;72946:13;:11;:13::i;:::-;-1:-1:-1;;;;;74055:22:0;::::1;74047:73;;;::::0;-1:-1:-1;;;74047:73:0;;9835:2:1;74047:73:0::1;::::0;::::1;9817:21:1::0;9874:2;9854:18;;;9847:30;9913:34;9893:18;;;9886:62;-1:-1:-1;;;9964:18:1;;;9957:36;10010:19;;74047:73:0::1;9633:402:1::0;74047:73:0::1;74131:28;74150:8;74131:18;:28::i;44612:282::-:0;44677:4;44767:13;;44757:7;:23;44714:153;;;;-1:-1:-1;;44818:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;44818:44:0;:49;;44612:282::o;39232:1275::-;39299:7;39334;39436:13;;39429:4;:20;39425:1015;;;39474:14;39491:23;;;:17;:23;;;;;;-1:-1:-1;;;39580:24:0;;39576:845;;40245:113;40252:11;40245:113;;-1:-1:-1;;;40323:6:0;40305:25;;;;:17;:25;;;;;;40245:113;;;40391:6;39232:1275;-1:-1:-1;;;39232:1275:0:o;39576:845::-;39451:989;39425:1015;40468:31;;-1:-1:-1;;;40468:31:0;;;;;;;;;;;73225:132;73133:6;;-1:-1:-1;;;;;73133:6:0;66465:10;73289:23;73281:68;;;;-1:-1:-1;;;73281:68:0;;10242:2:1;73281:68:0;;;10224:21:1;;;10261:18;;;10254:30;10320:34;10300:18;;;10293:62;10372:18;;73281:68:0;10040:356:1;74327:191:0;74420:6;;;-1:-1:-1;;;;;74437:17:0;;;-1:-1:-1;;;;;;74437:17:0;;;;;;;74470:40;;74420:6;;;74437:17;74420:6;;74470:40;;74401:16;;74470:40;74390:128;74327:191;:::o;60210:112::-;60287:27;60297:2;60301:8;60287:27;;;;;;;;;;;;:9;:27::i;:::-;60210:112;;:::o;78852:912::-;78940:13;;:::i;:::-;78966:25;79011:6;78994:24;;;;;;9435:19:1;;9479:2;9470:12;;9306:182;78994:24:0;;;;-1:-1:-1;;78994:24:0;;;;;;;;;;-1:-1:-1;79029:17:0;79050:12;79060:2;79050:7;:12;:::i;:::-;79049:18;;79066:1;79049:18;:::i;:::-;79029:38;-1:-1:-1;79078:20:0;79101:72;79144:12;79157:13;79029:38;79157:1;:13;:::i;:::-;79144:27;;;;;;;;:::i;:::-;;;;;;;79101:36;:72::i;:::-;79078:95;;79191:565;;;;;;;;79212:15;79191:565;;;;79285:13;79254:12;79271:9;79267:1;:13;;;;:::i;:::-;79254:27;;;;;;;;:::i;:::-;;;;;79248:50;;;79254:27;;79248:50;:::i;:::-;79191:565;;;;;;79320:68;79363:12;79376:9;79363:23;;;;;;;;:::i;79320:68::-;79191:565;;;;;;79447:14;79416:12;79429:13;79433:9;79429:1;:13;:::i;:::-;79416:27;;;;;;;;:::i;:::-;;;;;79410:51;;;79416:27;;79410:51;:::i;:::-;79191:565;;;;;;;;;;;;;;79511:108;79547:12;79561:13;79565:9;79561:1;:13;:::i;:::-;79576;79580:9;79576:1;:13;:::i;:::-;79591;79595:9;79591:1;:13;:::i;:::-;79606:12;79511:35;:108::i;:::-;79191:565;;;;79634:111;79673:12;79687:13;79691:9;79687:1;:13;:::i;:::-;79702;79706:9;79702:1;:13;:::i;:::-;79717;79721:9;79717:1;:13;:::i;:::-;79732:12;79634:38;:111::i;:::-;79191:565;;79184:572;78852:912;-1:-1:-1;;;;;;78852:912:0:o;53053:716::-;53237:88;;-1:-1:-1;;;53237:88:0;;53216:4;;-1:-1:-1;;;;;53237:45:0;;;;;:88;;66465:10;;53304:4;;53310:7;;53319:5;;53237:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53237:88:0;;;;;;;;-1:-1:-1;;53237:88:0;;;;;;;;;;;;:::i;:::-;;;53233:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53520:13:0;;53516:235;;53566:40;;-1:-1:-1;;;53566:40:0;;;;;;;;;;;53516:235;53709:6;53703:13;53694:6;53690:2;53686:15;53679:38;53233:529;-1:-1:-1;;;;;;53396:64:0;-1:-1:-1;;;53396:64:0;;-1:-1:-1;53233:529:0;53053:716;;;;;;:::o;77854:687::-;77943:13;78014:10;78798:38;;;;;;;;;;;;;;;;;;78712:132;78014:10;78039:482;78122:32;78138:6;78146:7;78122:15;:32::i;:::-;78317:29;78339:6;78317:21;:29::i;:::-;78433:49;78447:34;78474:6;78447:26;:34::i;:::-;78433:13;:49::i;:::-;78053:467;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78039:13;:482::i;:::-;77983:549;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77969:564;;77854:687;;;;:::o;59437:689::-;59568:19;59574:2;59578:8;59568:5;:19::i;:::-;-1:-1:-1;;;;;59629:14:0;;;:19;59625:483;;59669:11;59683:13;59731:14;;;59764:233;59795:62;59834:1;59838:2;59842:7;;;;;;59851:5;59795:30;:62::i;:::-;59790:167;;59893:40;;-1:-1:-1;;;59893:40:0;;;;;;;;;;;59790:167;59992:3;59984:5;:11;59764:233;;60079:3;60062:13;;:20;60058:34;;60084:8;;;60058:34;59650:458;;59437:689;;;:::o;10916:395::-;10982:7;;11017:12;11026:3;11017:6;:12;:::i;:::-;11002:27;;11054:2;11044:6;:12;;;11040:230;;-1:-1:-1;11080:1:0;;10916:395;-1:-1:-1;;10916:395:0:o;11040:230::-;11130:2;11120:6;:12;;;11116:154;;-1:-1:-1;11156:1:0;;10916:395;-1:-1:-1;;10916:395:0:o;11116:154::-;11211:1;11201:6;:11;;;11197:73;;-1:-1:-1;11236:1:0;;10916:395;-1:-1:-1;;10916:395:0:o;11197:73::-;-1:-1:-1;11287:1:0;;10916:395;-1:-1:-1;;10916:395:0:o;11785:449::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;11981:245:0;12011:38;12036:12;12011:24;:38::i;:::-;12064:40;12091:12;12064:26;:40::i;:::-;12119:96;;;;;;;;12144:6;12151:8;12144:16;;;;;;;;:::i;:::-;;;;;;;;;12119:96;;12169:18;;12119:96;;;12169:6;;12176:10;;12169:18;;;;;;:::i;:::-;;;;;;;;;12119:96;;12196:17;;12119:96;;;12196:6;;12203:9;;12196:17;;;;;;:::i;:::-;;;;;;;12119:96;;11981:15;:245::i;:::-;11974:252;11785:449;-1:-1:-1;;;;;;11785:449:0:o;11319:458::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;11518:251:0;11548:41;11576:12;11548:27;:41::i;:::-;11604:43;11634:12;11604:29;:43::i;80464:243::-;80550:13;80607:6;80614;:16;;;80607:24;;;;;;;;;:::i;:::-;;80643:7;80651:6;:17;;;80643:26;;;;;;;;;:::i;:::-;;80677:20;80678:7;80677:18;:20::i;:::-;80590:108;;;;;;;;;;:::i;79772:684::-;79847:13;79953:8;79962:6;:19;;;79953:29;;;;;;;;;:::i;:::-;;80036:7;80044:6;:18;;;80036:27;;;;;;;;;:::i;:::-;;80115:6;80122;:16;;;80115:24;;;;;;;;;:::i;:::-;;80195:7;80203:6;:17;;;80195:26;;;;;;;;;:::i;:::-;;80285:42;80311:6;:15;;;80285:25;:42::i;:::-;80391:45;80417:6;:18;;;80391:25;:45::i;:::-;79887:560;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79873:575;;79772:684;;;:::o;14896:449::-;14973:12;15036:19;15044:4;15050;15036:7;:19::i;:::-;15149:25;15158:6;:15;;;15149:8;:25::i;:::-;15272:28;15281:6;:18;;;15272:8;:28::i;:::-;15005:332;;;;;;;;;;:::i;4109:1912::-;4167:13;4197:4;:11;4212:1;4197:16;4193:31;;;-1:-1:-1;;4215:9:0;;;;;;;;;-1:-1:-1;4215:9:0;;;4109:1912::o;4193:31::-;4276:19;4298:12;;;;;;;;;;;;;;;;;4276:34;;4362:18;4408:1;4389:4;:11;4403:1;4389:15;;;;:::i;:::-;4388:21;;;;:::i;:::-;4383:27;;:1;:27;:::i;:::-;4362:48;-1:-1:-1;4493:20:0;4527:15;4362:48;4540:2;4527:15;:::i;:::-;4516:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4516:27:0;;4493:50;;4640:10;4632:6;4625:26;4735:1;4728:5;4724:13;4794:4;4845;4839:11;4830:7;4826:25;4941:2;4933:6;4929:15;5014:754;5033:6;5024:7;5021:19;5014:754;;;5133:1;5124:7;5120:15;5109:26;;5172:7;5166:14;5298:4;5290:5;5286:2;5282:14;5278:25;5268:8;5264:40;5258:47;5247:9;5239:67;5352:1;5341:9;5337:17;5324:30;;5431:4;5423:5;5419:2;5415:14;5411:25;5401:8;5397:40;5391:47;5380:9;5372:67;5485:1;5474:9;5470:17;5457:30;;5564:4;5556:5;5553:1;5548:14;5544:25;5534:8;5530:40;5524:47;5513:9;5505:67;5618:1;5607:9;5603:17;5590:30;;5697:4;5689:5;5677:25;5667:8;5663:40;5657:47;5646:9;5638:67;-1:-1:-1;5751:1:0;5736:17;5014:754;;;5841:1;5834:4;5828:11;5824:19;5862:1;5857:54;;;;5930:1;5925:52;;;;5817:160;;5857:54;-1:-1:-1;;;;;5873:17:0;;5866:43;5857:54;;5925:52;-1:-1:-1;;;;;5941:17:0;;5934:41;5817:160;-1:-1:-1;6007:6:0;;4109:1912;-1:-1:-1;;;;;;;;4109:1912:0:o;54231:2454::-;54304:20;54327:13;54355;54351:44;;54377:18;;-1:-1:-1;;;54377:18:0;;;;;;;;;;;54351:44;-1:-1:-1;;;;;54883:22:0;;;;;;:18;:22;;;;27916:2;54883:22;;;:71;;54921:32;54909:45;;54883:71;;;55197:31;;;:17;:31;;;;;-1:-1:-1;41897:15:0;;41871:24;41867:46;41466:11;41441:23;41437:41;41434:52;41424:63;;55197:173;;55432:23;;;;55197:31;;54883:22;;55931:25;54883:22;;55784:335;56199:1;56185:12;56181:20;56139:346;56240:3;56231:7;56228:16;56139:346;;56458:7;56448:8;56445:1;56418:25;56415:1;56412;56407:59;56293:1;56280:15;56139:346;;;-1:-1:-1;56518:13:0;56514:45;;56540:19;;-1:-1:-1;;;56540:19:0;;;;;;;;;;;56514:45;56576:13;:19;-1:-1:-1;49787:185:0;;;:::o;13243:493::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;13356:10:0;13352:377;;-1:-1:-1;;13400:33:0;;;;;;;;13419:3;13400:33;;13424:3;13400:33;;;;13429:3;13400:33;;;;;;;;13243:493::o;13352:377::-;13455:5;13464:1;13455:10;13451:278;;;-1:-1:-1;;13504:32:0;;;;;;;;13523:3;13504:32;;13528:3;13504:32;;;;13533:2;13504:32;;;;;;;;13243:493::o;13451:278::-;13558:5;13567:1;13558:10;13554:175;;;-1:-1:-1;;13606:30:0;;;;;;;;13625:2;13606:30;;13629:2;13606:30;;;;13633:2;13606:30;;;;;;;;13243:493::o;13554:175::-;-1:-1:-1;;13685:32:0;;;;;;;;13704:3;13685:32;;13709:3;13685:32;;;;13714:2;13685:32;;;;;;;;13243:493::o;13554:175::-;13243:493;;;:::o;13744:497::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;13859:10:0;13855:379;;-1:-1:-1;;13903:33:0;;;;;;;;13922:3;13903:33;;13927:3;13903:33;;;;13932:3;13903:33;;;;;;;;13744:497::o;13855:379::-;13958:5;13967:1;13958:10;13954:280;;;-1:-1:-1;;14007:32:0;;;;;;;;14026:3;14007:32;;;;;;;14036:2;14007:32;;;;;;;;13744:497::o;13954:280::-;14061:5;14070:1;14061:10;14057:177;;;-1:-1:-1;;14109:31:0;;;;;;;;14128:3;14109:31;;14133:2;14109:31;;;;14137:2;14109:31;;;;;;;;13744:497::o;14057:177::-;-1:-1:-1;;14189:33:0;;;;;;;;14208:3;14189:33;;14213:3;14189:33;;;;14218:3;14189:33;;;;;;;;13744:497::o;14253:635::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;14446:15:0;14535:3;14519:6;:11;;;14511:20;;14495:6;:12;;;14487:21;;14473:6;:10;;;14465:19;;:43;;;;:::i;:::-;:66;;;;:::i;:::-;14464:74;;;;:::i;:::-;14446:92;;14643:3;14633:7;14620:5;:9;;;14615:1;14602:6;:10;;;:14;;;;:::i;:::-;14587:11;;:30;;;;:::i;:::-;:42;;;;:::i;:::-;14579:51;;:61;;;;:::i;:::-;:67;;;;:::i;:::-;14561:9;;:86;;;;:::i;:::-;14549:98;;;;14737:11;;;;;14717:12;;;;14762:3;;14752:7;;14717:16;;14732:1;;14717:16;:::i;:::-;14700:7;:13;;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;14692:57;;:67;;;;:::i;:::-;:73;;;;:::i;:::-;14672:5;:11;;;:94;;;;:::i;:::-;14658:108;;:11;;;:108;14852:10;;;;;14833:11;;;;14876:3;;14866:7;;14833:15;;14847:1;;14833:15;:::i;:::-;14817:7;:12;;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;14809:54;;:64;;;;:::i;:::-;:70;;;;:::i;:::-;14790:5;:10;;;:90;;;;:::i;:::-;14777:103;;:10;;;:103;-1:-1:-1;14777:5:0;14253:635;-1:-1:-1;;;14253:635:0:o;12242:489::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;12358:10:0;12354:370;;-1:-1:-1;;12402:30:0;;;;;;;;;;;12425:2;12402:30;;;;12429:2;12402:30;;;;;;;;12242:489::o;12354:370::-;12454:5;12463:1;12454:10;12450:274;;;-1:-1:-1;;12503:30:0;;;;;;;;12522:2;12503:30;;12526:2;12503:30;;;;12530:2;12503:30;;;;;;;;12242:489::o;12450:274::-;12555:5;12564:1;12555:10;12551:173;;;-1:-1:-1;;12603:33:0;;;;;;;;12622:3;12603:33;;12627:3;12603:33;;;;12632:3;12603:33;;;;;;;;12242:489::o;12551:173::-;-1:-1:-1;;12685:27:0;;;;;;;;-1:-1:-1;12685:27:0;;;;;;;;;;;;;;;;;12242:489::o;12739:496::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;12857:10:0;12853:375;;-1:-1:-1;;12901:31:0;;;;;;;;12920:3;12901:31;;12925:2;12901:31;;;;12929:2;12901:31;;;;;;;;12739:496::o;12853:375::-;12954:5;12963:1;12954:10;12950:278;;;-1:-1:-1;;13003:31:0;;;;;;;;13022:2;13003:31;;13026:3;13003:31;;;;13031:2;13003:31;;;;;;;;12739:496::o;12950:278::-;13056:5;13065:1;13056:10;13052:176;;;-1:-1:-1;;13104:33:0;;;;;;;;13123:3;13104:33;;13128:3;13104:33;;;;13133:3;13104:33;;;;;;;;12739:496::o;13052:176::-;-1:-1:-1;;13186:30:0;;;;;;;;13205:2;13186:30;;;;;;;13213:2;13186:30;;;;;;;;12739:496::o;8705:723::-;8761:13;8982:10;8978:53;;-1:-1:-1;;9009:10:0;;;;;;;;;;;;-1:-1:-1;;;9009:10:0;;;;;8705:723::o;8978:53::-;9056:5;9041:12;9097:78;9104:9;;9097:78;;9130:8;;;;:::i;:::-;;-1:-1:-1;9153:10:0;;-1:-1:-1;9161:2:0;9153:10;;:::i;:::-;;;9097:78;;;9185:19;9217:6;9207:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9207:17:0;;9185:39;;9235:154;9242:10;;9235:154;;9269:11;9279:1;9269:11;;:::i;:::-;;-1:-1:-1;9338:10:0;9346:2;9338:5;:10;:::i;:::-;9325:24;;:2;:24;:::i;:::-;9312:39;;9295:6;9302;9295:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9295:56:0;;;;;;;;-1:-1:-1;9366:11:0;9375:2;9366:11;;:::i;:::-;;;9235:154;;15353:258;15427:13;15492:29;15500:5;:9;;;15492:18;;:27;:29::i;:::-;15528:31;15536:5;:11;;;15528:20;;:29;:31::i;:::-;15566:30;15574:5;:10;;;15566:19;;:28;:30::i;:::-;15467:135;;;;;;;;;;:::i;15623:254::-;15693:13;15772:16;:5;:14;:16::i;:::-;15795:17;:6;:15;:17::i;:::-;15733: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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:186::-;2769:6;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;2861:29;2880:9;2861:29;:::i;3141:773::-;3277:4;3319:3;3308:9;3304:19;3296:27;;3356:6;3350:13;3339:9;3332:32;3432:4;3424;3416:6;3412:17;3406:24;3402:35;3395:4;3384:9;3380:20;3373:65;3506:4;3498;3490:6;3486:17;3480:24;3476:35;3469:4;3458:9;3454:20;3447:65;3580:4;3572;3564:6;3560:17;3554:24;3550:35;3543:4;3532:9;3528:20;3521:65;3654:4;3646;3638:6;3634:17;3628:24;3624:35;3617:4;3606:9;3602:20;3595:65;3707:4;3699:6;3695:17;3689:24;3722:59;3775:4;3764:9;3760:20;3746:12;2990:4;2982:5;2976:12;2972:23;2967:3;2960:36;3057:4;3049;3042:5;3038:16;3032:23;3028:34;3021:4;3016:3;3012:14;3005:58;3124:4;3116;3109:5;3105:16;3099:23;3095:34;3088:4;3083:3;3079:14;3072:58;;;2901:235;3722:59;-1:-1:-1;3830:4:1;3818:17;;3812:24;2976:12;;2990:4;2972:23;;;3900:6;3885:22;;2960:36;3049:4;3038:16;;3032:23;3028:34;;3012:14;;;3005:58;3116:4;3105:16;;3099:23;3095:34;3079:14;;;3072:58;3845:63;3141:773;;;;:::o;3919:347::-;3984:6;3992;4045:2;4033:9;4024:7;4020:23;4016:32;4013:52;;;4061:1;4058;4051:12;4013:52;4084:29;4103:9;4084:29;:::i;:::-;4074:39;;4163:2;4152:9;4148:18;4135:32;4210:5;4203:13;4196:21;4189:5;4186:32;4176:60;;4232:1;4229;4222:12;4176:60;4255:5;4245:15;;;3919:347;;;;;:::o;4271:127::-;4332:10;4327:3;4323:20;4320:1;4313:31;4363:4;4360:1;4353:15;4387:4;4384:1;4377:15;4403:1138;4498:6;4506;4514;4522;4575:3;4563:9;4554:7;4550:23;4546:33;4543:53;;;4592:1;4589;4582:12;4543:53;4615:29;4634:9;4615:29;:::i;:::-;4605:39;;4663:38;4697:2;4686:9;4682:18;4663:38;:::i;:::-;4653:48;;4748:2;4737:9;4733:18;4720:32;4710:42;;4803:2;4792:9;4788:18;4775:32;4826:18;4867:2;4859:6;4856:14;4853:34;;;4883:1;4880;4873:12;4853:34;4921:6;4910:9;4906:22;4896:32;;4966:7;4959:4;4955:2;4951:13;4947:27;4937:55;;4988:1;4985;4978:12;4937:55;5024:2;5011:16;5046:2;5042;5039:10;5036:36;;;5052:18;;:::i;:::-;5127:2;5121:9;5095:2;5181:13;;-1:-1:-1;;5177:22:1;;;5201:2;5173:31;5169:40;5157:53;;;5225:18;;;5245:22;;;5222:46;5219:72;;;5271:18;;:::i;:::-;5311:10;5307:2;5300:22;5346:2;5338:6;5331:18;5386:7;5381:2;5376;5372;5368:11;5364:20;5361:33;5358:53;;;5407:1;5404;5397:12;5358:53;5463:2;5458;5454;5450:11;5445:2;5437:6;5433:15;5420:46;5508:1;5503:2;5498;5490:6;5486:15;5482:24;5475:35;5529:6;5519:16;;;;;;;4403:1138;;;;;;;:::o;5546:260::-;5614:6;5622;5675:2;5663:9;5654:7;5650:23;5646:32;5643:52;;;5691:1;5688;5681:12;5643:52;5714:29;5733:9;5714:29;:::i;:::-;5704:39;;5762:38;5796:2;5785:9;5781:18;5762:38;:::i;:::-;5752:48;;5546:260;;;;;:::o;5811:380::-;5890:1;5886:12;;;;5933;;;5954:61;;6008:4;6000:6;5996:17;5986:27;;5954:61;6061:2;6053:6;6050:14;6030:18;6027:38;6024:161;;;6107:10;6102:3;6098:20;6095:1;6088:31;6142:4;6139:1;6132:15;6170:4;6167:1;6160:15;6024:161;;5811:380;;;:::o;7602:127::-;7663:10;7658:3;7654:20;7651:1;7644:31;7694:4;7691:1;7684:15;7718:4;7715:1;7708:15;7734:168;7774:7;7840:1;7836;7832:6;7828:14;7825:1;7822:21;7817:1;7810:9;7803:17;7799:45;7796:71;;;7847:18;;:::i;:::-;-1:-1:-1;7887:9:1;;7734:168::o;8261:128::-;8301:3;8332:1;8328:6;8325:1;8322:13;8319:39;;;8338:18;;:::i;:::-;-1:-1:-1;8374:9:1;;8261:128::o;8746:125::-;8786:4;8814:1;8811;8808:8;8805:34;;;8819:18;;:::i;:::-;-1:-1:-1;8856:9:1;;8746:125::o;9493:135::-;9532:3;-1:-1:-1;;9553:17:1;;9550:43;;;9573:18;;:::i;:::-;-1:-1:-1;9620:1:1;9609:13;;9493:135::o;10401:127::-;10462:10;10457:3;10453:20;10450:1;10443:31;10493:4;10490:1;10483:15;10517:4;10514:1;10507:15;10533:112;10565:1;10591;10581:35;;10596:18;;:::i;:::-;-1:-1:-1;10630:9:1;;10533:112::o;10650:127::-;10711:10;10706:3;10702:20;10699:1;10692:31;10742:4;10739:1;10732:15;10766:4;10763:1;10756:15;10782:500;-1:-1:-1;;;;;11051:15:1;;;11033:34;;11103:15;;11098:2;11083:18;;11076:43;11150:2;11135:18;;11128:34;;;11198:3;11193:2;11178:18;;11171:31;;;10976:4;;11219:57;;11256:19;;11248:6;11219:57;:::i;11287:249::-;11356:6;11409:2;11397:9;11388:7;11384:23;11380:32;11377:52;;;11425:1;11422;11415:12;11377:52;11457:9;11451:16;11476:30;11500:5;11476:30;:::i;11541:185::-;11583:3;11621:5;11615:12;11636:52;11681:6;11676:3;11669:4;11662:5;11658:16;11636:52;:::i;:::-;11704:16;;;;;11541:185;-1:-1:-1;;11541:185:1:o;11731:1889::-;-1:-1:-1;;;12683:43:1;;12749:13;;12665:3;;12771:61;12749:13;12821:1;12812:11;;12805:4;12793:17;;12771:61;:::i;:::-;-1:-1:-1;;;12891:1:1;12851:16;;;12883:10;;;12876:66;12971:34;12966:2;12958:11;;12951:55;-1:-1:-1;;;13030:2:1;13022:11;;13015:29;-1:-1:-1;;;13068:2:1;13060:11;;13053:69;13147:13;;13169:63;13147:13;13218:2;13210:11;;13203:4;13191:17;;13169:63;:::i;:::-;-1:-1:-1;;;13292:2:1;13251:17;;;;13284:11;;;13277:59;13365:28;13360:2;13352:11;;13345:49;13419:13;;13441:64;13419:13;13490:3;13482:12;;13475:4;13463:17;;13441:64;:::i;:::-;-1:-1:-1;;;13565:3:1;13524:17;;;;13557:12;;;13550:36;13610:3;13602:12;;11731:1889;-1:-1:-1;;;;;11731:1889:1:o;13625:470::-;13804:3;13842:6;13836:13;13858:53;13904:6;13899:3;13892:4;13884:6;13880:17;13858:53;:::i;:::-;13974:13;;13933:16;;;;13996:57;13974:13;13933:16;14030:4;14018:17;;13996:57;:::i;:::-;14069:20;;13625:470;-1:-1:-1;;;;13625:470:1:o;14100:157::-;14130:1;14164:4;14161:1;14157:12;14188:3;14178:37;;14195:18;;:::i;:::-;14247:3;14240:4;14237:1;14233:12;14229:22;14224:27;;;14100:157;;;;:::o;14388:973::-;14473:12;;14438:3;;14528:1;14548:18;;;;14601;;;;14628:61;;14682:4;14674:6;14670:17;14660:27;;14628:61;14708:2;14756;14748:6;14745:14;14725:18;14722:38;14719:161;;;14802:10;14797:3;14793:20;14790:1;14783:31;14837:4;14834:1;14827:15;14865:4;14862:1;14855:15;14719:161;14896:18;14923:104;;;;15041:1;15036:319;;;;14889:466;;14923:104;-1:-1:-1;;14956:24:1;;14944:37;;15001:16;;;;-1:-1:-1;14923:104:1;;15036:319;14335:1;14328:14;;;14372:4;14359:18;;15130:1;15144:165;15158:6;15155:1;15152:13;15144:165;;;15236:14;;15223:11;;;15216:35;15279:16;;;;15173:10;;15144:165;;;15148:3;;15338:6;15333:3;15329:16;15322:23;;14889:466;;;;;;;14388:973;;;;:::o;15366:757::-;15789:3;15817:38;15851:3;15843:6;15817:38;:::i;:::-;-1:-1:-1;;;15871:2:1;15864:20;15903:45;15945:1;15941:2;15937:10;15929:6;15903:45;:::i;:::-;15893:55;;-1:-1:-1;;;15964:2:1;15957:16;16002:6;15996:13;16018:60;16071:6;16067:1;16063:2;16059:10;16052:4;16044:6;16040:17;16018:60;:::i;:::-;16098:15;16115:1;16094:23;;15366:757;-1:-1:-1;;;;;15366:757:1:o;16128:2227::-;17123:66;17118:3;17111:79;17093:3;17209:47;17252:2;17247:3;17243:12;17235:6;17209:47;:::i;:::-;17276:66;17265:78;;-1:-1:-1;;;17367:2:1;17359:11;;17352:38;17409:46;17451:2;17443:11;;17435:6;17409:46;:::i;:::-;17475:66;17464:78;;-1:-1:-1;;;17566:2:1;17558:11;;17551:33;17399:56;-1:-1:-1;17603:46:1;17645:2;17637:11;;17629:6;17603:46;:::i;:::-;17669:66;17658:78;;-1:-1:-1;;;17760:2:1;17752:11;;17745:43;17593:56;-1:-1:-1;17807:46:1;17849:2;17841:11;;17833:6;17807:46;:::i;:::-;17797:56;;17873:66;17869:2;17862:78;17968:28;17963:3;17959:38;18026:2;18021;18017;18013:11;18006:23;18058:6;18052:13;18074:59;18126:6;18121:2;18117;18113:11;18108:2;18100:6;18096:15;18074:59;:::i;:::-;18196:66;18191:2;18152:15;;;;18183:11;;;18176:87;18287:2;18279:11;;18272:23;18311:38;18345:2;18337:11;;18329:6;18311:38;:::i;:::-;18304:45;16128:2227;-1:-1:-1;;;;;;;;;16128:2227:1:o;18360:1338::-;18890:3;18928:6;18922:13;18944:53;18990:6;18985:3;18978:4;18970:6;18966:17;18944:53;:::i;:::-;19028:6;19023:3;19019:16;19006:29;;19058:34;19051:5;19044:49;19127:32;19120:4;19113:5;19109:16;19102:58;19191:6;19185:13;19207:66;19264:8;19259:2;19252:5;19248:14;19241:4;19233:6;19229:17;19207:66;:::i;:::-;19341:34;19336:2;19292:20;;;;19328:11;;;19321:55;19405:34;19400:2;19392:11;;19385:55;-1:-1:-1;;;19464:3:1;19456:12;;19449:26;19500:13;;19522:64;19500:13;19571:3;19563:12;;19556:4;19544:17;;19522:64;:::i;:::-;-1:-1:-1;;;19646:3:1;19605:17;;;;19638:12;;;19631:33;19688:3;19680:12;;18360:1338;-1:-1:-1;;;;;18360:1338:1:o;19703:120::-;19743:1;19769;19759:35;;19774:18;;:::i;:::-;-1:-1:-1;19808:9:1;;19703:120::o;19828:204::-;19866:3;19902:4;19899:1;19895:12;19934:4;19931:1;19927:12;19969:3;19963:4;19959:14;19954:3;19951:23;19948:49;;;19977:18;;:::i;:::-;20013:13;;19828:204;-1:-1:-1;;;19828:204:1:o;20037:195::-;20075:4;20112;20109:1;20105:12;20144:4;20141:1;20137:12;20169:3;20164;20161:12;20158:38;;;20176:18;;:::i;:::-;20213:13;;;20037:195;-1:-1:-1;;;20037:195:1:o;20237:1247::-;-1:-1:-1;;;20893:3:1;20886:19;20868:3;20934:6;20928:13;20950:61;21004:6;21000:1;20995:3;20991:11;20984:4;20976:6;20972:17;20950:61;:::i;:::-;21039:6;21034:3;21030:16;21020:26;;-1:-1:-1;;;21096:2:1;21092:1;21088:2;21084:10;21077:22;21130:6;21124:13;21146:62;21199:8;21195:1;21191:2;21187:10;21180:4;21172:6;21168:17;21146:62;:::i;:::-;21268:1;21227:17;;21260:10;;;21253:22;21300:13;;21322:62;21300:13;21371:1;21363:10;;21356:4;21344:17;;21322:62;:::i;:::-;-1:-1:-1;;;21444:1:1;21403:17;;;;21436:10;;;21429:23;21476:1;21468:10;;20237:1247;-1:-1:-1;;;;;20237:1247:1:o;21489:1002::-;-1:-1:-1;;;21996:3:1;21989:33;21971:3;22051:6;22045:13;22067:62;22122:6;22117:2;22112:3;22108:12;22101:4;22093:6;22089:17;22067:62;:::i;:::-;-1:-1:-1;;;22188:2:1;22148:16;;;22180:11;;;22173:24;22222:13;;22244:63;22222:13;22293:2;22285:11;;22278:4;22266:17;;22244:63;:::i;:::-;22372:34;22367:2;22326:17;;;;22359:11;;;22352:55;-1:-1:-1;;;22431:2:1;22423:11;;22416:42;22482:2;22474:11;;21489:1002;-1:-1:-1;;;;21489:1002:1:o
Swarm Source
ipfs://fb0bc94917a2e299bd9d7c282cb670c4d12c184e79befb694533044c6e285eb6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.