ERC-721
NFT
Overview
Max Total Supply
8,888 VIVID
Holders
3,348
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 VIVIDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Vivid
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-06 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // 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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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); } // File: contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 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 auxillary 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 auxillary 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _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)) } } } } /** * @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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 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: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/VIVID.sol pragma solidity ^0.8.10; // ▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▒ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓ ▒▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▒▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▒ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▒ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓░ ▓▓▓▓▓▓▓▓▓▒ ▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓ ▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓ ▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓ // // // ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓ ▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // ▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓ ▓▓▓▓▓▓ ▓▓▓▓▓ ▒▓ ▓▓▓▓▓▓ // ▓▓▓▓▓▓ ▓▓▓▓▓▒ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓ ▓▓▓▓▓ ▒▓▓▓▓ ▓▓▓▓▓▓▓ // ▓▓▓▓▓▓ ▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▒▓▓▓▓▓▓░ ▓▓▓▓▓▓▓ // ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓ ▒▓▓▓▓ ▓▓▓▓▓▓ // ▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▒ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓ ▒▓▓▓▓▓▓▓▓▓▓▓▓▓▓ // // https://vivid.limited contract Vivid is ERC721A, Ownable { using Strings for uint256; uint256 public tokenSupply = 8888; uint256 public price = 0.3 ether; uint256 public wlPrice = 0.25 ether; uint256 public maxMint = 2; uint256 public maxWlMint = 2; bool public publicSale = false; bool public whitelistSale = false; mapping(address => uint256) public _whitelistClaimed; string public baseURI = "https://vivid.limited"; bytes32 public merkleRoot = 0xed60684dc9b8c04fd3cc6bb928ab4d2f714314124cd429b681bae2bbb976d07f; constructor() ERC721A("VIVID", "VIVID") { } function toggleWhitelistSale() external onlyOwner { whitelistSale = !whitelistSale; } function togglePublicSale() external onlyOwner { publicSale = !publicSale; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setPrice(uint256 _price) public onlyOwner { price = _price; } function setWlPrice(uint256 _wlprice) public onlyOwner { wlPrice = _wlprice; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setMaxMint(uint256 _newMaxMint) external onlyOwner { maxMint = _newMaxMint; } function setMaxWlMint(uint256 _newMaxMint) external onlyOwner { maxWlMint = _newMaxMint; } function setSupply(uint256 _newSupply) external onlyOwner { tokenSupply = _newSupply; } function whitelistMint(uint256 tokens, bytes32[] calldata merkleProof) external payable { require(whitelistSale, "Mint is innactive."); require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not on Whitelist."); require(balanceOf(_msgSender()) + tokens <= maxWlMint, "This would exceed the per address whitelist mint limit."); require(totalSupply() + tokens <= tokenSupply, "This would exceed the token supply."); require(tokens > 0, "Must mint atleast 1."); require(msg.value >= wlPrice * tokens, "Not Enough Ether."); _safeMint(_msgSender(), tokens); _whitelistClaimed[_msgSender()] += tokens; } function mint(uint256 tokens) external payable { require(publicSale, "Mint is innactive."); require(balanceOf(_msgSender()) + tokens <= maxMint, "This would exceed the per address mint limit."); require(totalSupply() + tokens <= tokenSupply, "This would exceed the token supply."); require(tokens > 0, "Must mint atleast 1."); require(msg.value >= price * tokens, "Not Enough Ether."); _safeMint(_msgSender(), tokens); } function airdrop(address to, uint256 tokens) external onlyOwner { require(totalSupply() + tokens <= tokenSupply, "QTY would exceed supply."); require(tokens > 0, "Token Qty must be atleast 1."); _safeMint(to, tokens); } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"","type":"address"}],"name":"_whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWlMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","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":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxWlMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlprice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526122b8600955670429d069189e0000600a556703782dace9d90000600b556002600c556002600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506040518060400160405280601581526020017f68747470733a2f2f76697669642e6c696d69746564000000000000000000000081525060109080519060200190620000af92919062000294565b507fed60684dc9b8c04fd3cc6bb928ab4d2f714314124cd429b681bae2bbb976d07f60001b601155348015620000e457600080fd5b506040518060400160405280600581526020017f56495649440000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f564956494400000000000000000000000000000000000000000000000000000081525081600290805190602001906200016992919062000294565b5080600390805190602001906200018292919062000294565b5062000193620001c160201b60201c565b6000819055505050620001bb620001af620001c660201b60201c565b620001ce60201b60201c565b620003a8565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a29062000373565b90600052602060002090601f016020900481019282620002c6576000855562000312565b82601f10620002e157805160ff191683800117855562000312565b8280016001018555821562000312579182015b8281111562000311578251825591602001919060010190620002f4565b5b50905062000321919062000325565b5090565b5b808211156200034057600081600090555060010162000326565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038c57607f821691505b602082108103620003a257620003a162000344565b5b50919050565b613c2280620003b86000396000f3fe60806040526004361061023b5760003560e01c80637501f7411161012e578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd14610816578063d2cab05614610853578063e222c7f91461086f578063e985e9c514610886578063f2fde38b146108c35761023b565b8063a035b1fe14610752578063a0712d681461077d578063a22cb46514610799578063b88d4fde146107c2578063c7f8d01a146107eb5761023b565b80638ba4cc3c116100f25780638ba4cc3c146106815780638da5cb5b146106aa5780638dd07d0f146106d557806391b7f5ed146106fe57806395d89b41146107275761023b565b80637501f7411461059c5780637824407f146105c75780637cb64759146105f2578063851a77081461061b57806385a0917a146106585761023b565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104b55780636c0360eb146104f257806370a082311461051d578063715018a61461055a578063726c44e1146105715761023b565b80633ccfd60b1461040c57806342842e0e14610423578063547520fe1461044c57806355f804b31461047557806359eda1b51461049e5761023b565b806323b872dd1161020357806323b872dd146103395780632eb4a7ab1461036257806331ffd6f11461038d57806333bc1c5c146103b85780633b4c4b25146103e35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612b80565b6108ec565b6040516102749190612bc8565b60405180910390f35b34801561028957600080fd5b5061029261097e565b60405161029f9190612c7c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612cd4565b610a10565b6040516102dc9190612d42565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612d89565b610a8c565b005b34801561031a57600080fd5b50610323610c32565b6040516103309190612dd8565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612df3565b610c49565b005b34801561036e57600080fd5b50610377610c59565b6040516103849190612e5f565b60405180910390f35b34801561039957600080fd5b506103a2610c5f565b6040516103af9190612bc8565b60405180910390f35b3480156103c457600080fd5b506103cd610c72565b6040516103da9190612bc8565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612cd4565b610c85565b005b34801561041857600080fd5b50610421610d0b565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612df3565b610e07565b005b34801561045857600080fd5b50610473600480360381019061046e9190612cd4565b610e27565b005b34801561048157600080fd5b5061049c60048036038101906104979190612faf565b610ead565b005b3480156104aa57600080fd5b506104b3610f43565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612cd4565b610feb565b6040516104e99190612d42565b60405180910390f35b3480156104fe57600080fd5b50610507610ffd565b6040516105149190612c7c565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612ff8565b61108b565b6040516105519190612dd8565b60405180910390f35b34801561056657600080fd5b5061056f61111f565b005b34801561057d57600080fd5b506105866111a7565b6040516105939190612dd8565b60405180910390f35b3480156105a857600080fd5b506105b16111ad565b6040516105be9190612dd8565b60405180910390f35b3480156105d357600080fd5b506105dc6111b3565b6040516105e99190612dd8565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613051565b6111b9565b005b34801561062757600080fd5b50610642600480360381019061063d9190612ff8565b61123f565b60405161064f9190612dd8565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612cd4565b611257565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612d89565b6112dd565b005b3480156106b657600080fd5b506106bf611401565b6040516106cc9190612d42565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612cd4565b61142b565b005b34801561070a57600080fd5b5061072560048036038101906107209190612cd4565b6114b1565b005b34801561073357600080fd5b5061073c611537565b6040516107499190612c7c565b60405180910390f35b34801561075e57600080fd5b506107676115c9565b6040516107749190612dd8565b60405180910390f35b61079760048036038101906107929190612cd4565b6115cf565b005b3480156107a557600080fd5b506107c060048036038101906107bb91906130aa565b61177b565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061318b565b6118f2565b005b3480156107f757600080fd5b50610800611965565b60405161080d9190612dd8565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190612cd4565b61196b565b60405161084a9190612c7c565b60405180910390f35b61086d6004803603810190610868919061326e565b611a09565b005b34801561087b57600080fd5b50610884611cc7565b005b34801561089257600080fd5b506108ad60048036038101906108a891906132ce565b611d6f565b6040516108ba9190612bc8565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190612ff8565b611e03565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109775750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098d9061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546109b99061333d565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b82611efa565b610a51576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9782611f59565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610afe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1d612025565b73ffffffffffffffffffffffffffffffffffffffff1614610b8057610b4981610b44612025565b611d6f565b610b7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c3c61202d565b6001546000540303905090565b610c54838383612032565b505050565b60115481565b600e60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b610c8d6123f7565b73ffffffffffffffffffffffffffffffffffffffff16610cab611401565b73ffffffffffffffffffffffffffffffffffffffff1614610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906133ba565b60405180910390fd5b8060098190555050565b610d136123f7565b73ffffffffffffffffffffffffffffffffffffffff16610d31611401565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906133ba565b60405180910390fd5b6000610d91611401565b73ffffffffffffffffffffffffffffffffffffffff1647604051610db49061340b565b60006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5050905080610e0457600080fd5b50565b610e22838383604051806020016040528060008152506118f2565b505050565b610e2f6123f7565b73ffffffffffffffffffffffffffffffffffffffff16610e4d611401565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a906133ba565b60405180910390fd5b80600c8190555050565b610eb56123f7565b73ffffffffffffffffffffffffffffffffffffffff16610ed3611401565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906133ba565b60405180910390fd5b8060109080519060200190610f3f929190612a71565b5050565b610f4b6123f7565b73ffffffffffffffffffffffffffffffffffffffff16610f69611401565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906133ba565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000610ff682611f59565b9050919050565b6010805461100a9061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546110369061333d565b80156110835780601f1061105857610100808354040283529160200191611083565b820191906000526020600020905b81548152906001019060200180831161106657829003601f168201915b505050505081565b600080611097836123ff565b036110ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111276123f7565b73ffffffffffffffffffffffffffffffffffffffff16611145611401565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906133ba565b60405180910390fd5b6111a56000612409565b565b600d5481565b600c5481565b60095481565b6111c16123f7565b73ffffffffffffffffffffffffffffffffffffffff166111df611401565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906133ba565b60405180910390fd5b8060118190555050565b600f6020528060005260406000206000915090505481565b61125f6123f7565b73ffffffffffffffffffffffffffffffffffffffff1661127d611401565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca906133ba565b60405180910390fd5b80600d8190555050565b6112e56123f7565b73ffffffffffffffffffffffffffffffffffffffff16611303611401565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906133ba565b60405180910390fd5b60095481611365610c32565b61136f919061344f565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906134f1565b60405180910390fd5b600081116113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea9061355d565b60405180910390fd5b6113fd82826124cf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114336123f7565b73ffffffffffffffffffffffffffffffffffffffff16611451611401565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e906133ba565b60405180910390fd5b80600b8190555050565b6114b96123f7565b73ffffffffffffffffffffffffffffffffffffffff166114d7611401565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906133ba565b60405180910390fd5b80600a8190555050565b6060600380546115469061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546115729061333d565b80156115bf5780601f10611594576101008083540402835291602001916115bf565b820191906000526020600020905b8154815290600101906020018083116115a257829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff1661161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906135c9565b60405180910390fd5b600c548161163261162d6123f7565b61108b565b61163c919061344f565b111561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061365b565b60405180910390fd5b60095481611689610c32565b611693919061344f565b11156116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb906136ed565b60405180910390fd5b60008111611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613759565b60405180910390fd5b80600a546117259190613779565b341015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061381f565b60405180910390fd5b6117786117726123f7565b826124cf565b50565b611783612025565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f4612025565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a1612025565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e69190612bc8565b60405180910390a35050565b6118fd848484612032565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461195f57611928848484846124ed565b61195e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b606061197682611efa565b6119ac576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119b661263d565b905060008151036119d65760405180602001604052806000815250611a01565b806119e0846126cf565b6040516020016119f192919061387b565b6040516020818303038152906040525b915050919050565b600e60019054906101000a900460ff16611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906135c9565b60405180910390fd5b611acc828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115433604051602001611ab191906138e7565b60405160208183030381529060405280519060200120612729565b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061394e565b60405180910390fd5b600d5483611b1f611b1a6123f7565b61108b565b611b29919061344f565b1115611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906139e0565b60405180910390fd5b60095483611b76610c32565b611b80919061344f565b1115611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb8906136ed565b60405180910390fd5b60008311611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90613759565b60405180910390fd5b82600b54611c129190613779565b341015611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061381f565b60405180910390fd5b611c65611c5f6123f7565b846124cf565b82600f6000611c726123f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbb919061344f565b92505081905550505050565b611ccf6123f7565b73ffffffffffffffffffffffffffffffffffffffff16611ced611401565b73ffffffffffffffffffffffffffffffffffffffff1614611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a906133ba565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0b6123f7565b73ffffffffffffffffffffffffffffffffffffffff16611e29611401565b73ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e76906133ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee590613a72565b60405180910390fd5b611ef781612409565b50565b600081611f0561202d565b11158015611f14575060005482105b8015611f52575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611f6861202d565b11611fee57600054811015611fed5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611feb575b60008103611fe1576004600083600190039350838152602001908152602001600020549050611fb7565b8092505050612020565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061203d82611f59565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166120fd612025565b73ffffffffffffffffffffffffffffffffffffffff16148061212c575061212b86612126612025565b611d6f565b5b80612169575061213a612025565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806121a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121ad866123ff565b036121e4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f18686866001612740565b60006121fc836123ff565b14612238576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6122ff876123ff565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036123875760006001850190506000600460008381526020019081526020016000205403612385576000548114612384578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123ef8686866001612746565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124e982826040518060200160405280600081525061274c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612513612025565b8786866040518563ffffffff1660e01b81526004016125359493929190613ae7565b6020604051808303816000875af192505050801561257157506040513d601f19601f8201168201806040525081019061256e9190613b48565b60015b6125ea573d80600081146125a1576040519150601f19603f3d011682016040523d82523d6000602084013e6125a6565b606091505b5060008151036125e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461264c9061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546126789061333d565b80156126c55780601f1061269a576101008083540402835291602001916126c5565b820191906000526020600020905b8154815290600101906020018083116126a857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561271557600183039250600a81066030018353600a810490506126f5565b508181036020830392508083525050919050565b60008261273685846129db565b1490509392505050565b50505050565b50505050565b600080549050600061275d856123ff565b03612794576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036127ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127db6000858386612740565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161284060018514612a50565b901b60a042901b612850866123ff565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612954575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461290460008784806001019550876124ed565b61293a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061289557826000541461294f57600080fd5b6129bf565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612955575b8160008190555050506129d56000858386612746565b50505050565b60008082905060005b8451811015612a45576000858281518110612a0257612a01613b75565b5b60200260200101519050808311612a2457612a1d8382612a5a565b9250612a31565b612a2e8184612a5a565b92505b508080612a3d90613ba4565b9150506129e4565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612a7d9061333d565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612af7565b5090565b5b80821115612b10576000816000905550600101612af8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5d81612b28565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b600060208284031215612b9657612b95612b1e565b5b6000612ba484828501612b6b565b91505092915050565b60008115159050919050565b612bc281612bad565b82525050565b6000602082019050612bdd6000830184612bb9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c1d578082015181840152602081019050612c02565b83811115612c2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4e82612be3565b612c588185612bee565b9350612c68818560208601612bff565b612c7181612c32565b840191505092915050565b60006020820190508181036000830152612c968184612c43565b905092915050565b6000819050919050565b612cb181612c9e565b8114612cbc57600080fd5b50565b600081359050612cce81612ca8565b92915050565b600060208284031215612cea57612ce9612b1e565b5b6000612cf884828501612cbf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2c82612d01565b9050919050565b612d3c81612d21565b82525050565b6000602082019050612d576000830184612d33565b92915050565b612d6681612d21565b8114612d7157600080fd5b50565b600081359050612d8381612d5d565b92915050565b60008060408385031215612da057612d9f612b1e565b5b6000612dae85828601612d74565b9250506020612dbf85828601612cbf565b9150509250929050565b612dd281612c9e565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600080600060608486031215612e0c57612e0b612b1e565b5b6000612e1a86828701612d74565b9350506020612e2b86828701612d74565b9250506040612e3c86828701612cbf565b9150509250925092565b6000819050919050565b612e5981612e46565b82525050565b6000602082019050612e746000830184612e50565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ebc82612c32565b810181811067ffffffffffffffff82111715612edb57612eda612e84565b5b80604052505050565b6000612eee612b14565b9050612efa8282612eb3565b919050565b600067ffffffffffffffff821115612f1a57612f19612e84565b5b612f2382612c32565b9050602081019050919050565b82818337600083830152505050565b6000612f52612f4d84612eff565b612ee4565b905082815260208101848484011115612f6e57612f6d612e7f565b5b612f79848285612f30565b509392505050565b600082601f830112612f9657612f95612e7a565b5b8135612fa6848260208601612f3f565b91505092915050565b600060208284031215612fc557612fc4612b1e565b5b600082013567ffffffffffffffff811115612fe357612fe2612b23565b5b612fef84828501612f81565b91505092915050565b60006020828403121561300e5761300d612b1e565b5b600061301c84828501612d74565b91505092915050565b61302e81612e46565b811461303957600080fd5b50565b60008135905061304b81613025565b92915050565b60006020828403121561306757613066612b1e565b5b60006130758482850161303c565b91505092915050565b61308781612bad565b811461309257600080fd5b50565b6000813590506130a48161307e565b92915050565b600080604083850312156130c1576130c0612b1e565b5b60006130cf85828601612d74565b92505060206130e085828601613095565b9150509250929050565b600067ffffffffffffffff82111561310557613104612e84565b5b61310e82612c32565b9050602081019050919050565b600061312e613129846130ea565b612ee4565b90508281526020810184848401111561314a57613149612e7f565b5b613155848285612f30565b509392505050565b600082601f83011261317257613171612e7a565b5b813561318284826020860161311b565b91505092915050565b600080600080608085870312156131a5576131a4612b1e565b5b60006131b387828801612d74565b94505060206131c487828801612d74565b93505060406131d587828801612cbf565b925050606085013567ffffffffffffffff8111156131f6576131f5612b23565b5b6132028782880161315d565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261322e5761322d612e7a565b5b8235905067ffffffffffffffff81111561324b5761324a61320e565b5b60208301915083602082028301111561326757613266613213565b5b9250929050565b60008060006040848603121561328757613286612b1e565b5b600061329586828701612cbf565b935050602084013567ffffffffffffffff8111156132b6576132b5612b23565b5b6132c286828701613218565b92509250509250925092565b600080604083850312156132e5576132e4612b1e565b5b60006132f385828601612d74565b925050602061330485828601612d74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061335557607f821691505b6020821081036133685761336761330e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a4602083612bee565b91506133af8261336e565b602082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b600081905092915050565b50565b60006133f56000836133da565b9150613400826133e5565b600082019050919050565b6000613416826133e8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061345a82612c9e565b915061346583612c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561349a57613499613420565b5b828201905092915050565b7f51545920776f756c642065786365656420737570706c792e0000000000000000600082015250565b60006134db601883612bee565b91506134e6826134a5565b602082019050919050565b6000602082019050818103600083015261350a816134ce565b9050919050565b7f546f6b656e20517479206d7573742062652061746c6561737420312e00000000600082015250565b6000613547601c83612bee565b915061355282613511565b602082019050919050565b600060208201905081810360008301526135768161353a565b9050919050565b7f4d696e7420697320696e6e6163746976652e0000000000000000000000000000600082015250565b60006135b3601283612bee565b91506135be8261357d565b602082019050919050565b600060208201905081810360008301526135e2816135a6565b9050919050565b7f5468697320776f756c642065786365656420746865207065722061646472657360008201527f73206d696e74206c696d69742e00000000000000000000000000000000000000602082015250565b6000613645602d83612bee565b9150613650826135e9565b604082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f5468697320776f756c64206578636565642074686520746f6b656e207375707060008201527f6c792e0000000000000000000000000000000000000000000000000000000000602082015250565b60006136d7602383612bee565b91506136e28261367b565b604082019050919050565b60006020820190508181036000830152613706816136ca565b9050919050565b7f4d757374206d696e742061746c6561737420312e000000000000000000000000600082015250565b6000613743601483612bee565b915061374e8261370d565b602082019050919050565b6000602082019050818103600083015261377281613736565b9050919050565b600061378482612c9e565b915061378f83612c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c8576137c7613420565b5b828202905092915050565b7f4e6f7420456e6f7567682045746865722e000000000000000000000000000000600082015250565b6000613809601183612bee565b9150613814826137d3565b602082019050919050565b60006020820190508181036000830152613838816137fc565b9050919050565b600081905092915050565b600061385582612be3565b61385f818561383f565b935061386f818560208601612bff565b80840191505092915050565b6000613887828561384a565b9150613893828461384a565b91508190509392505050565b60008160601b9050919050565b60006138b78261389f565b9050919050565b60006138c9826138ac565b9050919050565b6138e16138dc82612d21565b6138be565b82525050565b60006138f382846138d0565b60148201915081905092915050565b7f4e6f74206f6e2057686974656c6973742e000000000000000000000000000000600082015250565b6000613938601183612bee565b915061394382613902565b602082019050919050565b600060208201905081810360008301526139678161392b565b9050919050565b7f5468697320776f756c642065786365656420746865207065722061646472657360008201527f732077686974656c697374206d696e74206c696d69742e000000000000000000602082015250565b60006139ca603783612bee565b91506139d58261396e565b604082019050919050565b600060208201905081810360008301526139f9816139bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a5c602683612bee565b9150613a6782613a00565b604082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab982613a92565b613ac38185613a9d565b9350613ad3818560208601612bff565b613adc81612c32565b840191505092915050565b6000608082019050613afc6000830187612d33565b613b096020830186612d33565b613b166040830185612dc9565b8181036060830152613b288184613aae565b905095945050505050565b600081519050613b4281612b54565b92915050565b600060208284031215613b5e57613b5d612b1e565b5b6000613b6c84828501613b33565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613baf82612c9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613be157613be0613420565b5b60018201905091905056fea2646970667358221220dd26fea0b7e3b79ffd6827792164705962f4b2416975c107b677a40807b3ac3664736f6c634300080e0033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80637501f7411161012e578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd14610816578063d2cab05614610853578063e222c7f91461086f578063e985e9c514610886578063f2fde38b146108c35761023b565b8063a035b1fe14610752578063a0712d681461077d578063a22cb46514610799578063b88d4fde146107c2578063c7f8d01a146107eb5761023b565b80638ba4cc3c116100f25780638ba4cc3c146106815780638da5cb5b146106aa5780638dd07d0f146106d557806391b7f5ed146106fe57806395d89b41146107275761023b565b80637501f7411461059c5780637824407f146105c75780637cb64759146105f2578063851a77081461061b57806385a0917a146106585761023b565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104b55780636c0360eb146104f257806370a082311461051d578063715018a61461055a578063726c44e1146105715761023b565b80633ccfd60b1461040c57806342842e0e14610423578063547520fe1461044c57806355f804b31461047557806359eda1b51461049e5761023b565b806323b872dd1161020357806323b872dd146103395780632eb4a7ab1461036257806331ffd6f11461038d57806333bc1c5c146103b85780633b4c4b25146103e35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612b80565b6108ec565b6040516102749190612bc8565b60405180910390f35b34801561028957600080fd5b5061029261097e565b60405161029f9190612c7c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612cd4565b610a10565b6040516102dc9190612d42565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612d89565b610a8c565b005b34801561031a57600080fd5b50610323610c32565b6040516103309190612dd8565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612df3565b610c49565b005b34801561036e57600080fd5b50610377610c59565b6040516103849190612e5f565b60405180910390f35b34801561039957600080fd5b506103a2610c5f565b6040516103af9190612bc8565b60405180910390f35b3480156103c457600080fd5b506103cd610c72565b6040516103da9190612bc8565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612cd4565b610c85565b005b34801561041857600080fd5b50610421610d0b565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612df3565b610e07565b005b34801561045857600080fd5b50610473600480360381019061046e9190612cd4565b610e27565b005b34801561048157600080fd5b5061049c60048036038101906104979190612faf565b610ead565b005b3480156104aa57600080fd5b506104b3610f43565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612cd4565b610feb565b6040516104e99190612d42565b60405180910390f35b3480156104fe57600080fd5b50610507610ffd565b6040516105149190612c7c565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612ff8565b61108b565b6040516105519190612dd8565b60405180910390f35b34801561056657600080fd5b5061056f61111f565b005b34801561057d57600080fd5b506105866111a7565b6040516105939190612dd8565b60405180910390f35b3480156105a857600080fd5b506105b16111ad565b6040516105be9190612dd8565b60405180910390f35b3480156105d357600080fd5b506105dc6111b3565b6040516105e99190612dd8565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613051565b6111b9565b005b34801561062757600080fd5b50610642600480360381019061063d9190612ff8565b61123f565b60405161064f9190612dd8565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612cd4565b611257565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612d89565b6112dd565b005b3480156106b657600080fd5b506106bf611401565b6040516106cc9190612d42565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612cd4565b61142b565b005b34801561070a57600080fd5b5061072560048036038101906107209190612cd4565b6114b1565b005b34801561073357600080fd5b5061073c611537565b6040516107499190612c7c565b60405180910390f35b34801561075e57600080fd5b506107676115c9565b6040516107749190612dd8565b60405180910390f35b61079760048036038101906107929190612cd4565b6115cf565b005b3480156107a557600080fd5b506107c060048036038101906107bb91906130aa565b61177b565b005b3480156107ce57600080fd5b506107e960048036038101906107e4919061318b565b6118f2565b005b3480156107f757600080fd5b50610800611965565b60405161080d9190612dd8565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190612cd4565b61196b565b60405161084a9190612c7c565b60405180910390f35b61086d6004803603810190610868919061326e565b611a09565b005b34801561087b57600080fd5b50610884611cc7565b005b34801561089257600080fd5b506108ad60048036038101906108a891906132ce565b611d6f565b6040516108ba9190612bc8565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190612ff8565b611e03565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109775750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098d9061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546109b99061333d565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b82611efa565b610a51576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9782611f59565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610afe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1d612025565b73ffffffffffffffffffffffffffffffffffffffff1614610b8057610b4981610b44612025565b611d6f565b610b7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c3c61202d565b6001546000540303905090565b610c54838383612032565b505050565b60115481565b600e60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b610c8d6123f7565b73ffffffffffffffffffffffffffffffffffffffff16610cab611401565b73ffffffffffffffffffffffffffffffffffffffff1614610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906133ba565b60405180910390fd5b8060098190555050565b610d136123f7565b73ffffffffffffffffffffffffffffffffffffffff16610d31611401565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906133ba565b60405180910390fd5b6000610d91611401565b73ffffffffffffffffffffffffffffffffffffffff1647604051610db49061340b565b60006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5050905080610e0457600080fd5b50565b610e22838383604051806020016040528060008152506118f2565b505050565b610e2f6123f7565b73ffffffffffffffffffffffffffffffffffffffff16610e4d611401565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a906133ba565b60405180910390fd5b80600c8190555050565b610eb56123f7565b73ffffffffffffffffffffffffffffffffffffffff16610ed3611401565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906133ba565b60405180910390fd5b8060109080519060200190610f3f929190612a71565b5050565b610f4b6123f7565b73ffffffffffffffffffffffffffffffffffffffff16610f69611401565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906133ba565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000610ff682611f59565b9050919050565b6010805461100a9061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546110369061333d565b80156110835780601f1061105857610100808354040283529160200191611083565b820191906000526020600020905b81548152906001019060200180831161106657829003601f168201915b505050505081565b600080611097836123ff565b036110ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111276123f7565b73ffffffffffffffffffffffffffffffffffffffff16611145611401565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906133ba565b60405180910390fd5b6111a56000612409565b565b600d5481565b600c5481565b60095481565b6111c16123f7565b73ffffffffffffffffffffffffffffffffffffffff166111df611401565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906133ba565b60405180910390fd5b8060118190555050565b600f6020528060005260406000206000915090505481565b61125f6123f7565b73ffffffffffffffffffffffffffffffffffffffff1661127d611401565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca906133ba565b60405180910390fd5b80600d8190555050565b6112e56123f7565b73ffffffffffffffffffffffffffffffffffffffff16611303611401565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906133ba565b60405180910390fd5b60095481611365610c32565b61136f919061344f565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906134f1565b60405180910390fd5b600081116113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea9061355d565b60405180910390fd5b6113fd82826124cf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114336123f7565b73ffffffffffffffffffffffffffffffffffffffff16611451611401565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e906133ba565b60405180910390fd5b80600b8190555050565b6114b96123f7565b73ffffffffffffffffffffffffffffffffffffffff166114d7611401565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906133ba565b60405180910390fd5b80600a8190555050565b6060600380546115469061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546115729061333d565b80156115bf5780601f10611594576101008083540402835291602001916115bf565b820191906000526020600020905b8154815290600101906020018083116115a257829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff1661161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906135c9565b60405180910390fd5b600c548161163261162d6123f7565b61108b565b61163c919061344f565b111561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061365b565b60405180910390fd5b60095481611689610c32565b611693919061344f565b11156116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb906136ed565b60405180910390fd5b60008111611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613759565b60405180910390fd5b80600a546117259190613779565b341015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061381f565b60405180910390fd5b6117786117726123f7565b826124cf565b50565b611783612025565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f4612025565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a1612025565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e69190612bc8565b60405180910390a35050565b6118fd848484612032565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461195f57611928848484846124ed565b61195e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b606061197682611efa565b6119ac576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119b661263d565b905060008151036119d65760405180602001604052806000815250611a01565b806119e0846126cf565b6040516020016119f192919061387b565b6040516020818303038152906040525b915050919050565b600e60019054906101000a900460ff16611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906135c9565b60405180910390fd5b611acc828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115433604051602001611ab191906138e7565b60405160208183030381529060405280519060200120612729565b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061394e565b60405180910390fd5b600d5483611b1f611b1a6123f7565b61108b565b611b29919061344f565b1115611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906139e0565b60405180910390fd5b60095483611b76610c32565b611b80919061344f565b1115611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb8906136ed565b60405180910390fd5b60008311611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90613759565b60405180910390fd5b82600b54611c129190613779565b341015611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061381f565b60405180910390fd5b611c65611c5f6123f7565b846124cf565b82600f6000611c726123f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbb919061344f565b92505081905550505050565b611ccf6123f7565b73ffffffffffffffffffffffffffffffffffffffff16611ced611401565b73ffffffffffffffffffffffffffffffffffffffff1614611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a906133ba565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0b6123f7565b73ffffffffffffffffffffffffffffffffffffffff16611e29611401565b73ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e76906133ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee590613a72565b60405180910390fd5b611ef781612409565b50565b600081611f0561202d565b11158015611f14575060005482105b8015611f52575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611f6861202d565b11611fee57600054811015611fed5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611feb575b60008103611fe1576004600083600190039350838152602001908152602001600020549050611fb7565b8092505050612020565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061203d82611f59565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166120fd612025565b73ffffffffffffffffffffffffffffffffffffffff16148061212c575061212b86612126612025565b611d6f565b5b80612169575061213a612025565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806121a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121ad866123ff565b036121e4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f18686866001612740565b60006121fc836123ff565b14612238576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6122ff876123ff565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036123875760006001850190506000600460008381526020019081526020016000205403612385576000548114612384578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123ef8686866001612746565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124e982826040518060200160405280600081525061274c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612513612025565b8786866040518563ffffffff1660e01b81526004016125359493929190613ae7565b6020604051808303816000875af192505050801561257157506040513d601f19601f8201168201806040525081019061256e9190613b48565b60015b6125ea573d80600081146125a1576040519150601f19603f3d011682016040523d82523d6000602084013e6125a6565b606091505b5060008151036125e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461264c9061333d565b80601f01602080910402602001604051908101604052809291908181526020018280546126789061333d565b80156126c55780601f1061269a576101008083540402835291602001916126c5565b820191906000526020600020905b8154815290600101906020018083116126a857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561271557600183039250600a81066030018353600a810490506126f5565b508181036020830392508083525050919050565b60008261273685846129db565b1490509392505050565b50505050565b50505050565b600080549050600061275d856123ff565b03612794576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036127ce576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127db6000858386612740565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161284060018514612a50565b901b60a042901b612850866123ff565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612954575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461290460008784806001019550876124ed565b61293a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061289557826000541461294f57600080fd5b6129bf565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612955575b8160008190555050506129d56000858386612746565b50505050565b60008082905060005b8451811015612a45576000858281518110612a0257612a01613b75565b5b60200260200101519050808311612a2457612a1d8382612a5a565b9250612a31565b612a2e8184612a5a565b92505b508080612a3d90613ba4565b9150506129e4565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612a7d9061333d565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612af7565b5090565b5b80821115612b10576000816000905550600101612af8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5d81612b28565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b600060208284031215612b9657612b95612b1e565b5b6000612ba484828501612b6b565b91505092915050565b60008115159050919050565b612bc281612bad565b82525050565b6000602082019050612bdd6000830184612bb9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c1d578082015181840152602081019050612c02565b83811115612c2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4e82612be3565b612c588185612bee565b9350612c68818560208601612bff565b612c7181612c32565b840191505092915050565b60006020820190508181036000830152612c968184612c43565b905092915050565b6000819050919050565b612cb181612c9e565b8114612cbc57600080fd5b50565b600081359050612cce81612ca8565b92915050565b600060208284031215612cea57612ce9612b1e565b5b6000612cf884828501612cbf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2c82612d01565b9050919050565b612d3c81612d21565b82525050565b6000602082019050612d576000830184612d33565b92915050565b612d6681612d21565b8114612d7157600080fd5b50565b600081359050612d8381612d5d565b92915050565b60008060408385031215612da057612d9f612b1e565b5b6000612dae85828601612d74565b9250506020612dbf85828601612cbf565b9150509250929050565b612dd281612c9e565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600080600060608486031215612e0c57612e0b612b1e565b5b6000612e1a86828701612d74565b9350506020612e2b86828701612d74565b9250506040612e3c86828701612cbf565b9150509250925092565b6000819050919050565b612e5981612e46565b82525050565b6000602082019050612e746000830184612e50565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ebc82612c32565b810181811067ffffffffffffffff82111715612edb57612eda612e84565b5b80604052505050565b6000612eee612b14565b9050612efa8282612eb3565b919050565b600067ffffffffffffffff821115612f1a57612f19612e84565b5b612f2382612c32565b9050602081019050919050565b82818337600083830152505050565b6000612f52612f4d84612eff565b612ee4565b905082815260208101848484011115612f6e57612f6d612e7f565b5b612f79848285612f30565b509392505050565b600082601f830112612f9657612f95612e7a565b5b8135612fa6848260208601612f3f565b91505092915050565b600060208284031215612fc557612fc4612b1e565b5b600082013567ffffffffffffffff811115612fe357612fe2612b23565b5b612fef84828501612f81565b91505092915050565b60006020828403121561300e5761300d612b1e565b5b600061301c84828501612d74565b91505092915050565b61302e81612e46565b811461303957600080fd5b50565b60008135905061304b81613025565b92915050565b60006020828403121561306757613066612b1e565b5b60006130758482850161303c565b91505092915050565b61308781612bad565b811461309257600080fd5b50565b6000813590506130a48161307e565b92915050565b600080604083850312156130c1576130c0612b1e565b5b60006130cf85828601612d74565b92505060206130e085828601613095565b9150509250929050565b600067ffffffffffffffff82111561310557613104612e84565b5b61310e82612c32565b9050602081019050919050565b600061312e613129846130ea565b612ee4565b90508281526020810184848401111561314a57613149612e7f565b5b613155848285612f30565b509392505050565b600082601f83011261317257613171612e7a565b5b813561318284826020860161311b565b91505092915050565b600080600080608085870312156131a5576131a4612b1e565b5b60006131b387828801612d74565b94505060206131c487828801612d74565b93505060406131d587828801612cbf565b925050606085013567ffffffffffffffff8111156131f6576131f5612b23565b5b6132028782880161315d565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261322e5761322d612e7a565b5b8235905067ffffffffffffffff81111561324b5761324a61320e565b5b60208301915083602082028301111561326757613266613213565b5b9250929050565b60008060006040848603121561328757613286612b1e565b5b600061329586828701612cbf565b935050602084013567ffffffffffffffff8111156132b6576132b5612b23565b5b6132c286828701613218565b92509250509250925092565b600080604083850312156132e5576132e4612b1e565b5b60006132f385828601612d74565b925050602061330485828601612d74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061335557607f821691505b6020821081036133685761336761330e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a4602083612bee565b91506133af8261336e565b602082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b600081905092915050565b50565b60006133f56000836133da565b9150613400826133e5565b600082019050919050565b6000613416826133e8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061345a82612c9e565b915061346583612c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561349a57613499613420565b5b828201905092915050565b7f51545920776f756c642065786365656420737570706c792e0000000000000000600082015250565b60006134db601883612bee565b91506134e6826134a5565b602082019050919050565b6000602082019050818103600083015261350a816134ce565b9050919050565b7f546f6b656e20517479206d7573742062652061746c6561737420312e00000000600082015250565b6000613547601c83612bee565b915061355282613511565b602082019050919050565b600060208201905081810360008301526135768161353a565b9050919050565b7f4d696e7420697320696e6e6163746976652e0000000000000000000000000000600082015250565b60006135b3601283612bee565b91506135be8261357d565b602082019050919050565b600060208201905081810360008301526135e2816135a6565b9050919050565b7f5468697320776f756c642065786365656420746865207065722061646472657360008201527f73206d696e74206c696d69742e00000000000000000000000000000000000000602082015250565b6000613645602d83612bee565b9150613650826135e9565b604082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f5468697320776f756c64206578636565642074686520746f6b656e207375707060008201527f6c792e0000000000000000000000000000000000000000000000000000000000602082015250565b60006136d7602383612bee565b91506136e28261367b565b604082019050919050565b60006020820190508181036000830152613706816136ca565b9050919050565b7f4d757374206d696e742061746c6561737420312e000000000000000000000000600082015250565b6000613743601483612bee565b915061374e8261370d565b602082019050919050565b6000602082019050818103600083015261377281613736565b9050919050565b600061378482612c9e565b915061378f83612c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c8576137c7613420565b5b828202905092915050565b7f4e6f7420456e6f7567682045746865722e000000000000000000000000000000600082015250565b6000613809601183612bee565b9150613814826137d3565b602082019050919050565b60006020820190508181036000830152613838816137fc565b9050919050565b600081905092915050565b600061385582612be3565b61385f818561383f565b935061386f818560208601612bff565b80840191505092915050565b6000613887828561384a565b9150613893828461384a565b91508190509392505050565b60008160601b9050919050565b60006138b78261389f565b9050919050565b60006138c9826138ac565b9050919050565b6138e16138dc82612d21565b6138be565b82525050565b60006138f382846138d0565b60148201915081905092915050565b7f4e6f74206f6e2057686974656c6973742e000000000000000000000000000000600082015250565b6000613938601183612bee565b915061394382613902565b602082019050919050565b600060208201905081810360008301526139678161392b565b9050919050565b7f5468697320776f756c642065786365656420746865207065722061646472657360008201527f732077686974656c697374206d696e74206c696d69742e000000000000000000602082015250565b60006139ca603783612bee565b91506139d58261396e565b604082019050919050565b600060208201905081810360008301526139f9816139bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a5c602683612bee565b9150613a6782613a00565b604082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab982613a92565b613ac38185613a9d565b9350613ad3818560208601612bff565b613adc81612c32565b840191505092915050565b6000608082019050613afc6000830187612d33565b613b096020830186612d33565b613b166040830185612dc9565b8181036060830152613b288184613aae565b905095945050505050565b600081519050613b4281612b54565b92915050565b600060208284031215613b5e57613b5d612b1e565b5b6000613b6c84828501613b33565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613baf82612c9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613be157613be0613420565b5b60018201905091905056fea2646970667358221220dd26fea0b7e3b79ffd6827792164705962f4b2416975c107b677a40807b3ac3664736f6c634300080e0033
Deployed Bytecode Sourcemap
62693:3302:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28330:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35421:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34881:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27384:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36307:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63154:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62997:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62960:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64266:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65847:145;;;;;;;;;;;;;:::i;:::-;;36548:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64046:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63518:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63313:99;;;;;;;;;;;;;:::i;:::-;;33142:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63100:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29009:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14456:103;;;;;;;;;;;;;:::i;:::-;;62925:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62892:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62769:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63632:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63039:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64154:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65588:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13805:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63838:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63746:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33522:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62811:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65099:481;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35697:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36804:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62850:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33697:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64375:716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63420:90;;;;;;;;;;;;;:::i;:::-;;36076:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14714:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28330:615;28415:4;28730:10;28715:25;;:11;:25;;;;:102;;;;28807:10;28792:25;;:11;:25;;;;28715:102;:179;;;;28884:10;28869:25;;:11;:25;;;;28715:179;28695:199;;28330:615;;;:::o;33353:100::-;33407:13;33440:5;33433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33353:100;:::o;35421:204::-;35489:7;35514:16;35522:7;35514;:16::i;:::-;35509:64;;35539:34;;;;;;;;;;;;;;35509:64;35593:15;:24;35609:7;35593:24;;;;;;;;;;;;;;;;;;;;;35586:31;;35421:204;;;:::o;34881:474::-;34954:13;34986:27;35005:7;34986:18;:27::i;:::-;34954:61;;35036:5;35030:11;;:2;:11;;;35026:48;;35050:24;;;;;;;;;;;;;;35026:48;35114:5;35091:28;;:19;:17;:19::i;:::-;:28;;;35087:175;;35139:44;35156:5;35163:19;:17;:19::i;:::-;35139:16;:44::i;:::-;35134:128;;35211:35;;;;;;;;;;;;;;35134:128;35087:175;35301:2;35274:15;:24;35290:7;35274:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35339:7;35335:2;35319:28;;35328:5;35319:28;;;;;;;;;;;;34943:412;34881:474;;:::o;27384:315::-;27437:7;27665:15;:13;:15::i;:::-;27650:12;;27634:13;;:28;:46;27627:53;;27384:315;:::o;36307:170::-;36441:28;36451:4;36457:2;36461:7;36441:9;:28::i;:::-;36307:170;;;:::o;63154:94::-;;;;:::o;62997:33::-;;;;;;;;;;;;;:::o;62960:30::-;;;;;;;;;;;;;:::o;64266:101::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64349:10:::1;64335:11;:24;;;;64266:101:::0;:::o;65847:145::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65896:7:::1;65917;:5;:7::i;:::-;65909:21;;65938;65909:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65895:69;;;65983:2;65975:11;;;::::0;::::1;;65884:108;65847:145::o:0;36548:185::-;36686:39;36703:4;36709:2;36713:7;36686:39;;;;;;;;;;;;:16;:39::i;:::-;36548:185;;;:::o;64046:100::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64127:11:::1;64117:7;:21;;;;64046:100:::0;:::o;63518:106::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63605:11:::1;63595:7;:21;;;;;;;;;;;;:::i;:::-;;63518:106:::0;:::o;63313:99::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63391:13:::1;;;;;;;;;;;63390:14;63374:13;;:30;;;;;;;;;;;;;;;;;;63313:99::o:0;33142:144::-;33206:7;33249:27;33268:7;33249:18;:27::i;:::-;33226:52;;33142:144;;;:::o;63100:47::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29009:234::-;29073:7;29125:1;29097:24;29115:5;29097:17;:24::i;:::-;:29;29093:70;;29135:28;;;;;;;;;;;;;;29093:70;24348:13;29181:18;:25;29200:5;29181:25;;;;;;;;;;;;;;;;:54;29174:61;;29009:234;;;:::o;14456:103::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14521:30:::1;14548:1;14521:18;:30::i;:::-;14456:103::o:0;62925:28::-;;;;:::o;62892:26::-;;;;:::o;62769:33::-;;;;:::o;63632:106::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63719:11:::1;63706:10;:24;;;;63632:106:::0;:::o;63039:52::-;;;;;;;;;;;;;;;;;:::o;64154:104::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64239:11:::1;64227:9;:23;;;;64154:104:::0;:::o;65588:251::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65697:11:::1;;65687:6;65671:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;;65663:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;65765:1;65756:6;:10;65748:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;65810:21;65820:2;65824:6;65810:9;:21::i;:::-;65588:251:::0;;:::o;13805:87::-;13851:7;13878:6;;;;;;;;;;;13871:13;;13805:87;:::o;63838:92::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63914:8:::1;63904:7;:18;;;;63838:92:::0;:::o;63746:84::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63816:6:::1;63808:5;:14;;;;63746:84:::0;:::o;33522:104::-;33578:13;33611:7;33604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33522:104;:::o;62811:32::-;;;;:::o;65099:481::-;65165:10;;;;;;;;;;;65157:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;65253:7;;65243:6;65217:23;65227:12;:10;:12::i;:::-;65217:9;:23::i;:::-;:32;;;;:::i;:::-;:43;;65209:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;65355:11;;65345:6;65329:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;;65321:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;65434:1;65425:6;:10;65417:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;65500:6;65492:5;;:14;;;;:::i;:::-;65479:9;:27;;65471:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;65541:31;65551:12;:10;:12::i;:::-;65565:6;65541:9;:31::i;:::-;65099:481;:::o;35697:308::-;35808:19;:17;:19::i;:::-;35796:31;;:8;:31;;;35792:61;;35836:17;;;;;;;;;;;;;;35792:61;35918:8;35866:18;:39;35885:19;:17;:19::i;:::-;35866:39;;;;;;;;;;;;;;;:49;35906:8;35866:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35978:8;35942:55;;35957:19;:17;:19::i;:::-;35942:55;;;35988:8;35942:55;;;;;;:::i;:::-;;;;;;;;35697:308;;:::o;36804:396::-;36971:28;36981:4;36987:2;36991:7;36971:9;:28::i;:::-;37032:1;37014:2;:14;;;:19;37010:183;;37053:56;37084:4;37090:2;37094:7;37103:5;37053:30;:56::i;:::-;37048:145;;37137:40;;;;;;;;;;;;;;37048:145;37010:183;36804:396;;;;:::o;62850:35::-;;;;:::o;33697:318::-;33770:13;33801:16;33809:7;33801;:16::i;:::-;33796:59;;33826:29;;;;;;;;;;;;;;33796:59;33868:21;33892:10;:8;:10::i;:::-;33868:34;;33945:1;33926:7;33920:21;:26;:87;;;;;;;;;;;;;;;;;33973:7;33982:18;33992:7;33982:9;:18::i;:::-;33956:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33920:87;33913:94;;;33697:318;;;:::o;64375:716::-;64482:13;;;;;;;;;;;64474:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64537:84;64556:11;;64537:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64569:10;;64608;64591:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;64581:39;;;;;;64537:18;:84::i;:::-;64529:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;64698:9;;64688:6;64662:23;64672:12;:10;:12::i;:::-;64662:9;:23::i;:::-;:32;;;;:::i;:::-;:45;;64654:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;64812:11;;64802:6;64786:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;;64778:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;64891:1;64882:6;:10;64874:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64959:6;64949:7;;:16;;;;:::i;:::-;64936:9;:29;;64928:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;65000:31;65010:12;:10;:12::i;:::-;65024:6;65000:9;:31::i;:::-;65077:6;65042:17;:31;65060:12;:10;:12::i;:::-;65042:31;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;64375:716;;;:::o;63420:90::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63492:10:::1;;;;;;;;;;;63491:11;63478:10;;:24;;;;;;;;;;;;;;;;;;63420:90::o:0;36076:164::-;36173:4;36197:18;:25;36216:5;36197:25;;;;;;;;;;;;;;;:35;36223:8;36197:35;;;;;;;;;;;;;;;;;;;;;;;;;36190:42;;36076:164;;;;:::o;14714:201::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14823:1:::1;14803:22;;:8;:22;;::::0;14795:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14879:28;14898:8;14879:18;:28::i;:::-;14714:201:::0;:::o;37455:273::-;37512:4;37568:7;37549:15;:13;:15::i;:::-;:26;;:66;;;;;37602:13;;37592:7;:23;37549:66;:152;;;;;37700:1;25118:8;37653:17;:26;37671:7;37653:26;;;;;;;;;;;;:43;:48;37549:152;37529:172;;37455:273;;;:::o;30657:1129::-;30724:7;30744:12;30759:7;30744:22;;30827:4;30808:15;:13;:15::i;:::-;:23;30804:915;;30861:13;;30854:4;:20;30850:869;;;30899:14;30916:17;:23;30934:4;30916:23;;;;;;;;;;;;30899:40;;31032:1;25118:8;31005:6;:23;:28;31001:699;;31524:113;31541:1;31531:6;:11;31524:113;;31584:17;:25;31602:6;;;;;;;31584:25;;;;;;;;;;;;31575:34;;31524:113;;;31670:6;31663:13;;;;;;31001:699;30876:843;30850:869;30804:915;31747:31;;;;;;;;;;;;;;30657:1129;;;;:::o;51723:105::-;51783:7;51810:10;51803:17;;51723:105;:::o;26907:92::-;26963:7;26907:92;:::o;42714:2654::-;42829:27;42859;42878:7;42859:18;:27::i;:::-;42829:57;;42944:4;42903:45;;42919:19;42903:45;;;42899:86;;42957:28;;;;;;;;;;;;;;42899:86;42998:23;43024:15;:24;43040:7;43024:24;;;;;;;;;;;;;;;;;;;;;42998:50;;43061:22;43110:4;43087:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;43131:43;43148:4;43154:19;:17;:19::i;:::-;43131:16;:43::i;:::-;43087:87;:142;;;;43210:19;:17;:19::i;:::-;43191:38;;:15;:38;;;43087:142;43061:169;;43248:17;43243:66;;43274:35;;;;;;;;;;;;;;43243:66;43349:1;43324:21;43342:2;43324:17;:21::i;:::-;:26;43320:62;;43359:23;;;;;;;;;;;;;;43320:62;43395:43;43417:4;43423:2;43427:7;43436:1;43395:21;:43::i;:::-;43546:1;43508:34;43526:15;43508:17;:34::i;:::-;:39;43504:103;;43571:15;:24;43587:7;43571:24;;;;;;;;;;;;43564:31;;;;;;;;;;;43504:103;43974:18;:24;43993:4;43974:24;;;;;;;;;;;;;;;;43972:26;;;;;;;;;;;;44043:18;:22;44062:2;44043:22;;;;;;;;;;;;;;;;44041:24;;;;;;;;;;;25400:8;25002:3;44424:15;:41;;44382:21;44400:2;44382:17;:21::i;:::-;:84;:128;44336:17;:26;44354:7;44336:26;;;;;;;;;;;:174;;;;44680:1;25400:8;44630:19;:46;:51;44626:626;;44702:19;44734:1;44724:7;:11;44702:33;;44891:1;44857:17;:30;44875:11;44857:30;;;;;;;;;;;;:35;44853:384;;44995:13;;44980:11;:28;44976:242;;45175:19;45142:17;:30;45160:11;45142:30;;;;;;;;;;;:52;;;;44976:242;44853:384;44683:569;44626:626;45299:7;45295:2;45280:27;;45289:4;45280:27;;;;;;;;;;;;45318:42;45339:4;45345:2;45349:7;45358:1;45318:20;:42::i;:::-;42818:2550;;;42714:2654;;;:::o;12529:98::-;12582:7;12609:10;12602:17;;12529:98;:::o;34442:148::-;34506:14;34567:5;34557:15;;34442:148;;;:::o;15075:191::-;15149:16;15168:6;;;;;;;;;;;15149:25;;15194:8;15185:6;;:17;;;;;;;;;;;;;;;;;;15249:8;15218:40;;15239:8;15218:40;;;;;;;;;;;;15138:128;15075:191;:::o;37812:104::-;37881:27;37891:2;37895:8;37881:27;;;;;;;;;;;;:9;:27::i;:::-;37812:104;;:::o;49192:716::-;49355:4;49401:2;49376:45;;;49422:19;:17;:19::i;:::-;49443:4;49449:7;49458:5;49376:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49372:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49676:1;49659:6;:13;:18;49655:235;;49705:40;;;;;;;;;;;;;;49655:235;49848:6;49842:13;49833:6;49829:2;49825:15;49818:38;49372:529;49545:54;;;49535:64;;;:6;:64;;;;49528:71;;;49192:716;;;;;;:::o;63938:100::-;63990:13;64023:7;64016:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63938:100;:::o;51934:1959::-;51991:17;52412:3;52405:4;52399:11;52395:21;52388:28;;52503:3;52497:4;52490:17;52609:3;53066:5;53196:1;53191:3;53187:11;53180:18;;53333:2;53327:4;53323:13;53319:2;53315:22;53310:3;53302:36;53374:2;53368:4;53364:13;53356:21;;52957:682;53393:4;52957:682;;;53568:1;53563:3;53559:11;53552:18;;53619:2;53613:4;53609:13;53605:2;53601:22;53596:3;53588:36;53489:2;53483:4;53479:13;53471:21;;52957:682;;;52961:431;53690:3;53685;53681:13;53805:2;53800:3;53796:12;53789:19;;53868:6;53863:3;53856:19;52030:1856;;51934:1959;;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;1362:40;;1220:190;;;;;:::o;50556:159::-;;;;;:::o;51374:158::-;;;;;:::o;38289:2246::-;38412:20;38435:13;;38412:36;;38488:1;38463:21;38481:2;38463:17;:21::i;:::-;:26;38459:58;;38498:19;;;;;;;;;;;;;;38459:58;38544:1;38532:8;:13;38528:44;;38554:18;;;;;;;;;;;;;;38528:44;38585:61;38615:1;38619:2;38623:12;38637:8;38585:21;:61::i;:::-;39189:1;24485:2;39160:1;:25;;39159:31;39147:8;:44;39121:18;:22;39140:2;39121:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;25265:3;39590:29;39617:1;39605:8;:13;39590:14;:29::i;:::-;:56;;25002:3;39527:15;:41;;39485:21;39503:2;39485:17;:21::i;:::-;:84;:162;39434:17;:31;39452:12;39434:31;;;;;;;;;;;:213;;;;39664:20;39687:12;39664:35;;39714:11;39743:8;39728:12;:23;39714:37;;39790:1;39772:2;:14;;;:19;39768:635;;39812:313;39868:12;39864:2;39843:38;;39860:1;39843:38;;;;;;;;;;;;39909:69;39948:1;39952:2;39956:14;;;;;;39972:5;39909:30;:69::i;:::-;39904:174;;40014:40;;;;;;;;;;;;;;39904:174;40120:3;40105:12;:18;39812:313;;40206:12;40189:13;;:29;40185:43;;40220:8;;;40185:43;39768:635;;;40269:119;40325:14;;;;;;40321:2;40300:40;;40317:1;40300:40;;;;;;;;;;;;40383:3;40368:12;:18;40269:119;;39768:635;40433:12;40417:13;:28;;;;38898:1559;;40467:60;40496:1;40500:2;40504:12;40518:8;40467:20;:60::i;:::-;38401:2134;38289:2246;;;:::o;1771:675::-;1854:7;1874:20;1897:4;1874:27;;1917:9;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2163:42;2178:12;2192;2163:14;:42::i;:::-;2148:57;;2016:382;;;2340:42;2355:12;2369;2340:14;:42::i;:::-;2325:57;;2016:382;1955:454;1950:3;;;;;:::i;:::-;;;;1912:497;;;;2426:12;2419:19;;;1771:675;;;;:::o;34677:142::-;34735:14;34796:5;34786:15;;34677:142;;;:::o;2454:224::-;2522:13;2585:1;2579:4;2572:15;2614:1;2608:4;2601:15;2655:4;2649;2639:21;2630:30;;2454:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:118::-;6085:24;6103:5;6085:24;:::i;:::-;6080:3;6073:37;5998:118;;:::o;6122:222::-;6215:4;6253:2;6242:9;6238:18;6230:26;;6266:71;6334:1;6323:9;6319:17;6310:6;6266:71;:::i;:::-;6122:222;;;;:::o;6350:117::-;6459:1;6456;6449:12;6473:117;6582:1;6579;6572:12;6596:180;6644:77;6641:1;6634:88;6741:4;6738:1;6731:15;6765:4;6762:1;6755:15;6782:281;6865:27;6887:4;6865:27;:::i;:::-;6857:6;6853:40;6995:6;6983:10;6980:22;6959:18;6947:10;6944:34;6941:62;6938:88;;;7006:18;;:::i;:::-;6938:88;7046:10;7042:2;7035:22;6825:238;6782:281;;:::o;7069:129::-;7103:6;7130:20;;:::i;:::-;7120:30;;7159:33;7187:4;7179:6;7159:33;:::i;:::-;7069:129;;;:::o;7204:308::-;7266:4;7356:18;7348:6;7345:30;7342:56;;;7378:18;;:::i;:::-;7342:56;7416:29;7438:6;7416:29;:::i;:::-;7408:37;;7500:4;7494;7490:15;7482:23;;7204:308;;;:::o;7518:154::-;7602:6;7597:3;7592;7579:30;7664:1;7655:6;7650:3;7646:16;7639:27;7518:154;;;:::o;7678:412::-;7756:5;7781:66;7797:49;7839:6;7797:49;:::i;:::-;7781:66;:::i;:::-;7772:75;;7870:6;7863:5;7856:21;7908:4;7901:5;7897:16;7946:3;7937:6;7932:3;7928:16;7925:25;7922:112;;;7953:79;;:::i;:::-;7922:112;8043:41;8077:6;8072:3;8067;8043:41;:::i;:::-;7762:328;7678:412;;;;;:::o;8110:340::-;8166:5;8215:3;8208:4;8200:6;8196:17;8192:27;8182:122;;8223:79;;:::i;:::-;8182:122;8340:6;8327:20;8365:79;8440:3;8432:6;8425:4;8417:6;8413:17;8365:79;:::i;:::-;8356:88;;8172:278;8110:340;;;;:::o;8456:509::-;8525:6;8574:2;8562:9;8553:7;8549:23;8545:32;8542:119;;;8580:79;;:::i;:::-;8542:119;8728:1;8717:9;8713:17;8700:31;8758:18;8750:6;8747:30;8744:117;;;8780:79;;:::i;:::-;8744:117;8885:63;8940:7;8931:6;8920:9;8916:22;8885:63;:::i;:::-;8875:73;;8671:287;8456:509;;;;:::o;8971:329::-;9030:6;9079:2;9067:9;9058:7;9054:23;9050:32;9047:119;;;9085:79;;:::i;:::-;9047:119;9205:1;9230:53;9275:7;9266:6;9255:9;9251:22;9230:53;:::i;:::-;9220:63;;9176:117;8971:329;;;;:::o;9306:122::-;9379:24;9397:5;9379:24;:::i;:::-;9372:5;9369:35;9359:63;;9418:1;9415;9408:12;9359:63;9306:122;:::o;9434:139::-;9480:5;9518:6;9505:20;9496:29;;9534:33;9561:5;9534:33;:::i;:::-;9434:139;;;;:::o;9579:329::-;9638:6;9687:2;9675:9;9666:7;9662:23;9658:32;9655:119;;;9693:79;;:::i;:::-;9655:119;9813:1;9838:53;9883:7;9874:6;9863:9;9859:22;9838:53;:::i;:::-;9828:63;;9784:117;9579:329;;;;:::o;9914:116::-;9984:21;9999:5;9984:21;:::i;:::-;9977:5;9974:32;9964:60;;10020:1;10017;10010:12;9964:60;9914:116;:::o;10036:133::-;10079:5;10117:6;10104:20;10095:29;;10133:30;10157:5;10133:30;:::i;:::-;10036:133;;;;:::o;10175:468::-;10240:6;10248;10297:2;10285:9;10276:7;10272:23;10268:32;10265:119;;;10303:79;;:::i;:::-;10265:119;10423:1;10448:53;10493:7;10484:6;10473:9;10469:22;10448:53;:::i;:::-;10438:63;;10394:117;10550:2;10576:50;10618:7;10609:6;10598:9;10594:22;10576:50;:::i;:::-;10566:60;;10521:115;10175:468;;;;;:::o;10649:307::-;10710:4;10800:18;10792:6;10789:30;10786:56;;;10822:18;;:::i;:::-;10786:56;10860:29;10882:6;10860:29;:::i;:::-;10852:37;;10944:4;10938;10934:15;10926:23;;10649:307;;;:::o;10962:410::-;11039:5;11064:65;11080:48;11121:6;11080:48;:::i;:::-;11064:65;:::i;:::-;11055:74;;11152:6;11145:5;11138:21;11190:4;11183:5;11179:16;11228:3;11219:6;11214:3;11210:16;11207:25;11204:112;;;11235:79;;:::i;:::-;11204:112;11325:41;11359:6;11354:3;11349;11325:41;:::i;:::-;11045:327;10962:410;;;;;:::o;11391:338::-;11446:5;11495:3;11488:4;11480:6;11476:17;11472:27;11462:122;;11503:79;;:::i;:::-;11462:122;11620:6;11607:20;11645:78;11719:3;11711:6;11704:4;11696:6;11692:17;11645:78;:::i;:::-;11636:87;;11452:277;11391:338;;;;:::o;11735:943::-;11830:6;11838;11846;11854;11903:3;11891:9;11882:7;11878:23;11874:33;11871:120;;;11910:79;;:::i;:::-;11871:120;12030:1;12055:53;12100:7;12091:6;12080:9;12076:22;12055:53;:::i;:::-;12045:63;;12001:117;12157:2;12183:53;12228:7;12219:6;12208:9;12204:22;12183:53;:::i;:::-;12173:63;;12128:118;12285:2;12311:53;12356:7;12347:6;12336:9;12332:22;12311:53;:::i;:::-;12301:63;;12256:118;12441:2;12430:9;12426:18;12413:32;12472:18;12464:6;12461:30;12458:117;;;12494:79;;:::i;:::-;12458:117;12599:62;12653:7;12644:6;12633:9;12629:22;12599:62;:::i;:::-;12589:72;;12384:287;11735:943;;;;;;;:::o;12684:117::-;12793:1;12790;12783:12;12807:117;12916:1;12913;12906:12;12947:568;13020:8;13030:6;13080:3;13073:4;13065:6;13061:17;13057:27;13047:122;;13088:79;;:::i;:::-;13047:122;13201:6;13188:20;13178:30;;13231:18;13223:6;13220:30;13217:117;;;13253:79;;:::i;:::-;13217:117;13367:4;13359:6;13355:17;13343:29;;13421:3;13413:4;13405:6;13401:17;13391:8;13387:32;13384:41;13381:128;;;13428:79;;:::i;:::-;13381:128;12947:568;;;;;:::o;13521:704::-;13616:6;13624;13632;13681:2;13669:9;13660:7;13656:23;13652:32;13649:119;;;13687:79;;:::i;:::-;13649:119;13807:1;13832:53;13877:7;13868:6;13857:9;13853:22;13832:53;:::i;:::-;13822:63;;13778:117;13962:2;13951:9;13947:18;13934:32;13993:18;13985:6;13982:30;13979:117;;;14015:79;;:::i;:::-;13979:117;14128:80;14200:7;14191:6;14180:9;14176:22;14128:80;:::i;:::-;14110:98;;;;13905:313;13521:704;;;;;:::o;14231:474::-;14299:6;14307;14356:2;14344:9;14335:7;14331:23;14327:32;14324:119;;;14362:79;;:::i;:::-;14324:119;14482:1;14507:53;14552:7;14543:6;14532:9;14528:22;14507:53;:::i;:::-;14497:63;;14453:117;14609:2;14635:53;14680:7;14671:6;14660:9;14656:22;14635:53;:::i;:::-;14625:63;;14580:118;14231:474;;;;;:::o;14711:180::-;14759:77;14756:1;14749:88;14856:4;14853:1;14846:15;14880:4;14877:1;14870:15;14897:320;14941:6;14978:1;14972:4;14968:12;14958:22;;15025:1;15019:4;15015:12;15046:18;15036:81;;15102:4;15094:6;15090:17;15080:27;;15036:81;15164:2;15156:6;15153:14;15133:18;15130:38;15127:84;;15183:18;;:::i;:::-;15127:84;14948:269;14897:320;;;:::o;15223:182::-;15363:34;15359:1;15351:6;15347:14;15340:58;15223:182;:::o;15411:366::-;15553:3;15574:67;15638:2;15633:3;15574:67;:::i;:::-;15567:74;;15650:93;15739:3;15650:93;:::i;:::-;15768:2;15763:3;15759:12;15752:19;;15411:366;;;:::o;15783:419::-;15949:4;15987:2;15976:9;15972:18;15964:26;;16036:9;16030:4;16026:20;16022:1;16011:9;16007:17;16000:47;16064:131;16190:4;16064:131;:::i;:::-;16056:139;;15783:419;;;:::o;16208:147::-;16309:11;16346:3;16331:18;;16208:147;;;;:::o;16361:114::-;;:::o;16481:398::-;16640:3;16661:83;16742:1;16737:3;16661:83;:::i;:::-;16654:90;;16753:93;16842:3;16753:93;:::i;:::-;16871:1;16866:3;16862:11;16855:18;;16481:398;;;:::o;16885:379::-;17069:3;17091:147;17234:3;17091:147;:::i;:::-;17084:154;;17255:3;17248:10;;16885:379;;;:::o;17270:180::-;17318:77;17315:1;17308:88;17415:4;17412:1;17405:15;17439:4;17436:1;17429:15;17456:305;17496:3;17515:20;17533:1;17515:20;:::i;:::-;17510:25;;17549:20;17567:1;17549:20;:::i;:::-;17544:25;;17703:1;17635:66;17631:74;17628:1;17625:81;17622:107;;;17709:18;;:::i;:::-;17622:107;17753:1;17750;17746:9;17739:16;;17456:305;;;;:::o;17767:174::-;17907:26;17903:1;17895:6;17891:14;17884:50;17767:174;:::o;17947:366::-;18089:3;18110:67;18174:2;18169:3;18110:67;:::i;:::-;18103:74;;18186:93;18275:3;18186:93;:::i;:::-;18304:2;18299:3;18295:12;18288:19;;17947:366;;;:::o;18319:419::-;18485:4;18523:2;18512:9;18508:18;18500:26;;18572:9;18566:4;18562:20;18558:1;18547:9;18543:17;18536:47;18600:131;18726:4;18600:131;:::i;:::-;18592:139;;18319:419;;;:::o;18744:178::-;18884:30;18880:1;18872:6;18868:14;18861:54;18744:178;:::o;18928:366::-;19070:3;19091:67;19155:2;19150:3;19091:67;:::i;:::-;19084:74;;19167:93;19256:3;19167:93;:::i;:::-;19285:2;19280:3;19276:12;19269:19;;18928:366;;;:::o;19300:419::-;19466:4;19504:2;19493:9;19489:18;19481:26;;19553:9;19547:4;19543:20;19539:1;19528:9;19524:17;19517:47;19581:131;19707:4;19581:131;:::i;:::-;19573:139;;19300:419;;;:::o;19725:168::-;19865:20;19861:1;19853:6;19849:14;19842:44;19725:168;:::o;19899:366::-;20041:3;20062:67;20126:2;20121:3;20062:67;:::i;:::-;20055:74;;20138:93;20227:3;20138:93;:::i;:::-;20256:2;20251:3;20247:12;20240:19;;19899:366;;;:::o;20271:419::-;20437:4;20475:2;20464:9;20460:18;20452:26;;20524:9;20518:4;20514:20;20510:1;20499:9;20495:17;20488:47;20552:131;20678:4;20552:131;:::i;:::-;20544:139;;20271:419;;;:::o;20696:232::-;20836:34;20832:1;20824:6;20820:14;20813:58;20905:15;20900:2;20892:6;20888:15;20881:40;20696:232;:::o;20934:366::-;21076:3;21097:67;21161:2;21156:3;21097:67;:::i;:::-;21090:74;;21173:93;21262:3;21173:93;:::i;:::-;21291:2;21286:3;21282:12;21275:19;;20934:366;;;:::o;21306:419::-;21472:4;21510:2;21499:9;21495:18;21487:26;;21559:9;21553:4;21549:20;21545:1;21534:9;21530:17;21523:47;21587:131;21713:4;21587:131;:::i;:::-;21579:139;;21306:419;;;:::o;21731:222::-;21871:34;21867:1;21859:6;21855:14;21848:58;21940:5;21935:2;21927:6;21923:15;21916:30;21731:222;:::o;21959:366::-;22101:3;22122:67;22186:2;22181:3;22122:67;:::i;:::-;22115:74;;22198:93;22287:3;22198:93;:::i;:::-;22316:2;22311:3;22307:12;22300:19;;21959:366;;;:::o;22331:419::-;22497:4;22535:2;22524:9;22520:18;22512:26;;22584:9;22578:4;22574:20;22570:1;22559:9;22555:17;22548:47;22612:131;22738:4;22612:131;:::i;:::-;22604:139;;22331:419;;;:::o;22756:170::-;22896:22;22892:1;22884:6;22880:14;22873:46;22756:170;:::o;22932:366::-;23074:3;23095:67;23159:2;23154:3;23095:67;:::i;:::-;23088:74;;23171:93;23260:3;23171:93;:::i;:::-;23289:2;23284:3;23280:12;23273:19;;22932:366;;;:::o;23304:419::-;23470:4;23508:2;23497:9;23493:18;23485:26;;23557:9;23551:4;23547:20;23543:1;23532:9;23528:17;23521:47;23585:131;23711:4;23585:131;:::i;:::-;23577:139;;23304:419;;;:::o;23729:348::-;23769:7;23792:20;23810:1;23792:20;:::i;:::-;23787:25;;23826:20;23844:1;23826:20;:::i;:::-;23821:25;;24014:1;23946:66;23942:74;23939:1;23936:81;23931:1;23924:9;23917:17;23913:105;23910:131;;;24021:18;;:::i;:::-;23910:131;24069:1;24066;24062:9;24051:20;;23729:348;;;;:::o;24083:167::-;24223:19;24219:1;24211:6;24207:14;24200:43;24083:167;:::o;24256:366::-;24398:3;24419:67;24483:2;24478:3;24419:67;:::i;:::-;24412:74;;24495:93;24584:3;24495:93;:::i;:::-;24613:2;24608:3;24604:12;24597:19;;24256:366;;;:::o;24628:419::-;24794:4;24832:2;24821:9;24817:18;24809:26;;24881:9;24875:4;24871:20;24867:1;24856:9;24852:17;24845:47;24909:131;25035:4;24909:131;:::i;:::-;24901:139;;24628:419;;;:::o;25053:148::-;25155:11;25192:3;25177:18;;25053:148;;;;:::o;25207:377::-;25313:3;25341:39;25374:5;25341:39;:::i;:::-;25396:89;25478:6;25473:3;25396:89;:::i;:::-;25389:96;;25494:52;25539:6;25534:3;25527:4;25520:5;25516:16;25494:52;:::i;:::-;25571:6;25566:3;25562:16;25555:23;;25317:267;25207:377;;;;:::o;25590:435::-;25770:3;25792:95;25883:3;25874:6;25792:95;:::i;:::-;25785:102;;25904:95;25995:3;25986:6;25904:95;:::i;:::-;25897:102;;26016:3;26009:10;;25590:435;;;;;:::o;26031:94::-;26064:8;26112:5;26108:2;26104:14;26083:35;;26031:94;;;:::o;26131:::-;26170:7;26199:20;26213:5;26199:20;:::i;:::-;26188:31;;26131:94;;;:::o;26231:100::-;26270:7;26299:26;26319:5;26299:26;:::i;:::-;26288:37;;26231:100;;;:::o;26337:157::-;26442:45;26462:24;26480:5;26462:24;:::i;:::-;26442:45;:::i;:::-;26437:3;26430:58;26337:157;;:::o;26500:256::-;26612:3;26627:75;26698:3;26689:6;26627:75;:::i;:::-;26727:2;26722:3;26718:12;26711:19;;26747:3;26740:10;;26500:256;;;;:::o;26762:167::-;26902:19;26898:1;26890:6;26886:14;26879:43;26762:167;:::o;26935:366::-;27077:3;27098:67;27162:2;27157:3;27098:67;:::i;:::-;27091:74;;27174:93;27263:3;27174:93;:::i;:::-;27292:2;27287:3;27283:12;27276:19;;26935:366;;;:::o;27307:419::-;27473:4;27511:2;27500:9;27496:18;27488:26;;27560:9;27554:4;27550:20;27546:1;27535:9;27531:17;27524:47;27588:131;27714:4;27588:131;:::i;:::-;27580:139;;27307:419;;;:::o;27732:242::-;27872:34;27868:1;27860:6;27856:14;27849:58;27941:25;27936:2;27928:6;27924:15;27917:50;27732:242;:::o;27980:366::-;28122:3;28143:67;28207:2;28202:3;28143:67;:::i;:::-;28136:74;;28219:93;28308:3;28219:93;:::i;:::-;28337:2;28332:3;28328:12;28321:19;;27980:366;;;:::o;28352:419::-;28518:4;28556:2;28545:9;28541:18;28533:26;;28605:9;28599:4;28595:20;28591:1;28580:9;28576:17;28569:47;28633:131;28759:4;28633:131;:::i;:::-;28625:139;;28352:419;;;:::o;28777:225::-;28917:34;28913:1;28905:6;28901:14;28894:58;28986:8;28981:2;28973:6;28969:15;28962:33;28777:225;:::o;29008:366::-;29150:3;29171:67;29235:2;29230:3;29171:67;:::i;:::-;29164:74;;29247:93;29336:3;29247:93;:::i;:::-;29365:2;29360:3;29356:12;29349:19;;29008:366;;;:::o;29380:419::-;29546:4;29584:2;29573:9;29569:18;29561:26;;29633:9;29627:4;29623:20;29619:1;29608:9;29604:17;29597:47;29661:131;29787:4;29661:131;:::i;:::-;29653:139;;29380:419;;;:::o;29805:98::-;29856:6;29890:5;29884:12;29874:22;;29805:98;;;:::o;29909:168::-;29992:11;30026:6;30021:3;30014:19;30066:4;30061:3;30057:14;30042:29;;29909:168;;;;:::o;30083:360::-;30169:3;30197:38;30229:5;30197:38;:::i;:::-;30251:70;30314:6;30309:3;30251:70;:::i;:::-;30244:77;;30330:52;30375:6;30370:3;30363:4;30356:5;30352:16;30330:52;:::i;:::-;30407:29;30429:6;30407:29;:::i;:::-;30402:3;30398:39;30391:46;;30173:270;30083:360;;;;:::o;30449:640::-;30644:4;30682:3;30671:9;30667:19;30659:27;;30696:71;30764:1;30753:9;30749:17;30740:6;30696:71;:::i;:::-;30777:72;30845:2;30834:9;30830:18;30821:6;30777:72;:::i;:::-;30859;30927:2;30916:9;30912:18;30903:6;30859:72;:::i;:::-;30978:9;30972:4;30968:20;30963:2;30952:9;30948:18;30941:48;31006:76;31077:4;31068:6;31006:76;:::i;:::-;30998:84;;30449:640;;;;;;;:::o;31095:141::-;31151:5;31182:6;31176:13;31167:22;;31198:32;31224:5;31198:32;:::i;:::-;31095:141;;;;:::o;31242:349::-;31311:6;31360:2;31348:9;31339:7;31335:23;31331:32;31328:119;;;31366:79;;:::i;:::-;31328:119;31486:1;31511:63;31566:7;31557:6;31546:9;31542:22;31511:63;:::i;:::-;31501:73;;31457:127;31242:349;;;;:::o;31597:180::-;31645:77;31642:1;31635:88;31742:4;31739:1;31732:15;31766:4;31763:1;31756:15;31783:233;31822:3;31845:24;31863:5;31845:24;:::i;:::-;31836:33;;31891:66;31884:5;31881:77;31878:103;;31961:18;;:::i;:::-;31878:103;32008:1;32001:5;31997:13;31990:20;;31783:233;;;:::o
Swarm Source
ipfs://dd26fea0b7e3b79ffd6827792164705962f4b2416975c107b677a40807b3ac36
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.