Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
283 HighRoller
Holders
163
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 HighRollerLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
HighRoller
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-17 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/EnumerableMap.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File: @openzeppelin/contracts/utils/Strings.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: @openzeppelin/contracts/access/Ownable.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/utils/Counters.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File: @openzeppelin/contracts/cryptography/MerkleProof.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev These functions deal with verification of Merkle trees (hash trees), */ 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) { 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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } } // File: contracts/HighRoller.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.6; contract HighRoller is ERC721, Ownable{ using SafeMath for uint256; using Counters for Counters.Counter; // constants uint256 constant MAX_ELEMENTS = 7777; uint256[] public PURCHASE_LIMIT = [8, 5]; uint256[] public STAGE_PRICE = [0.0777 ether, 0.085 ether, 0.098 ether]; uint256 constant BOUNTY_AMOUNT = 0.259 ether; uint256 constant NUM_OF_BOUNTY = 77; enum STAGE { PRE_SALE, PUBLIC_SALE } // state variable STAGE public CURRENT_STAGE = STAGE.PRE_SALE; bool public MINTING_PAUSED = true; string public _contractURI = ""; uint256 randNonce = 0; Counters.Counter private _tokenIdTracker; // used to validate whitelists bytes32 public patronListMerkleRoot; bytes32 public goldListMerkleRoot; bytes32 public silverListMerkleRoot; bytes32 public ownerMerkleRoot; mapping(uint256 => address) private claimedList; mapping(address => uint256) private _allowListClaimed1; mapping(address => uint256) private _allowListClaimed2; mapping(address => uint256) private _allowListClaimed3; // bounty whitelist mapping(address => bool) bountyList; constructor() ERC721("HighRoller", "HighRoller") public{ } modifier isValidMerkleProof(bytes32[] memory merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address does not exist in list" ); _; } modifier onlyowner(bytes32[] memory merkleProof) { require( MerkleProof.verify( merkleProof, ownerMerkleRoot, keccak256(abi.encodePacked(msg.sender)) ), "This function can be called only by owner" ); _; } function setPauseMinting(bool _pause) public onlyOwner{ MINTING_PAUSED = _pause; } function setPurchaseLimit(uint256 _case, uint256 _limit) public onlyOwner{ PURCHASE_LIMIT[_case] = _limit; } function setGoldListMerkleRoot(bytes32 merkleRoot) public onlyOwner { goldListMerkleRoot = merkleRoot; } function setSilverListMerkleRoot(bytes32 merkleRoot) public onlyOwner { silverListMerkleRoot = merkleRoot; } function setPatronListMerkleRoot(bytes32 merkleRoot) public onlyOwner { patronListMerkleRoot = merkleRoot; } function setOwnerMerkleRoot(bytes32 merkleRoot) public onlyOwner { ownerMerkleRoot = merkleRoot; } function ownerSale(uint256 numberOfTokens) public onlyOwner { require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted'); require(totalSupply() + numberOfTokens < MAX_ELEMENTS, 'Purchase would exceed max supply'); for (uint256 i = 0; i < numberOfTokens; i++) { _tokenIdTracker.increment(); claimedList[_tokenIdTracker.current()] = msg.sender; // should be checked _safeMint(msg.sender, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uint2str(_tokenIdTracker.current())); } } function goldListSale(bytes32[] memory merkleProof, uint256 numberOfTokens) public payable isValidMerkleProof(merkleProof, goldListMerkleRoot) { require(!MINTING_PAUSED, "Minting is not active"); require(CURRENT_STAGE == STAGE.PRE_SALE, "Current stage should be PRE_SALE"); require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted'); require(totalSupply() + numberOfTokens < MAX_ELEMENTS, 'Purchase would exceed max supply'); require(_allowListClaimed1[msg.sender] + numberOfTokens <= PURCHASE_LIMIT[0], 'Purchase exceeds max allowed'); require(STAGE_PRICE[0] * numberOfTokens <= msg.value, 'ETH amount is not sufficient'); for (uint256 i = 0; i < numberOfTokens; i++) { _tokenIdTracker.increment(); claimedList[_tokenIdTracker.current()] = msg.sender; // should be checked _allowListClaimed1[msg.sender] += 1; _safeMint(msg.sender, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uint2str(_tokenIdTracker.current())); } } function silverListSale(bytes32[] memory merkleProof, uint256 numberOfTokens) public payable isValidMerkleProof(merkleProof, silverListMerkleRoot) { require(!MINTING_PAUSED, "Minting is not active"); require(CURRENT_STAGE == STAGE.PRE_SALE, "Current stage should be PRE_SALE"); require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted'); require(totalSupply() + numberOfTokens < MAX_ELEMENTS, 'Purchase would exceed max supply'); require(_allowListClaimed2[msg.sender] + numberOfTokens <= PURCHASE_LIMIT[1], 'Purchase exceeds max allowed'); require(STAGE_PRICE[1] * numberOfTokens <= msg.value, 'ETH amount is not sufficient'); for (uint256 i = 0; i < numberOfTokens; i++) { _tokenIdTracker.increment(); claimedList[_tokenIdTracker.current()] = msg.sender; // should be checked _allowListClaimed2[msg.sender] += 1; _safeMint(msg.sender, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uint2str(_tokenIdTracker.current())); } } function patronListSale(bytes32[] memory merkleProof, uint256 numberOfTokens) public payable isValidMerkleProof(merkleProof, patronListMerkleRoot) { require(!MINTING_PAUSED, "Minting is not active"); require(CURRENT_STAGE == STAGE.PRE_SALE, "Current stage should be PRE_SALE"); require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted'); require(totalSupply() + numberOfTokens < MAX_ELEMENTS, 'Purchase would exceed max supply'); require(_allowListClaimed3[msg.sender] + numberOfTokens <= PURCHASE_LIMIT[0], 'Purchase exceeds max allowed'); require(STAGE_PRICE[0] * numberOfTokens <= msg.value, 'ETH amount is not sufficient'); // give one nft free for patron rollerlist if (_allowListClaimed3[msg.sender] == 0) { _tokenIdTracker.increment(); claimedList[_tokenIdTracker.current()] = msg.sender; // should be checked _allowListClaimed3[msg.sender] += 1; _safeMint(msg.sender, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uint2str(_tokenIdTracker.current())); } for (uint256 i = 0; i < numberOfTokens; i++) { _tokenIdTracker.increment(); claimedList[_tokenIdTracker.current()] = msg.sender; // should be checked _allowListClaimed3[msg.sender] += 1; _safeMint(msg.sender, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uint2str(_tokenIdTracker.current())); } } function publicMint(uint256 numberOfTokens) public payable { require(!MINTING_PAUSED, "Minting is not active"); require(CURRENT_STAGE == STAGE.PUBLIC_SALE, "Current stage should be PUBLIC_SALE"); require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted'); require(totalSupply() + numberOfTokens < MAX_ELEMENTS, 'Purchase would exceed max supply'); require(STAGE_PRICE[2] * numberOfTokens <= msg.value, 'ETH amount is not sufficient'); for (uint256 i = 0; i < numberOfTokens; i++) { _tokenIdTracker.increment(); claimedList[_tokenIdTracker.current()] = msg.sender; // should be checked _safeMint(msg.sender, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), uint2str(_tokenIdTracker.current())); } } function openBounty() public onlyOwner { uint256 index = 0; uint256 totalSupply = totalSupply(); while(true) { uint256 selectedIdx = randMod(totalSupply); address selectedClaimer = claimedList[selectedIdx + 1]; if (!bountyList[selectedClaimer]) { bountyList[selectedClaimer] = true; payable(selectedClaimer).transfer(BOUNTY_AMOUNT); index ++; if (index >= NUM_OF_BOUNTY) break; } } } // returns random number between 0 to _modulus function randMod(uint256 _modulus) internal returns(uint256) { // increase nonce randNonce++; return uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, randNonce))) % _modulus; } function setStage(uint256 _stage) public onlyOwner { CURRENT_STAGE = STAGE(_stage); } function withdraw(bytes32[] memory merkleProof) public onlyowner(merkleProof) { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function setContractURI(string memory URI) public onlyOwner { _contractURI = URI; } function contractURI() public view returns (string memory) { return _contractURI; } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k-1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"CURRENT_STAGE","outputs":[{"internalType":"enum HighRoller.STAGE","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTING_PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"STAGE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[],"name":"contractURI","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":[],"name":"goldListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"goldListSale","outputs":[],"stateMutability":"payable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openBounty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"ownerSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"patronListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"patronListSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setGoldListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setOwnerMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setPatronListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPauseMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_case","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setSilverListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stage","type":"uint256"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"silverListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"silverListSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","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":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405260086080908152600560a0526200002090600b9060026200026a565b50604080516060810182526701140bbd030c4000815267012dfb0cb5e88000602082015267015c2a7b13fd0000918101919091526200006490600c906003620002bf565b50600d805461ffff19166101001790556040805160208101918290526000908190526200009491600e9162000308565b506000600f55348015620000a757600080fd5b50604080518082018252600a808252692434b3b42937b63632b960b11b602080840182905284518086019095529184529083015290620000f76301ffc9a760e01b6001600160e01b03620001e016565b81516200010c90600690602085019062000308565b5080516200012290600790602084019062000308565b506200013e6380ac58cd60e01b6001600160e01b03620001e016565b62000159635b5e139f60e01b6001600160e01b03620001e016565b6200017463780e9d6360e01b6001600160e01b03620001e016565b50600090506200018c6001600160e01b036200026516565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000398565b6001600160e01b0319808216141562000240576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b828054828255906000526020600020908101928215620002ad579160200282015b82811115620002ad578251829060ff169055916020019190600101906200028b565b50620002bb9291506200037b565b5090565b828054828255906000526020600020908101928215620002ad579160200282015b82811115620002ad57825182906001600160401b0316905591602001919060010190620002e0565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200034b57805160ff1916838001178555620002ad565b82800160010185558215620002ad579182015b82811115620002ad5782518255916020019190600101906200035e565b6200026791905b80821115620002bb576000815560010162000382565b613fee80620003a86000396000f3fe60806040526004361061027c5760003560e01c80638ea0f59b1161014f578063c87b56dd116100c1578063ef351f6c1161007a578063ef351f6c14610c62578063f2fde38b14610c8c578063f6e024a814610cbf578063fd73c82614610cd4578063fe2b392414610cfe578063fefd229d14610dac5761027c565b8063c87b56dd14610b7f578063ccbe0fd114610ba9578063de28aeb114610bd3578063ded765bd14610bfd578063e8a3d48514610c12578063e985e9c514610c275761027c565b8063a63f241511610113578063a63f24151461089b578063ab8c25c41461093e578063b88d4fde146109e1578063bb5733b614610ab2578063c0e7274014610b55578063c61c66a314610b6a5761027c565b80638ea0f59b14610744578063938e3d7b1461076e57806395d89b411461081f5780639f2ec9f214610834578063a22cb465146108605761027c565b80633eb1d777116101f357806370a08231116101ac57806370a0823114610693578063715018a6146106c657806379fb9052146106db5780637d4fb819146106f057806382762545146107055780638da5cb5b1461072f5761027c565b80633eb1d7771461050c57806342842e0e146105365780634f6ccce71461057957806355f804b3146105a35780636352211e146106545780636c0360eb1461067e5761027c565b806318160ddd1161024557806318160ddd1461041057806323b872dd146104255780632db11544146104685780632f745c5914610485578063327661e1146104be5780633821ef5a146104f75761027c565b80622917401461028157806301ffc9a7146102bd57806306fdde0314610305578063081812fc1461038f578063095ea7b3146103d5575b600080fd5b34801561028d57600080fd5b506102ab600480360360208110156102a457600080fd5b5035610ddc565b60408051918252519081900360200190f35b3480156102c957600080fd5b506102f1600480360360208110156102e057600080fd5b50356001600160e01b031916610dfa565b604080519115158252519081900360200190f35b34801561031157600080fd5b5061031a610e1d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035457818101518382015260200161033c565b50505050905090810190601f1680156103815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561039b57600080fd5b506103b9600480360360208110156103b257600080fd5b5035610eb4565b604080516001600160a01b039092168252519081900360200190f35b3480156103e157600080fd5b5061040e600480360360408110156103f857600080fd5b506001600160a01b038135169060200135610f16565b005b34801561041c57600080fd5b506102ab610ff1565b34801561043157600080fd5b5061040e6004803603606081101561044857600080fd5b506001600160a01b03813581169160208101359091169060400135611002565b61040e6004803603602081101561047e57600080fd5b5035611059565b34801561049157600080fd5b506102ab600480360360408110156104a857600080fd5b506001600160a01b03813516906020013561128b565b3480156104ca57600080fd5b506104d36112bc565b604051808260018111156104e357fe5b60ff16815260200191505060405180910390f35b34801561050357600080fd5b506102ab6112c5565b34801561051857600080fd5b5061040e6004803603602081101561052f57600080fd5b50356112cb565b34801561054257600080fd5b5061040e6004803603606081101561055957600080fd5b506001600160a01b03813581169160208101359091169060400135611356565b34801561058557600080fd5b506102ab6004803603602081101561059c57600080fd5b5035611371565b3480156105af57600080fd5b5061040e600480360360208110156105c657600080fd5b810190602081018135600160201b8111156105e057600080fd5b8201836020820111156105f257600080fd5b803590602001918460018302840111600160201b8311171561061357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061138d945050505050565b34801561066057600080fd5b506103b96004803603602081101561067757600080fd5b50356113fb565b34801561068a57600080fd5b5061031a611429565b34801561069f57600080fd5b506102ab600480360360208110156106b657600080fd5b50356001600160a01b031661148a565b3480156106d257600080fd5b5061040e6114f2565b3480156106e757600080fd5b5061040e61159e565b3480156106fc57600080fd5b506102ab6116b9565b34801561071157600080fd5b5061040e6004803603602081101561072857600080fd5b50356116bf565b34801561073b57600080fd5b506103b9611726565b34801561075057600080fd5b506102ab6004803603602081101561076757600080fd5b5035611735565b34801561077a57600080fd5b5061040e6004803603602081101561079157600080fd5b810190602081018135600160201b8111156107ab57600080fd5b8201836020820111156107bd57600080fd5b803590602001918460018302840111600160201b831117156107de57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611742945050505050565b34801561082b57600080fd5b5061031a6117b7565b34801561084057600080fd5b5061040e6004803603602081101561085757600080fd5b50351515611818565b34801561086c57600080fd5b5061040e6004803603604081101561088357600080fd5b506001600160a01b0381351690602001351515611894565b61040e600480360360408110156108b157600080fd5b810190602081018135600160201b8111156108cb57600080fd5b8201836020820111156108dd57600080fd5b803590602001918460208302840111600160201b831117156108fe57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250611999915050565b61040e6004803603604081101561095457600080fd5b810190602081018135600160201b81111561096e57600080fd5b82018360208201111561098057600080fd5b803590602001918460208302840111600160201b831117156109a157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250611cf7915050565b3480156109ed57600080fd5b5061040e60048036036080811015610a0457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610a3e57600080fd5b820183602082011115610a5057600080fd5b803590602001918460018302840111600160201b83111715610a7157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061204e945050505050565b61040e60048036036040811015610ac857600080fd5b810190602081018135600160201b811115610ae257600080fd5b820183602082011115610af457600080fd5b803590602001918460208302840111600160201b83111715610b1557600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050913592506120ac915050565b348015610b6157600080fd5b5061031a612492565b348015610b7657600080fd5b506102ab612520565b348015610b8b57600080fd5b5061031a60048036036020811015610ba257600080fd5b5035612526565b348015610bb557600080fd5b5061040e60048036036020811015610bcc57600080fd5b50356127a9565b348015610bdf57600080fd5b5061040e60048036036020811015610bf657600080fd5b5035612810565b348015610c0957600080fd5b506102ab612877565b348015610c1e57600080fd5b5061031a61287d565b348015610c3357600080fd5b506102f160048036036040811015610c4a57600080fd5b506001600160a01b03813581169160200135166128de565b348015610c6e57600080fd5b5061040e60048036036020811015610c8557600080fd5b503561290c565b348015610c9857600080fd5b5061040e60048036036020811015610caf57600080fd5b50356001600160a01b0316612973565b348015610ccb57600080fd5b506102f1612a76565b348015610ce057600080fd5b5061040e60048036036020811015610cf757600080fd5b5035612a84565b348015610d0a57600080fd5b5061040e60048036036020811015610d2157600080fd5b810190602081018135600160201b811115610d3b57600080fd5b820183602082011115610d4d57600080fd5b803590602001918460208302840111600160201b83111715610d6e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612bf7945050505050565b348015610db857600080fd5b5061040e60048036036040811015610dcf57600080fd5b5080359060200135612caa565b600c8181548110610de957fe5b600091825260209091200154905081565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b820191906000526020600020905b815481529060010190602001808311610e8c57829003601f168201915b505050505090505b90565b6000610ebf82612d2a565b610efa5760405162461bcd60e51b815260040180806020018281038252602c815260200180613e74602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f21826113fb565b9050806001600160a01b0316836001600160a01b03161415610f745760405162461bcd60e51b8152600401808060200182810382526021815260200180613f676021913960400191505060405180910390fd5b806001600160a01b0316610f86612d3d565b6001600160a01b03161480610fa75750610fa781610fa2612d3d565b6128de565b610fe25760405162461bcd60e51b8152600401808060200182810382526038815260200180613da76038913960400191505060405180910390fd5b610fec8383612d41565b505050565b6000610ffd6002612daf565b905090565b61101361100d612d3d565b82612dba565b61104e5760405162461bcd60e51b8152600401808060200182810382526031815260200180613f886031913960400191505060405180910390fd5b610fec838383612e5e565b600d54610100900460ff16156110ae576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6001600d5460ff1660018111156110c157fe5b146110fd5760405162461bcd60e51b8152600401808060200182810382526023815260200180613f446023913960400191505060405180910390fd5b611e61611108610ff1565b10611148576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6181611154610ff1565b0110611195576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b3481600c6002815481106111a557fe5b90600052602060002001540211156111f2576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b60005b81811015611287576112076010612fbc565b33601560006112166010612fc5565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061125b336112566010612fc5565b612fc9565b61127f6112686010612fc5565b61127a6112756010612fc5565b612fe3565b6130c5565b6001016111f5565b5050565b6001600160a01b03821660009081526001602052604081206112b3908363ffffffff61312816565b90505b92915050565b600d5460ff1681565b60145481565b6112d3612d3d565b6001600160a01b03166112e4611726565b6001600160a01b03161461132d576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b80600181111561133957fe5b600d805460ff19166001838181111561134e57fe5b021790555050565b610fec8383836040518060200160405280600081525061204e565b60008061138560028463ffffffff61313416565b509392505050565b611395612d3d565b6001600160a01b03166113a6611726565b6001600160a01b0316146113ef576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b6113f881613150565b50565b60006112b682604051806060016040528060298152602001613e09602991396002919063ffffffff61316316565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b60006001600160a01b0382166114d15760405162461bcd60e51b815260040180806020018281038252602a815260200180613ddf602a913960400191505060405180910390fd5b6001600160a01b03821660009081526001602052604090206112b690612daf565b6114fa612d3d565b6001600160a01b031661150b611726565b6001600160a01b031614611554576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6115a6612d3d565b6001600160a01b03166115b7611726565b6001600160a01b031614611600576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b60008061160b610ff1565b90505b60006116198261317a565b600181016000908152601560209081526040808320546001600160a01b03168084526019909252909120549192509060ff166116b2576001600160a01b038116600081815260196020526040808220805460ff19166001179055516703982720b4d380009082818181858883f1935050505015801561169c573d6000803e3d6000fd5b50600190930192604d84106116b2575050611287565b505061160e565b60125481565b6116c7612d3d565b6001600160a01b03166116d8611726565b6001600160a01b031614611721576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601455565b600a546001600160a01b031690565b600b8181548110610de957fe5b61174a612d3d565b6001600160a01b031661175b611726565b6001600160a01b0316146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b805161128790600e906020840190613bdb565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b611820612d3d565b6001600160a01b0316611831611726565b6001600160a01b03161461187a576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b600d80549115156101000261ff0019909216919091179055565b61189c612d3d565b6001600160a01b0316826001600160a01b03161415611902576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806005600061190f612d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611953612d3d565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b816012546119e382823360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b611a34576040805162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015290519081900360640190fd5b600d54610100900460ff1615611a89576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6000600d5460ff166001811115611a9c57fe5b14611aee576040805162461bcd60e51b815260206004820181905260248201527f43757272656e742073746167652073686f756c64206265205052455f53414c45604482015290519081900360640190fd5b611e61611af9610ff1565b10611b39576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6183611b45610ff1565b0110611b86576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b600b600081548110611b9457fe5b6000918252602080832090910154338352601690915260409091205484011115611c05576040805162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015290519081900360640190fd5b3483600c600081548110611c1557fe5b9060005260206000200154021115611c62576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b60005b83811015611cf057611c776010612fbc565b3360156000611c866010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b03959095169490941790935533808452601690925290912080546001019055611cdb906112566010612fc5565b611ce86112686010612fc5565b600101611c65565b5050505050565b81601354611d4182823360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b611d92576040805162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015290519081900360640190fd5b600d54610100900460ff1615611de7576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6000600d5460ff166001811115611dfa57fe5b14611e4c576040805162461bcd60e51b815260206004820181905260248201527f43757272656e742073746167652073686f756c64206265205052455f53414c45604482015290519081900360640190fd5b611e61611e57610ff1565b10611e97576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6183611ea3610ff1565b0110611ee4576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b600b600181548110611ef257fe5b6000918252602080832090910154338352601790915260409091205484011115611f63576040805162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015290519081900360640190fd5b3483600c600181548110611f7357fe5b9060005260206000200154021115611fc0576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b60005b83811015611cf057611fd56010612fbc565b3360156000611fe46010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b03959095169490941790935533808452601790925290912080546001019055612039906112566010612fc5565b6120466112686010612fc5565b600101611fc3565b61205f612059612d3d565b83612dba565b61209a5760405162461bcd60e51b8152600401808060200182810382526031815260200180613f886031913960400191505060405180910390fd5b6120a684848484613277565b50505050565b816011546120f682823360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b612147576040805162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015290519081900360640190fd5b600d54610100900460ff161561219c576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6000600d5460ff1660018111156121af57fe5b14612201576040805162461bcd60e51b815260206004820181905260248201527f43757272656e742073746167652073686f756c64206265205052455f53414c45604482015290519081900360640190fd5b611e6161220c610ff1565b1061224c576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6183612258610ff1565b0110612299576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b600b6000815481106122a757fe5b6000918252602080832090910154338352601890915260409091205484011115612318576040805162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015290519081900360640190fd5b3483600c60008154811061232857fe5b9060005260206000200154021115612375576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b33600090815260186020526040902054612404576123936010612fbc565b33601560006123a26010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b039590951694909417909355338084526018909252909120805460010190556123f7906112566010612fc5565b6124046112686010612fc5565b60005b83811015611cf0576124196010612fbc565b33601560006124286010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b0395909516949094179093553380845260189092529091208054600101905561247d906112566010612fc5565b61248a6112686010612fc5565b600101612407565b600e805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156125185780601f106124ed57610100808354040283529160200191612518565b820191906000526020600020905b8154815290600101906020018083116124fb57829003601f168201915b505050505081565b60135481565b606061253182612d2a565b61256c5760405162461bcd60e51b815260040180806020018281038252602f815260200180613f15602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156126015780601f106125d657610100808354040283529160200191612601565b820191906000526020600020905b8154815290600101906020018083116125e457829003601f168201915b505050505090506060612612611429565b905080516000141561262657509050610e18565b8151156126e75780826040516020018083805190602001908083835b602083106126615780518252601f199092019160209182019101612642565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106126a95780518252601f19909201916020918201910161268a565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610e18565b806126f1856132c9565b6040516020018083805190602001908083835b602083106127235780518252601f199092019160209182019101612704565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b6020831061276b5780518252601f19909201916020918201910161274c565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6127b1612d3d565b6001600160a01b03166127c2611726565b6001600160a01b03161461280b576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601155565b612818612d3d565b6001600160a01b0316612829611726565b6001600160a01b031614612872576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601355565b60115481565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b612914612d3d565b6001600160a01b0316612925611726565b6001600160a01b03161461296e576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601255565b61297b612d3d565b6001600160a01b031661298c611726565b6001600160a01b0316146129d5576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b6001600160a01b038116612a1a5760405162461bcd60e51b8152600401808060200182810382526026815260200180613ce86026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600d54610100900460ff1681565b612a8c612d3d565b6001600160a01b0316612a9d611726565b6001600160a01b031614612ae6576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b611e61612af1610ff1565b10612b31576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6181612b3d610ff1565b0110612b7e576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b60005b8181101561128757612b936010612fbc565b3360156000612ba26010612fc5565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550612be2336112566010612fc5565b612bef6112686010612fc5565b600101612b81565b80612c40816014543360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b612c7b5760405162461bcd60e51b8152600401808060200182810382526029815260200180613d526029913960400191505060405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156120a6573d6000803e3d6000fd5b612cb2612d3d565b6001600160a01b0316612cc3611726565b6001600160a01b031614612d0c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b80600b8381548110612d1a57fe5b6000918252602090912001555050565b60006112b660028363ffffffff61339b16565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612d76826113fb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112b682612fc5565b6000612dc582612d2a565b612e005760405162461bcd60e51b815260040180806020018281038252602c815260200180613d7b602c913960400191505060405180910390fd5b6000612e0b836113fb565b9050806001600160a01b0316846001600160a01b03161480612e465750836001600160a01b0316612e3b84610eb4565b6001600160a01b0316145b80612e565750612e5681856128de565b949350505050565b826001600160a01b0316612e71826113fb565b6001600160a01b031614612eb65760405162461bcd60e51b8152600401808060200182810382526029815260200180613eec6029913960400191505060405180910390fd5b6001600160a01b038216612efb5760405162461bcd60e51b8152600401808060200182810382526024815260200180613d0e6024913960400191505060405180910390fd5b612f06838383610fec565b612f11600082612d41565b6001600160a01b0383166000908152600160205260409020612f39908263ffffffff6133a716565b506001600160a01b0382166000908152600160205260409020612f62908263ffffffff6133b316565b50612f756002828463ffffffff6133bf16565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80546001019055565b5490565b6112878282604051806020016040528060008152506133d5565b60608161300857506040805180820190915260018152600360fc1b6020820152610e18565b8160005b811561302057600101600a8204915061300c565b60608167ffffffffffffffff8111801561303957600080fd5b506040519080825280601f01601f191660200182016040528015613064576020820181803683370190505b509050815b85156130bc57600019016000600a8704600a028703603001905060008160f81b90508084848151811061309857fe5b60200101906001600160f81b031916908160001a905350600a880497505050613069565b50949350505050565b6130ce82612d2a565b6131095760405162461bcd60e51b815260040180806020018281038252602c815260200180613ea0602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610fec92840190613bdb565b60006112b38383613427565b6000808080613143868661348b565b9097909650945050505050565b8051611287906009906020840190613bdb565b6000613170848484613506565b90505b9392505050565b600f80546001019081905560408051426020808301919091523360601b8284015260548083019490945282518083039094018452607490910190915281519101206000908290816131c757fe5b0692915050565b600081815b855181101561326c5760008682815181106131ea57fe5b602002602001015190508083116132315782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250613263565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b506001016131d3565b509092149392505050565b613282848484612e5e565b61328e848484846135d0565b6120a65760405162461bcd60e51b8152600401808060200182810382526032815260200180613cb66032913960400191505060405180910390fd5b6060816132ee57506040805180820190915260018152600360fc1b6020820152610e18565b8160005b811561330657600101600a820491506132f2565b60608167ffffffffffffffff8111801561331f57600080fd5b506040519080825280601f01601f19166020018201604052801561334a576020820181803683370190505b50859350905060001982015b83156130bc57600a840660300160f81b8282806001900393508151811061337957fe5b60200101906001600160f81b031916908160001a905350600a84049350613356565b60006112b38383613750565b60006112b38383613768565b60006112b3838361382e565b600061317084846001600160a01b038516613878565b6133df838361390f565b6133ec60008484846135d0565b610fec5760405162461bcd60e51b8152600401808060200182810382526032815260200180613cb66032913960400191505060405180910390fd5b815460009082106134695760405162461bcd60e51b8152600401808060200182810382526022815260200180613c746022913960400191505060405180910390fd5b82600001828154811061347857fe5b9060005260206000200154905092915050565b8154600090819083106134cf5760405162461bcd60e51b8152600401808060200182810382526022815260200180613e526022913960400191505060405180910390fd5b60008460000184815481106134e057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816135a15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561356657818101518382015260200161354e565b50505050905090810190601f1680156135935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106135b457fe5b9060005260206000209060020201600101549150509392505050565b60006135e4846001600160a01b0316613a49565b6135f057506001612e56565b6060613716630a85bd0160e11b613605612d3d565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561367e578181015183820152602001613666565b50505050905090810190601f1680156136ab5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613cb6603291396001600160a01b038816919063ffffffff613a4f16565b9050600081806020019051602081101561372f57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015613824578354600019808301919081019060009087908390811061379b57fe5b90600052602060002001549050808760000184815481106137b857fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806137e857fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506112b6565b60009150506112b6565b600061383a8383613750565b613870575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556112b6565b5060006112b6565b6000828152600184016020526040812054806138dd575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055613173565b828560000160018303815481106138f057fe5b9060005260206000209060020201600101819055506000915050613173565b6001600160a01b03821661396a576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61397381612d2a565b156139c5576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6139d160008383610fec565b6001600160a01b03821660009081526001602052604090206139f9908263ffffffff6133b316565b50613a0c6002828463ffffffff6133bf16565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060613170848460008585613a6385613a49565b613ab4576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613af35780518252601f199092019160209182019101613ad4565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613b55576040519150601f19603f3d011682016040523d82523d6000602084013e613b5a565b606091505b5091509150613b6a828286613b75565b979650505050505050565b60608315613b84575081613173565b825115613b945782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561356657818101518382015260200161354e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613c1c57805160ff1916838001178555613c49565b82800160010185558215613c49579182015b82811115613c49578251825591602001919060010190613c2e565b50613c55929150613c59565b5090565b610eb191905b80821115613c555760008155600101613c5f56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416c6c20746f6b656e732068617665206265656e206d696e74656400000000004552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f206164647265737345544820616d6f756e74206973206e6f742073756666696369656e7400000000546869732066756e6374696f6e2063616e2062652063616c6c6564206f6e6c79206279206f776e65724552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e507572636861736520776f756c6420657863656564206d617820737570706c79456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e43757272656e742073746167652073686f756c64206265205055424c49435f53414c454552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220bfd7827094dbc712a3b208b56c2364ec5bf8fb9594d93e79ccd89cad72107b0364736f6c63430006060033
Deployed Bytecode
0x60806040526004361061027c5760003560e01c80638ea0f59b1161014f578063c87b56dd116100c1578063ef351f6c1161007a578063ef351f6c14610c62578063f2fde38b14610c8c578063f6e024a814610cbf578063fd73c82614610cd4578063fe2b392414610cfe578063fefd229d14610dac5761027c565b8063c87b56dd14610b7f578063ccbe0fd114610ba9578063de28aeb114610bd3578063ded765bd14610bfd578063e8a3d48514610c12578063e985e9c514610c275761027c565b8063a63f241511610113578063a63f24151461089b578063ab8c25c41461093e578063b88d4fde146109e1578063bb5733b614610ab2578063c0e7274014610b55578063c61c66a314610b6a5761027c565b80638ea0f59b14610744578063938e3d7b1461076e57806395d89b411461081f5780639f2ec9f214610834578063a22cb465146108605761027c565b80633eb1d777116101f357806370a08231116101ac57806370a0823114610693578063715018a6146106c657806379fb9052146106db5780637d4fb819146106f057806382762545146107055780638da5cb5b1461072f5761027c565b80633eb1d7771461050c57806342842e0e146105365780634f6ccce71461057957806355f804b3146105a35780636352211e146106545780636c0360eb1461067e5761027c565b806318160ddd1161024557806318160ddd1461041057806323b872dd146104255780632db11544146104685780632f745c5914610485578063327661e1146104be5780633821ef5a146104f75761027c565b80622917401461028157806301ffc9a7146102bd57806306fdde0314610305578063081812fc1461038f578063095ea7b3146103d5575b600080fd5b34801561028d57600080fd5b506102ab600480360360208110156102a457600080fd5b5035610ddc565b60408051918252519081900360200190f35b3480156102c957600080fd5b506102f1600480360360208110156102e057600080fd5b50356001600160e01b031916610dfa565b604080519115158252519081900360200190f35b34801561031157600080fd5b5061031a610e1d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035457818101518382015260200161033c565b50505050905090810190601f1680156103815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561039b57600080fd5b506103b9600480360360208110156103b257600080fd5b5035610eb4565b604080516001600160a01b039092168252519081900360200190f35b3480156103e157600080fd5b5061040e600480360360408110156103f857600080fd5b506001600160a01b038135169060200135610f16565b005b34801561041c57600080fd5b506102ab610ff1565b34801561043157600080fd5b5061040e6004803603606081101561044857600080fd5b506001600160a01b03813581169160208101359091169060400135611002565b61040e6004803603602081101561047e57600080fd5b5035611059565b34801561049157600080fd5b506102ab600480360360408110156104a857600080fd5b506001600160a01b03813516906020013561128b565b3480156104ca57600080fd5b506104d36112bc565b604051808260018111156104e357fe5b60ff16815260200191505060405180910390f35b34801561050357600080fd5b506102ab6112c5565b34801561051857600080fd5b5061040e6004803603602081101561052f57600080fd5b50356112cb565b34801561054257600080fd5b5061040e6004803603606081101561055957600080fd5b506001600160a01b03813581169160208101359091169060400135611356565b34801561058557600080fd5b506102ab6004803603602081101561059c57600080fd5b5035611371565b3480156105af57600080fd5b5061040e600480360360208110156105c657600080fd5b810190602081018135600160201b8111156105e057600080fd5b8201836020820111156105f257600080fd5b803590602001918460018302840111600160201b8311171561061357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061138d945050505050565b34801561066057600080fd5b506103b96004803603602081101561067757600080fd5b50356113fb565b34801561068a57600080fd5b5061031a611429565b34801561069f57600080fd5b506102ab600480360360208110156106b657600080fd5b50356001600160a01b031661148a565b3480156106d257600080fd5b5061040e6114f2565b3480156106e757600080fd5b5061040e61159e565b3480156106fc57600080fd5b506102ab6116b9565b34801561071157600080fd5b5061040e6004803603602081101561072857600080fd5b50356116bf565b34801561073b57600080fd5b506103b9611726565b34801561075057600080fd5b506102ab6004803603602081101561076757600080fd5b5035611735565b34801561077a57600080fd5b5061040e6004803603602081101561079157600080fd5b810190602081018135600160201b8111156107ab57600080fd5b8201836020820111156107bd57600080fd5b803590602001918460018302840111600160201b831117156107de57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611742945050505050565b34801561082b57600080fd5b5061031a6117b7565b34801561084057600080fd5b5061040e6004803603602081101561085757600080fd5b50351515611818565b34801561086c57600080fd5b5061040e6004803603604081101561088357600080fd5b506001600160a01b0381351690602001351515611894565b61040e600480360360408110156108b157600080fd5b810190602081018135600160201b8111156108cb57600080fd5b8201836020820111156108dd57600080fd5b803590602001918460208302840111600160201b831117156108fe57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250611999915050565b61040e6004803603604081101561095457600080fd5b810190602081018135600160201b81111561096e57600080fd5b82018360208201111561098057600080fd5b803590602001918460208302840111600160201b831117156109a157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250611cf7915050565b3480156109ed57600080fd5b5061040e60048036036080811015610a0457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610a3e57600080fd5b820183602082011115610a5057600080fd5b803590602001918460018302840111600160201b83111715610a7157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061204e945050505050565b61040e60048036036040811015610ac857600080fd5b810190602081018135600160201b811115610ae257600080fd5b820183602082011115610af457600080fd5b803590602001918460208302840111600160201b83111715610b1557600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050913592506120ac915050565b348015610b6157600080fd5b5061031a612492565b348015610b7657600080fd5b506102ab612520565b348015610b8b57600080fd5b5061031a60048036036020811015610ba257600080fd5b5035612526565b348015610bb557600080fd5b5061040e60048036036020811015610bcc57600080fd5b50356127a9565b348015610bdf57600080fd5b5061040e60048036036020811015610bf657600080fd5b5035612810565b348015610c0957600080fd5b506102ab612877565b348015610c1e57600080fd5b5061031a61287d565b348015610c3357600080fd5b506102f160048036036040811015610c4a57600080fd5b506001600160a01b03813581169160200135166128de565b348015610c6e57600080fd5b5061040e60048036036020811015610c8557600080fd5b503561290c565b348015610c9857600080fd5b5061040e60048036036020811015610caf57600080fd5b50356001600160a01b0316612973565b348015610ccb57600080fd5b506102f1612a76565b348015610ce057600080fd5b5061040e60048036036020811015610cf757600080fd5b5035612a84565b348015610d0a57600080fd5b5061040e60048036036020811015610d2157600080fd5b810190602081018135600160201b811115610d3b57600080fd5b820183602082011115610d4d57600080fd5b803590602001918460208302840111600160201b83111715610d6e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612bf7945050505050565b348015610db857600080fd5b5061040e60048036036040811015610dcf57600080fd5b5080359060200135612caa565b600c8181548110610de957fe5b600091825260209091200154905081565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b820191906000526020600020905b815481529060010190602001808311610e8c57829003601f168201915b505050505090505b90565b6000610ebf82612d2a565b610efa5760405162461bcd60e51b815260040180806020018281038252602c815260200180613e74602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f21826113fb565b9050806001600160a01b0316836001600160a01b03161415610f745760405162461bcd60e51b8152600401808060200182810382526021815260200180613f676021913960400191505060405180910390fd5b806001600160a01b0316610f86612d3d565b6001600160a01b03161480610fa75750610fa781610fa2612d3d565b6128de565b610fe25760405162461bcd60e51b8152600401808060200182810382526038815260200180613da76038913960400191505060405180910390fd5b610fec8383612d41565b505050565b6000610ffd6002612daf565b905090565b61101361100d612d3d565b82612dba565b61104e5760405162461bcd60e51b8152600401808060200182810382526031815260200180613f886031913960400191505060405180910390fd5b610fec838383612e5e565b600d54610100900460ff16156110ae576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6001600d5460ff1660018111156110c157fe5b146110fd5760405162461bcd60e51b8152600401808060200182810382526023815260200180613f446023913960400191505060405180910390fd5b611e61611108610ff1565b10611148576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6181611154610ff1565b0110611195576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b3481600c6002815481106111a557fe5b90600052602060002001540211156111f2576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b60005b81811015611287576112076010612fbc565b33601560006112166010612fc5565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061125b336112566010612fc5565b612fc9565b61127f6112686010612fc5565b61127a6112756010612fc5565b612fe3565b6130c5565b6001016111f5565b5050565b6001600160a01b03821660009081526001602052604081206112b3908363ffffffff61312816565b90505b92915050565b600d5460ff1681565b60145481565b6112d3612d3d565b6001600160a01b03166112e4611726565b6001600160a01b03161461132d576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b80600181111561133957fe5b600d805460ff19166001838181111561134e57fe5b021790555050565b610fec8383836040518060200160405280600081525061204e565b60008061138560028463ffffffff61313416565b509392505050565b611395612d3d565b6001600160a01b03166113a6611726565b6001600160a01b0316146113ef576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b6113f881613150565b50565b60006112b682604051806060016040528060298152602001613e09602991396002919063ffffffff61316316565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b60006001600160a01b0382166114d15760405162461bcd60e51b815260040180806020018281038252602a815260200180613ddf602a913960400191505060405180910390fd5b6001600160a01b03821660009081526001602052604090206112b690612daf565b6114fa612d3d565b6001600160a01b031661150b611726565b6001600160a01b031614611554576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6115a6612d3d565b6001600160a01b03166115b7611726565b6001600160a01b031614611600576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b60008061160b610ff1565b90505b60006116198261317a565b600181016000908152601560209081526040808320546001600160a01b03168084526019909252909120549192509060ff166116b2576001600160a01b038116600081815260196020526040808220805460ff19166001179055516703982720b4d380009082818181858883f1935050505015801561169c573d6000803e3d6000fd5b50600190930192604d84106116b2575050611287565b505061160e565b60125481565b6116c7612d3d565b6001600160a01b03166116d8611726565b6001600160a01b031614611721576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601455565b600a546001600160a01b031690565b600b8181548110610de957fe5b61174a612d3d565b6001600160a01b031661175b611726565b6001600160a01b0316146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b805161128790600e906020840190613bdb565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b611820612d3d565b6001600160a01b0316611831611726565b6001600160a01b03161461187a576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b600d80549115156101000261ff0019909216919091179055565b61189c612d3d565b6001600160a01b0316826001600160a01b03161415611902576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806005600061190f612d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611953612d3d565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b816012546119e382823360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b611a34576040805162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015290519081900360640190fd5b600d54610100900460ff1615611a89576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6000600d5460ff166001811115611a9c57fe5b14611aee576040805162461bcd60e51b815260206004820181905260248201527f43757272656e742073746167652073686f756c64206265205052455f53414c45604482015290519081900360640190fd5b611e61611af9610ff1565b10611b39576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6183611b45610ff1565b0110611b86576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b600b600081548110611b9457fe5b6000918252602080832090910154338352601690915260409091205484011115611c05576040805162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015290519081900360640190fd5b3483600c600081548110611c1557fe5b9060005260206000200154021115611c62576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b60005b83811015611cf057611c776010612fbc565b3360156000611c866010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b03959095169490941790935533808452601690925290912080546001019055611cdb906112566010612fc5565b611ce86112686010612fc5565b600101611c65565b5050505050565b81601354611d4182823360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b611d92576040805162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015290519081900360640190fd5b600d54610100900460ff1615611de7576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6000600d5460ff166001811115611dfa57fe5b14611e4c576040805162461bcd60e51b815260206004820181905260248201527f43757272656e742073746167652073686f756c64206265205052455f53414c45604482015290519081900360640190fd5b611e61611e57610ff1565b10611e97576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6183611ea3610ff1565b0110611ee4576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b600b600181548110611ef257fe5b6000918252602080832090910154338352601790915260409091205484011115611f63576040805162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015290519081900360640190fd5b3483600c600181548110611f7357fe5b9060005260206000200154021115611fc0576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b60005b83811015611cf057611fd56010612fbc565b3360156000611fe46010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b03959095169490941790935533808452601790925290912080546001019055612039906112566010612fc5565b6120466112686010612fc5565b600101611fc3565b61205f612059612d3d565b83612dba565b61209a5760405162461bcd60e51b8152600401808060200182810382526031815260200180613f886031913960400191505060405180910390fd5b6120a684848484613277565b50505050565b816011546120f682823360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b612147576040805162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015290519081900360640190fd5b600d54610100900460ff161561219c576040805162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b604482015290519081900360640190fd5b6000600d5460ff1660018111156121af57fe5b14612201576040805162461bcd60e51b815260206004820181905260248201527f43757272656e742073746167652073686f756c64206265205052455f53414c45604482015290519081900360640190fd5b611e6161220c610ff1565b1061224c576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6183612258610ff1565b0110612299576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b600b6000815481106122a757fe5b6000918252602080832090910154338352601890915260409091205484011115612318576040805162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015290519081900360640190fd5b3483600c60008154811061232857fe5b9060005260206000200154021115612375576040805162461bcd60e51b815260206004820152601c6024820152600080516020613d32833981519152604482015290519081900360640190fd5b33600090815260186020526040902054612404576123936010612fbc565b33601560006123a26010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b039590951694909417909355338084526018909252909120805460010190556123f7906112566010612fc5565b6124046112686010612fc5565b60005b83811015611cf0576124196010612fbc565b33601560006124286010612fc5565b81526020808201929092526040908101600090812080546001600160a01b0319166001600160a01b0395909516949094179093553380845260189092529091208054600101905561247d906112566010612fc5565b61248a6112686010612fc5565b600101612407565b600e805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156125185780601f106124ed57610100808354040283529160200191612518565b820191906000526020600020905b8154815290600101906020018083116124fb57829003601f168201915b505050505081565b60135481565b606061253182612d2a565b61256c5760405162461bcd60e51b815260040180806020018281038252602f815260200180613f15602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156126015780601f106125d657610100808354040283529160200191612601565b820191906000526020600020905b8154815290600101906020018083116125e457829003601f168201915b505050505090506060612612611429565b905080516000141561262657509050610e18565b8151156126e75780826040516020018083805190602001908083835b602083106126615780518252601f199092019160209182019101612642565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106126a95780518252601f19909201916020918201910161268a565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610e18565b806126f1856132c9565b6040516020018083805190602001908083835b602083106127235780518252601f199092019160209182019101612704565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b6020831061276b5780518252601f19909201916020918201910161274c565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6127b1612d3d565b6001600160a01b03166127c2611726565b6001600160a01b03161461280b576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601155565b612818612d3d565b6001600160a01b0316612829611726565b6001600160a01b031614612872576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601355565b60115481565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b612914612d3d565b6001600160a01b0316612925611726565b6001600160a01b03161461296e576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b601255565b61297b612d3d565b6001600160a01b031661298c611726565b6001600160a01b0316146129d5576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b6001600160a01b038116612a1a5760405162461bcd60e51b8152600401808060200182810382526026815260200180613ce86026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600d54610100900460ff1681565b612a8c612d3d565b6001600160a01b0316612a9d611726565b6001600160a01b031614612ae6576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b611e61612af1610ff1565b10612b31576040805162461bcd60e51b815260206004820152601b6024820152600080516020613c96833981519152604482015290519081900360640190fd5b611e6181612b3d610ff1565b0110612b7e576040805162461bcd60e51b81526020600482018190526024820152600080516020613e32833981519152604482015290519081900360640190fd5b60005b8181101561128757612b936010612fbc565b3360156000612ba26010612fc5565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550612be2336112566010612fc5565b612bef6112686010612fc5565b600101612b81565b80612c40816014543360405160200180826001600160a01b03166001600160a01b031660601b8152601401915050604051602081830303815290604052805190602001206131ce565b612c7b5760405162461bcd60e51b8152600401808060200182810382526029815260200180613d526029913960400191505060405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156120a6573d6000803e3d6000fd5b612cb2612d3d565b6001600160a01b0316612cc3611726565b6001600160a01b031614612d0c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ecc833981519152604482015290519081900360640190fd5b80600b8381548110612d1a57fe5b6000918252602090912001555050565b60006112b660028363ffffffff61339b16565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612d76826113fb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112b682612fc5565b6000612dc582612d2a565b612e005760405162461bcd60e51b815260040180806020018281038252602c815260200180613d7b602c913960400191505060405180910390fd5b6000612e0b836113fb565b9050806001600160a01b0316846001600160a01b03161480612e465750836001600160a01b0316612e3b84610eb4565b6001600160a01b0316145b80612e565750612e5681856128de565b949350505050565b826001600160a01b0316612e71826113fb565b6001600160a01b031614612eb65760405162461bcd60e51b8152600401808060200182810382526029815260200180613eec6029913960400191505060405180910390fd5b6001600160a01b038216612efb5760405162461bcd60e51b8152600401808060200182810382526024815260200180613d0e6024913960400191505060405180910390fd5b612f06838383610fec565b612f11600082612d41565b6001600160a01b0383166000908152600160205260409020612f39908263ffffffff6133a716565b506001600160a01b0382166000908152600160205260409020612f62908263ffffffff6133b316565b50612f756002828463ffffffff6133bf16565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80546001019055565b5490565b6112878282604051806020016040528060008152506133d5565b60608161300857506040805180820190915260018152600360fc1b6020820152610e18565b8160005b811561302057600101600a8204915061300c565b60608167ffffffffffffffff8111801561303957600080fd5b506040519080825280601f01601f191660200182016040528015613064576020820181803683370190505b509050815b85156130bc57600019016000600a8704600a028703603001905060008160f81b90508084848151811061309857fe5b60200101906001600160f81b031916908160001a905350600a880497505050613069565b50949350505050565b6130ce82612d2a565b6131095760405162461bcd60e51b815260040180806020018281038252602c815260200180613ea0602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610fec92840190613bdb565b60006112b38383613427565b6000808080613143868661348b565b9097909650945050505050565b8051611287906009906020840190613bdb565b6000613170848484613506565b90505b9392505050565b600f80546001019081905560408051426020808301919091523360601b8284015260548083019490945282518083039094018452607490910190915281519101206000908290816131c757fe5b0692915050565b600081815b855181101561326c5760008682815181106131ea57fe5b602002602001015190508083116132315782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250613263565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b506001016131d3565b509092149392505050565b613282848484612e5e565b61328e848484846135d0565b6120a65760405162461bcd60e51b8152600401808060200182810382526032815260200180613cb66032913960400191505060405180910390fd5b6060816132ee57506040805180820190915260018152600360fc1b6020820152610e18565b8160005b811561330657600101600a820491506132f2565b60608167ffffffffffffffff8111801561331f57600080fd5b506040519080825280601f01601f19166020018201604052801561334a576020820181803683370190505b50859350905060001982015b83156130bc57600a840660300160f81b8282806001900393508151811061337957fe5b60200101906001600160f81b031916908160001a905350600a84049350613356565b60006112b38383613750565b60006112b38383613768565b60006112b3838361382e565b600061317084846001600160a01b038516613878565b6133df838361390f565b6133ec60008484846135d0565b610fec5760405162461bcd60e51b8152600401808060200182810382526032815260200180613cb66032913960400191505060405180910390fd5b815460009082106134695760405162461bcd60e51b8152600401808060200182810382526022815260200180613c746022913960400191505060405180910390fd5b82600001828154811061347857fe5b9060005260206000200154905092915050565b8154600090819083106134cf5760405162461bcd60e51b8152600401808060200182810382526022815260200180613e526022913960400191505060405180910390fd5b60008460000184815481106134e057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816135a15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561356657818101518382015260200161354e565b50505050905090810190601f1680156135935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106135b457fe5b9060005260206000209060020201600101549150509392505050565b60006135e4846001600160a01b0316613a49565b6135f057506001612e56565b6060613716630a85bd0160e11b613605612d3d565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561367e578181015183820152602001613666565b50505050905090810190601f1680156136ab5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613cb6603291396001600160a01b038816919063ffffffff613a4f16565b9050600081806020019051602081101561372f57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015613824578354600019808301919081019060009087908390811061379b57fe5b90600052602060002001549050808760000184815481106137b857fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806137e857fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506112b6565b60009150506112b6565b600061383a8383613750565b613870575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556112b6565b5060006112b6565b6000828152600184016020526040812054806138dd575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055613173565b828560000160018303815481106138f057fe5b9060005260206000209060020201600101819055506000915050613173565b6001600160a01b03821661396a576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61397381612d2a565b156139c5576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6139d160008383610fec565b6001600160a01b03821660009081526001602052604090206139f9908263ffffffff6133b316565b50613a0c6002828463ffffffff6133bf16565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060613170848460008585613a6385613a49565b613ab4576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613af35780518252601f199092019160209182019101613ad4565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613b55576040519150601f19603f3d011682016040523d82523d6000602084013e613b5a565b606091505b5091509150613b6a828286613b75565b979650505050505050565b60608315613b84575081613173565b825115613b945782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561356657818101518382015260200161354e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613c1c57805160ff1916838001178555613c49565b82800160010185558215613c49579182015b82811115613c49578251825591602001919060010190613c2e565b50613c55929150613c59565b5090565b610eb191905b80821115613c555760008155600101613c5f56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416c6c20746f6b656e732068617665206265656e206d696e74656400000000004552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f206164647265737345544820616d6f756e74206973206e6f742073756666696369656e7400000000546869732066756e6374696f6e2063616e2062652063616c6c6564206f6e6c79206279206f776e65724552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e507572636861736520776f756c6420657863656564206d617820737570706c79456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e43757272656e742073746167652073686f756c64206265205055424c49435f53414c454552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220bfd7827094dbc712a3b208b56c2364ec5bf8fb9594d93e79ccd89cad72107b0364736f6c63430006060033
Deployed Bytecode Sourcemap
70287:10116:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;70517:71:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70517:71:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;70517:71:0;;:::i;:::-;;;;;;;;;;;;;;;;10421:150;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10421:150:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10421:150:0;-1:-1:-1;;;;;;10421:150:0;;:::i;:::-;;;;;;;;;;;;;;;;;;51911:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51911:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8::-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;51911:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54697:221;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54697:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;54697:221:0;;:::i;:::-;;;;-1:-1:-1;;;;;54697:221:0;;;;;;;;;;;;;;54227:404;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54227:404:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;54227:404:0;;;;;;;;:::i;:::-;;53705:211;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53705:211:0;;;:::i;55587:305::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55587:305:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;55587:305:0;;;;;;;;;;;;;;;;;:::i;77341:850::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;77341:850:0;;:::i;53467:162::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53467:162:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;53467:162:0;;;;;;;;:::i;70755:43::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70755:43:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71122:30;;5:9:-1;2:2;;;27:1;24;17:12;2:2;71122:30:0;;;:::i;79209:99::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79209:99:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;79209:99:0;;:::i;55963:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55963:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;55963:151:0;;;;;;;;;;;;;;;;;:::i;53993:172::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53993:172:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;53993:172:0;;:::i;79510:99::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79510:99:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;79510:99:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;79510:99:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;79510:99:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;79510:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;79510:99:0;;-1:-1:-1;79510:99:0;;-1:-1:-1;;;;;79510:99:0:i;51667:177::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51667:177:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;51667:177:0;;:::i;53286:97::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53286:97:0;;;:::i;51384:221::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51384:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;51384:221:0;-1:-1:-1;;;;;51384:221:0;;:::i;66653:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;66653:148:0;;;:::i;78199:567::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78199:567:0;;;:::i;71040:33::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;71040:33:0;;;:::i;72833:112::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72833:112:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72833:112:0;;:::i;66002:87::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;66002:87:0;;;:::i;70470:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70470:40:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;70470:40:0;;:::i;79617:97::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79617:97:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;79617:97:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;79617:97:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;79617:97:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;79617:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;79617:97:0;;-1:-1:-1;79617:97:0;;-1:-1:-1;;;;;79617:97:0:i;52080:104::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52080:104:0;;;:::i;72213:96::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72213:96:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72213:96:0;;;;:::i;54990:295::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54990:295:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;54990:295:0;;;;;;;;;;:::i;73563:1098::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;73563:1098:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;73563:1098:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;73563:1098:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;73563:1098:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;73563:1098:0;;-1:-1:-1;;73563:1098:0;;;-1:-1:-1;73563:1098:0;;-1:-1:-1;;73563:1098:0:i;74669:1102::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;74669:1102:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;74669:1102:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;74669:1102:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;74669:1102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;74669:1102:0;;-1:-1:-1;;74669:1102:0;;;-1:-1:-1;74669:1102:0;;-1:-1:-1;;74669:1102:0:i;56185:285::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56185:285:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;56185:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;56185:285:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;56185:285:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;56185:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56185:285:0;;-1:-1:-1;56185:285:0;;-1:-1:-1;;;;;56185:285:0:i;75779:1554::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;75779:1554:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;75779:1554:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;75779:1554:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;75779:1554:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;75779:1554:0;;-1:-1:-1;;75779:1554:0;;;-1:-1:-1;75779:1554:0;;-1:-1:-1;;75779:1554:0:i;70845:31::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70845:31:0;;;:::i;71080:35::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;71080:35:0;;;:::i;52255:792::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52255:792:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;52255:792:0;;:::i;72703:122::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72703:122:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72703:122:0;;:::i;72573:::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72573:122:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72573:122:0;;:::i;70998:35::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70998:35:0;;;:::i;79722:97::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79722:97:0;;;:::i;55356:164::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55356:164:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;55356:164:0;;;;;;;;;;:::i;72447:118::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72447:118:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72447:118:0;;:::i;66956:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;66956:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;66956:244:0;-1:-1:-1;;;;;66956:244:0;;:::i;70805:33::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70805:33:0;;;:::i;72953:602::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72953:602:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72953:602:0;;:::i;79316:186::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79316:186:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;79316:186:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;79316:186:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;79316:186:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;79316:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;79316:186:0;;-1:-1:-1;79316:186:0;;-1:-1:-1;;;;;79316:186:0:i;72317:122::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72317:122:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72317:122:0;;;;;;;:::i;70517:71::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70517:71:0;:::o;10421:150::-;-1:-1:-1;;;;;;10530:33:0;;10506:4;10530:33;;;;;;;;;;;;;10421:150;;;;:::o;51911:100::-;51998:5;51991:12;;;;;;;;-1:-1:-1;;51991:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51965:13;;51991:12;;51998:5;;51991:12;;51998:5;51991:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51911:100;;:::o;54697:221::-;54773:7;54801:16;54809:7;54801;:16::i;:::-;54793:73;;;;-1:-1:-1;;;54793:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54886:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54886:24:0;;54697:221::o;54227:404::-;54308:13;54324:23;54339:7;54324:14;:23::i;:::-;54308:39;;54372:5;-1:-1:-1;;;;;54366:11:0;:2;-1:-1:-1;;;;;54366:11:0;;;54358:57;;;;-1:-1:-1;;;54358:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54452:5;-1:-1:-1;;;;;54436:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54436:21:0;;:69;;;;54461:44;54485:5;54492:12;:10;:12::i;:::-;54461:23;:44::i;:::-;54428:161;;;;-1:-1:-1;;;54428:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54602:21;54611:2;54615:7;54602:8;:21::i;:::-;54227:404;;;:::o;53705:211::-;53766:7;53887:21;:12;:19;:21::i;:::-;53880:28;;53705:211;:::o;55587:305::-;55748:41;55767:12;:10;:12::i;:::-;55781:7;55748:18;:41::i;:::-;55740:103;;;;-1:-1:-1;;;55740:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55856:28;55866:4;55872:2;55876:7;55856:9;:28::i;77341:850::-;77420:14;;;;;;;77419:15;77411:49;;;;;-1:-1:-1;;;77411:49:0;;;;;;;;;;;;-1:-1:-1;;;77411:49:0;;;;;;;;;;;;;;;77496:17;77479:13;;;;;:34;;;;;;;;77471:82;;;;-1:-1:-1;;;77471:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70459:4;77572:13;:11;:13::i;:::-;:28;77564:68;;;;;-1:-1:-1;;;77564:68:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;77564:68:0;;;;;;;;;;;;;;;70459:4;77667:14;77651:13;:11;:13::i;:::-;:30;:45;77643:90;;;;;-1:-1:-1;;;77643:90:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;77643:90:0;;;;;;;;;;;;;;;77787:9;77769:14;77752:11;77764:1;77752:14;;;;;;;;;;;;;;;;:31;:44;;77744:85;;;;;-1:-1:-1;;;77744:85:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;77744:85:0;;;;;;;;;;;;;;;77847:9;77842:342;77866:14;77862:1;:18;77842:342;;;77902:27;:15;:25;:27::i;:::-;77987:10;77946:11;:38;77958:25;:15;:23;:25::i;:::-;77946:38;;;;;;;;;;;;:51;;;;;-1:-1:-1;;;;;77946:51:0;;;;;-1:-1:-1;;;;;77946:51:0;;;;;;78033:48;78043:10;78055:25;:15;:23;:25::i;:::-;78033:9;:48::i;:::-;78096:76;78109:25;:15;:23;:25::i;:::-;78136:35;78145:25;:15;:23;:25::i;:::-;78136:8;:35::i;:::-;78096:12;:76::i;:::-;77882:3;;77842:342;;;;77341:850;:::o;53467:162::-;-1:-1:-1;;;;;53591:20:0;;53564:7;53591:20;;;:13;:20;;;;;:30;;53615:5;53591:30;:23;:30;:::i;:::-;53584:37;;53467:162;;;;;:::o;70755:43::-;;;;;;:::o;71122:30::-;;;;:::o;79209:99::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;79293:6:::1;79287:13;;;;;;;;79271;:29:::0;;-1:-1:-1;;79271:29:0::1;::::0;;;;::::1;;;;;;;;;;;79209:99:::0;:::o;55963:151::-;56067:39;56084:4;56090:2;56094:7;56067:39;;;;;;;;;;;;:16;:39::i;53993:172::-;54068:7;;54110:22;:12;54126:5;54110:22;:15;:22;:::i;:::-;-1:-1:-1;54088:44:0;53993:172;-1:-1:-1;;;53993:172:0:o;79510:99::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;79581:20:::1;79593:7;79581:11;:20::i;:::-;79510:99:::0;:::o;51667:177::-;51739:7;51766:70;51783:7;51766:70;;;;;;;;;;;;;;;;;:12;;:70;;:16;:70;:::i;53286:97::-;53367:8;53360:15;;;;;;;;-1:-1:-1;;53360:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53334:13;;53360:15;;53367:8;;53360:15;;53367:8;53360:15;;;;;;;;;;;;;;;;;;;;;;;;51384:221;51456:7;-1:-1:-1;;;;;51484:19:0;;51476:74;;;;-1:-1:-1;;;51476:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51568:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66653:148::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;66744:6:::1;::::0;66723:40:::1;::::0;66760:1:::1;::::0;-1:-1:-1;;;;;66744:6:0::1;::::0;66723:40:::1;::::0;66760:1;;66723:40:::1;66774:6;:19:::0;;-1:-1:-1;;;;;;66774:19:0::1;::::0;;66653:148::o;78199:567::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;78249:13:::1;::::0;78299::::1;:11;:13::i;:::-;78277:35;;78325:434;78352:19;78374:20;78382:11;78374:7;:20::i;:::-;78461:1;78447:15:::0;::::1;78409:23;78435:28:::0;;;:11:::1;:28;::::0;;;;;;;;-1:-1:-1;;;;;78435:28:0::1;78483:27:::0;;;:10:::1;:27:::0;;;;;;;78352:42;;-1:-1:-1;78435:28:0;78483:27:::1;;78478:270;;-1:-1:-1::0;;;;;78531:27:0;::::1;;::::0;;;:10:::1;:27;::::0;;;;;:34;;-1:-1:-1;;78531:34:0::1;78561:4;78531:34;::::0;;78584:48;70628:11:::1;::::0;78531:27;78584:48;78531:27;78584:48;70628:11;78531:27;;78584:48:::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;78651:8:0::1;::::0;;::::1;::::0;70679:2:::1;78682:22:::0;::::1;78678:54;;78727:5;;;;78678:54;78325:434;;;;71040:33:::0;;;;:::o;72833:112::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;72909:15:::1;:28:::0;72833:112::o;66002:87::-;66075:6;;-1:-1:-1;;;;;66075:6:0;66002:87;:::o;70470:40::-;;;;;;;;;;79617:97;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;79688:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;52080:104::-:0;52169:7;52162:14;;;;;;;;-1:-1:-1;;52162:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52136:13;;52162:14;;52169:7;;52162:14;;52169:7;52162:14;;;;;;;;;;;;;;;;;;;;;;;;72213:96;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;72278:14:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;72278:23:0;;::::1;::::0;;;::::1;::::0;;72213:96::o;54990:295::-;55105:12;:10;:12::i;:::-;-1:-1:-1;;;;;55093:24:0;:8;-1:-1:-1;;;;;55093:24:0;;;55085:62;;;;;-1:-1:-1;;;55085:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;55205:8;55160:18;:32;55179:12;:10;:12::i;:::-;-1:-1:-1;;;;;55160:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;55160:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;55160:53:0;;;;;;;;;;;55244:12;:10;:12::i;:::-;55229:48;;;;;;;;;;-1:-1:-1;;;;;55229:48:0;;;;;;;;;;;;;;54990:295;;:::o;73563:1098::-;73673:11;73686:18;;71649:144;71686:11;71716:4;71766:10;71749:28;;;;;;-1:-1:-1;;;;;71749:28:0;-1:-1:-1;;;;;71749:28:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;71749:28:0;;;71739:39;;;;;;71649:18;:144::i;:::-;71627:224;;;;;-1:-1:-1;;;71627:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;73726:14:::1;::::0;::::1;::::0;::::1;;;73725:15;73717:49;;;::::0;;-1:-1:-1;;;73717:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;73717:49:0;;;;;;;;;;;;;::::1;;73802:14;73785:13;::::0;::::1;;::::0;:31;::::1;;;;;;;73777:76;;;::::0;;-1:-1:-1;;;73777:76:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;70459:4;73872:13;:11;:13::i;:::-;:28;73864:68;;;::::0;;-1:-1:-1;;;73864:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;73864:68:0;;;;;;;;;;;;;::::1;;70459:4;73967:14;73951:13;:11;:13::i;:::-;:30;:45;73943:90;;;::::0;;-1:-1:-1;;;73943:90:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;73943:90:0;;;;;;;;;;;;;::::1;;74103:14;74118:1;74103:17;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;74071:10:::1;74052:30:::0;;:18:::1;:30:::0;;;;;;;;:47;::::1;:68;;74044:109;;;::::0;;-1:-1:-1;;;74044:109:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;74207:9;74189:14;74172:11;74184:1;74172:14;;;;;;;;;;;;;;;;:31;:44;;74164:85;;;::::0;;-1:-1:-1;;;74164:85:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;74164:85:0;;;;;;;;;;;;;::::1;;74267:9;74262:392;74286:14;74282:1;:18;74262:392;;;74322:27;:15;:25;:27::i;:::-;74407:10;74366:11;:38;74378:25;:15;:23;:25::i;:::-;74366:38:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;74366:38:0;;;:51;;-1:-1:-1;;;;;;74366:51:0::1;-1:-1:-1::0;;;;;74366:51:0;;;::::1;::::0;;;::::1;::::0;;;74472:10:::1;74453:30:::0;;;:18:::1;:30:::0;;;;;;:35;;-1:-1:-1;74453:35:0::1;::::0;;74503:48:::1;::::0;74525:25:::1;:15;:23;:25::i;74503:48::-;74566:76;74579:25;:15;:23;:25::i;74566:76::-;74302:3;;74262:392;;;;73563:1098:::0;;;;:::o;74669:1102::-;74781:11;74794:20;;71649:144;71686:11;71716:4;71766:10;71749:28;;;;;;-1:-1:-1;;;;;71749:28:0;-1:-1:-1;;;;;71749:28:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;71749:28:0;;;71739:39;;;;;;71649:18;:144::i;:::-;71627:224;;;;;-1:-1:-1;;;71627:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;74836:14:::1;::::0;::::1;::::0;::::1;;;74835:15;74827:49;;;::::0;;-1:-1:-1;;;74827:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;74827:49:0;;;;;;;;;;;;;::::1;;74912:14;74895:13;::::0;::::1;;::::0;:31;::::1;;;;;;;74887:76;;;::::0;;-1:-1:-1;;;74887:76:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;70459:4;74982:13;:11;:13::i;:::-;:28;74974:68;;;::::0;;-1:-1:-1;;;74974:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;74974:68:0;;;;;;;;;;;;;::::1;;70459:4;75077:14;75061:13;:11;:13::i;:::-;:30;:45;75053:90;;;::::0;;-1:-1:-1;;;75053:90:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;75053:90:0;;;;;;;;;;;;;::::1;;75213:14;75228:1;75213:17;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;75181:10:::1;75162:30:::0;;:18:::1;:30:::0;;;;;;;;:47;::::1;:68;;75154:109;;;::::0;;-1:-1:-1;;;75154:109:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;75317:9;75299:14;75282:11;75294:1;75282:14;;;;;;;;;;;;;;;;:31;:44;;75274:85;;;::::0;;-1:-1:-1;;;75274:85:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;75274:85:0;;;;;;;;;;;;;::::1;;75377:9;75372:392;75396:14;75392:1;:18;75372:392;;;75432:27;:15;:25;:27::i;:::-;75517:10;75476:11;:38;75488:25;:15;:23;:25::i;:::-;75476:38:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;75476:38:0;;;:51;;-1:-1:-1;;;;;;75476:51:0::1;-1:-1:-1::0;;;;;75476:51:0;;;::::1;::::0;;;::::1;::::0;;;75582:10:::1;75563:30:::0;;;:18:::1;:30:::0;;;;;;:35;;-1:-1:-1;75563:35:0::1;::::0;;75613:48:::1;::::0;75635:25:::1;:15;:23;:25::i;75613:48::-;75676:76;75689:25;:15;:23;:25::i;75676:76::-;75412:3;;75372:392;;56185:285:::0;56317:41;56336:12;:10;:12::i;:::-;56350:7;56317:18;:41::i;:::-;56309:103;;;;-1:-1:-1;;;56309:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56423:39;56437:4;56443:2;56447:7;56456:5;56423:13;:39::i;:::-;56185:285;;;;:::o;75779:1554::-;75891:11;75904:20;;71649:144;71686:11;71716:4;71766:10;71749:28;;;;;;-1:-1:-1;;;;;71749:28:0;-1:-1:-1;;;;;71749:28:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;71749:28:0;;;71739:39;;;;;;71649:18;:144::i;:::-;71627:224;;;;;-1:-1:-1;;;71627:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;75946:14:::1;::::0;::::1;::::0;::::1;;;75945:15;75937:49;;;::::0;;-1:-1:-1;;;75937:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;75937:49:0;;;;;;;;;;;;;::::1;;76022:14;76005:13;::::0;::::1;;::::0;:31;::::1;;;;;;;75997:76;;;::::0;;-1:-1:-1;;;75997:76:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;70459:4;76092:13;:11;:13::i;:::-;:28;76084:68;;;::::0;;-1:-1:-1;;;76084:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;76084:68:0;;;;;;;;;;;;;::::1;;70459:4;76187:14;76171:13;:11;:13::i;:::-;:30;:45;76163:90;;;::::0;;-1:-1:-1;;;76163:90:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;76163:90:0;;;;;;;;;;;;;::::1;;76323:14;76338:1;76323:17;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;76291:10:::1;76272:30:::0;;:18:::1;:30:::0;;;;;;;;:47;::::1;:68;;76264:109;;;::::0;;-1:-1:-1;;;76264:109:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;76427:9;76409:14;76392:11;76404:1;76392:14;;;;;;;;;;;;;;;;:31;:44;;76384:85;;;::::0;;-1:-1:-1;;;76384:85:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;76384:85:0;;;;;;;;;;;;;::::1;;76557:10;76538:30;::::0;;;:18:::1;:30;::::0;;;;;76534:388:::1;;76590:27;:15;:25;:27::i;:::-;76675:10;76634:11;:38;76646:25;:15;:23;:25::i;:::-;76634:38:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;76634:38:0;;;:51;;-1:-1:-1;;;;;;76634:51:0::1;-1:-1:-1::0;;;;;76634:51:0;;;::::1;::::0;;;::::1;::::0;;;76740:10:::1;76721:30:::0;;;:18:::1;:30:::0;;;;;;:35;;-1:-1:-1;76721:35:0::1;::::0;;76771:48:::1;::::0;76793:25:::1;:15;:23;:25::i;76771:48::-;76834:76;76847:25;:15;:23;:25::i;76834:76::-;76939:9;76934:392;76958:14;76954:1;:18;76934:392;;;76994:27;:15;:25;:27::i;:::-;77079:10;77038:11;:38;77050:25;:15;:23;:25::i;:::-;77038:38:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;77038:38:0;;;:51;;-1:-1:-1;;;;;;77038:51:0::1;-1:-1:-1::0;;;;;77038:51:0;;;::::1;::::0;;;::::1;::::0;;;77144:10:::1;77125:30:::0;;;:18:::1;:30:::0;;;;;;:35;;-1:-1:-1;77125:35:0::1;::::0;;77175:48:::1;::::0;77197:25:::1;:15;:23;:25::i;77175:48::-;77238:76;77251:25;:15;:23;:25::i;77238:76::-;76974:3;;76934:392;;70845:31:::0;;;;;;;;;;;;;;;-1:-1:-1;;70845:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71080:35::-;;;;:::o;52255:792::-;52328:13;52362:16;52370:7;52362;:16::i;:::-;52354:76;;;;-1:-1:-1;;;52354:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52469:19;;;;:10;:19;;;;;;;;;52443:45;;;;;;-1:-1:-1;;52443:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;52469:19;52443:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52499:18;52520:9;:7;:9::i;:::-;52499:30;;52611:4;52605:18;52627:1;52605:23;52601:72;;;-1:-1:-1;52652:9:0;-1:-1:-1;52645:16:0;;52601:72;52777:23;;:27;52773:108;;52852:4;52858:9;52835:33;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;52835::0;;;;;;;;;;-1:-1:-1;52835:33:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;52835:33:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52835:33:0;;;52821:48;;;;;;52773:108;53013:4;53019:18;:7;:16;:18::i;:::-;52996:42;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;52996:42:0;;;;;;;;;;-1:-1:-1;52996:42:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;52996:42:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52996:42:0;;;52982:57;;;;52255:792;;;:::o;72703:122::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;72784:20:::1;:33:::0;72703:122::o;72573:::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;72654:20:::1;:33:::0;72573:122::o;70998:35::-;;;;:::o;79722:97::-;79799:12;79792:19;;;;;;;;-1:-1:-1;;79792:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79766:13;;79792:19;;79799:12;;79792:19;;79799:12;79792:19;;;;;;;;;;;;;;;;;;;;;;;;55356:164;-1:-1:-1;;;;;55477:25:0;;;55453:4;55477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;55356:164::o;72447:118::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;72526:18:::1;:31:::0;72447:118::o;66956:244::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;67045:22:0;::::1;67037:73;;;;-1:-1:-1::0;;;67037:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67147:6;::::0;67126:38:::1;::::0;-1:-1:-1;;;;;67126:38:0;;::::1;::::0;67147:6:::1;::::0;67126:38:::1;::::0;67147:6:::1;::::0;67126:38:::1;67175:6;:17:::0;;-1:-1:-1;;;;;;67175:17:0::1;-1:-1:-1::0;;;;;67175:17:0;;;::::1;::::0;;;::::1;::::0;;66956:244::o;70805:33::-;;;;;;;;;:::o;72953:602::-;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;70459:4:::1;73032:13;:11;:13::i;:::-;:28;73024:68;;;::::0;;-1:-1:-1;;;73024:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;73024:68:0;;;;;;;;;;;;;::::1;;70459:4;73127:14;73111:13;:11;:13::i;:::-;:30;:45;73103:90;;;::::0;;-1:-1:-1;;;73103:90:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;73103:90:0;;;;;;;;;;;;;::::1;;73211:9;73206:342;73230:14;73226:1;:18;73206:342;;;73266:27;:15;:25;:27::i;:::-;73351:10;73310:11;:38;73322:25;:15;:23;:25::i;:::-;73310:38;;;;;;;;;;;;:51;;;;;-1:-1:-1::0;;;;;73310:51:0::1;;;;;-1:-1:-1::0;;;;;73310:51:0::1;;;;;;73397:48;73407:10;73419:25;:15;:23;:25::i;73397:48::-;73460:76;73473:25;:15;:23;:25::i;73460:76::-;73246:3;;73206:342;;79316:186:::0;79381:11;71961:155;71998:11;72028:15;;72089:10;72072:28;;;;;;-1:-1:-1;;;;;72072:28:0;-1:-1:-1;;;;;72072:28:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;72072:28:0;;;72062:39;;;;;;71961:18;:155::i;:::-;71939:246;;;;-1:-1:-1;;;71939:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79457:37:::1;::::0;79423:21:::1;::::0;79465:10:::1;::::0;79457:37;::::1;;;::::0;79423:21;;79405:15:::1;79457:37:::0;79405:15;79457:37;79423:21;79465:10;79457:37;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;72317:122:0::0;66233:12;:10;:12::i;:::-;-1:-1:-1;;;;;66222:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;66222:23:0;;66214:68;;;;;-1:-1:-1;;;66214:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;66214:68:0;;;;;;;;;;;;;;;72425:6:::1;72401:14;72416:5;72401:21;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;;72317:122:0:o;57937:127::-;58002:4;58026:30;:12;58048:7;58026:30;:21;:30;:::i;667:106::-;755:10;667:106;:::o;63955:192::-;64030:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;64030:29:0;-1:-1:-1;;;;;64030:29:0;;;;;;;;:24;;64084:23;64030:24;64084:14;:23::i;:::-;-1:-1:-1;;;;;64075:46:0;;;;;;;;;;;63955:192;;:::o;44588:123::-;44657:7;44684:19;44692:3;44684:7;:19::i;58231:355::-;58324:4;58349:16;58357:7;58349;:16::i;:::-;58341:73;;;;-1:-1:-1;;;58341:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58425:13;58441:23;58456:7;58441:14;:23::i;:::-;58425:39;;58494:5;-1:-1:-1;;;;;58483:16:0;:7;-1:-1:-1;;;;;58483:16:0;;:51;;;;58527:7;-1:-1:-1;;;;;58503:31:0;:20;58515:7;58503:11;:20::i;:::-;-1:-1:-1;;;;;58503:31:0;;58483:51;:94;;;;58538:39;58562:5;58569:7;58538:23;:39::i;:::-;58475:103;58231:355;-1:-1:-1;;;;58231:355:0:o;61367:599::-;61492:4;-1:-1:-1;;;;;61465:31:0;:23;61480:7;61465:14;:23::i;:::-;-1:-1:-1;;;;;61465:31:0;;61457:85;;;;-1:-1:-1;;;61457:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61579:16:0;;61571:65;;;;-1:-1:-1;;;61571:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61649:39;61670:4;61676:2;61680:7;61649:20;:39::i;:::-;61753:29;61770:1;61774:7;61753:8;:29::i;:::-;-1:-1:-1;;;;;61795:19:0;;;;;;:13;:19;;;;;:35;;61822:7;61795:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;;61841:17:0;;;;;;:13;:17;;;;;:30;;61863:7;61841:30;:21;:30;:::i;:::-;-1:-1:-1;61884:29:0;:12;61901:7;61910:2;61884:29;:16;:29;:::i;:::-;;61950:7;61946:2;-1:-1:-1;;;;;61931:27:0;61940:4;-1:-1:-1;;;;;61931:27:0;;;;;;;;;;;61367:599;;;:::o;68485:181::-;68639:19;;68657:1;68639:19;;;68485:181::o;68363:114::-;68455:14;;68363:114::o;58929:110::-;59005:26;59015:2;59019:7;59005:26;;;;;;;;;;;;:9;:26::i;79827:573::-;79877:27;79921:7;79917:50;;-1:-1:-1;79945:10:0;;;;;;;;;;;;-1:-1:-1;;;79945:10:0;;;;;;79917:50;79986:2;79977:6;80018:69;80025:6;;80018:69;;80048:5;;80073:2;80068:7;;;;80018:69;;;80097:17;80127:3;80117:14;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;80117:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;108:14;80117::0;87:42:-1;143:17;;-1:-1;80117:14:0;-1:-1:-1;80097:34:0;-1:-1:-1;80151:3:0;80165:198;80172:7;;80165:198;;-1:-1:-1;;80200:3:0;80218:10;80253:2;80248;:7;80258:2;80248:12;80243:2;:17;80232:2;:29;80218:44;;80277:9;80296:4;80289:12;;80277:24;;80326:2;80316:4;80321:1;80316:7;;;;;;;;;;;:12;-1:-1:-1;;;;;80316:12:0;;;;;;;;-1:-1:-1;80349:2:0;80343:8;;;;80165:198;;;;;-1:-1:-1;80387:4:0;79827:573;-1:-1:-1;;;;79827:573:0:o;62122:215::-;62222:16;62230:7;62222;:16::i;:::-;62214:73;;;;-1:-1:-1;;;62214:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62298:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;36348:137::-;36419:7;36454:22;36458:3;36470:5;36454:3;:22::i;45050:236::-;45130:7;;;;45190:22;45194:3;45206:5;45190:3;:22::i;:::-;45159:53;;;;-1:-1:-1;45050:236:0;-1:-1:-1;;;;;45050:236:0:o;62567:100::-;62640:19;;;;:8;;:19;;;;;:::i;46336:213::-;46443:7;46494:44;46499:3;46519;46525:12;46494:4;:44::i;:::-;46486:53;-1:-1:-1;46336:213:0;;;;;;:::o;78826:375::-;78930:9;:11;;;;;;;;78977:154;;;78994:15;78977:154;;;;;;;;79060:10;78977:154;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;78977:154:0;;;;;;;78967:165;;;;;78878:7;;79185:8;;;78959:234;;;;;;78826:375;-1:-1:-1;;78826:375:0:o;69375:796::-;69466:4;69506;69466;69523:525;69547:5;:12;69543:1;:16;69523:525;;;69581:20;69604:5;69610:1;69604:8;;;;;;;;;;;;;;69581:31;;69649:12;69633;:28;69629:408;;69803:12;69817;69786:44;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;69786:44:0;;;69776:55;;;;;;69761:70;;69629:408;;;69993:12;70007;69976:44;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;69976:44:0;;;69966:55;;;;;;69951:70;;69629:408;-1:-1:-1;69561:3:0;;69523:525;;;-1:-1:-1;70143:20:0;;;;69375:796;-1:-1:-1;;;69375:796:0:o;57352:272::-;57466:28;57476:4;57482:2;57486:7;57466:9;:28::i;:::-;57513:48;57536:4;57542:2;57546:7;57555:5;57513:22;:48::i;:::-;57505:111;;;;-1:-1:-1;;;57505:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46831:746;46887:13;47108:10;47104:53;;-1:-1:-1;47135:10:0;;;;;;;;;;;;-1:-1:-1;;;47135:10:0;;;;;;47104:53;47182:5;47167:12;47223:78;47230:9;;47223:78;;47256:8;;47287:2;47279:10;;;;47223:78;;;47311:19;47343:6;47333:17;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47333:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;108:14;47333:17:0;87:42:-1;143:17;;-1:-1;47333:17:0;-1:-1:-1;47405:5:0;;-1:-1:-1;47311:39:0;-1:-1:-1;;;47377:10:0;;47421:117;47428:9;;47421:117;;47497:2;47490:4;:9;47485:2;:14;47472:29;;47454:6;47461:7;;;;;;;47454:15;;;;;;;;;;;:47;-1:-1:-1;;;;;47454:47:0;;;;;;;;-1:-1:-1;47524:2:0;47516:10;;;;47421:117;;44349:151;44433:4;44457:35;44467:3;44487;44457:9;:35::i;35435:137::-;35505:4;35529:35;35537:3;35557:5;35529:7;:35::i;35128:131::-;35195:4;35219:32;35224:3;35244:5;35219:4;:32::i;43772:185::-;43861:4;43885:64;43890:3;43910;-1:-1:-1;;;;;43924:23:0;;43885:4;:64::i;59266:250::-;59362:18;59368:2;59372:7;59362:5;:18::i;:::-;59399:54;59430:1;59434:2;59438:7;59447:5;59399:22;:54::i;:::-;59391:117;;;;-1:-1:-1;;;59391:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31386:204;31481:18;;31453:7;;31481:26;-1:-1:-1;31473:73:0;;;;-1:-1:-1;;;31473:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31564:3;:11;;31576:5;31564:18;;;;;;;;;;;;;;;;31557:25;;31386:204;;;;:::o;41632:279::-;41736:19;;41699:7;;;;41736:27;-1:-1:-1;41728:74:0;;;;-1:-1:-1;;;41728:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41815:22;41840:3;:12;;41853:5;41840:19;;;;;;;;;;;;;;;;;;41815:44;;41878:5;:10;;;41890:5;:12;;;41870:33;;;;;41632:279;;;;;:::o;43129:319::-;43223:7;43262:17;;;:12;;;:17;;;;;;43313:12;43298:13;43290:36;;;;-1:-1:-1;;;43290:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;43290:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43380:3;:12;;43404:1;43393:8;:12;43380:26;;;;;;;;;;;;;;;;;;:33;;;43373:40;;;43129:319;;;;;:::o;63232:604::-;63353:4;63380:15;:2;-1:-1:-1;;;;;63380:13:0;;:15::i;:::-;63375:60;;-1:-1:-1;63419:4:0;63412:11;;63375:60;63445:23;63471:252;-1:-1:-1;;;63584:12:0;:10;:12::i;:::-;63611:4;63630:7;63652:5;63487:181;;;;;;-1:-1:-1;;;;;63487:181:0;-1:-1:-1;;;;;63487:181:0;;;;;;-1:-1:-1;;;;;63487:181:0;-1:-1:-1;;;;;63487:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;63487:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;63487:181:0;;;;-1:-1:-1;;;;;63487:181:0;;38:4:-1;29:7;25:18;67:10;61:17;-1:-1;;;;;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;63487:181:0;63471:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63471:15:0;;;:252;;:15;:252;:::i;:::-;63445:278;;63734:13;63761:10;63750:32;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63750:32:0;-1:-1:-1;;;;;;63801:26:0;-1:-1:-1;;;63801:26:0;;-1:-1:-1;;;63232:604:0;;;;;;:::o;40947:125::-;41018:4;41042:17;;;:12;;;;;:17;;;;;;:22;;;40947:125::o;29088:1544::-;29154:4;29293:19;;;:12;;;:19;;;;;;29329:15;;29325:1300;;29764:18;;-1:-1:-1;;29715:14:0;;;;29764:22;;;;29691:21;;29764:3;;:22;;30051;;;;;;;;;;;;;;30031:42;;30197:9;30168:3;:11;;30180:13;30168:26;;;;;;;;;;;;;;;;;;;:38;;;;30274:23;;;30316:1;30274:12;;;:23;;;;;;30300:17;;;30274:43;;30426:17;;30274:3;;30426:17;;;;;;;;;;;;;;;;;;;;;;30521:3;:12;;:19;30534:5;30521:19;;;;;;;;;;;30514:26;;;30564:4;30557:11;;;;;;;;29325:1300;30608:5;30601:12;;;;;28498:414;28561:4;28583:21;28593:3;28598:5;28583:9;:21::i;:::-;28578:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;28621:11:0;:23;;;;;;;;;;;;;28804:18;;28782:19;;;:12;;;:19;;;;;;:40;;;;28837:11;;28578:327;-1:-1:-1;28888:5:0;28881:12;;38447:692;38523:4;38658:17;;;:12;;;:17;;;;;;38692:13;38688:444;;-1:-1:-1;;38777:38:0;;;;;;;;;;;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;38759:12:0;:57;;;;;;;;;;;;;;;;;;;;;;;;38974:19;;38954:17;;;:12;;;:17;;;;;;;:39;39008:11;;38688:444;39088:5;39052:3;:12;;39076:1;39065:8;:12;39052:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39115:5;39108:12;;;;;59852:404;-1:-1:-1;;;;;59932:16:0;;59924:61;;;;;-1:-1:-1;;;59924:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60005:16;60013:7;60005;:16::i;:::-;60004:17;59996:58;;;;;-1:-1:-1;;;59996:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60067:45;60096:1;60100:2;60104:7;60067:20;:45::i;:::-;-1:-1:-1;;;;;60125:17:0;;;;;;:13;:17;;;;;:30;;60147:7;60125:30;:21;:30;:::i;:::-;-1:-1:-1;60168:29:0;:12;60185:7;60194:2;60168:29;:16;:29;:::i;:::-;-1:-1:-1;60215:33:0;;60240:7;;-1:-1:-1;;;;;60215:33:0;;;60232:1;;60215:33;;60232:1;;60215:33;59852:404;;:::o;19486:422::-;19853:20;19892:8;;;19486:422::o;22404:195::-;22507:12;22539:52;22561:6;22569:4;22575:1;22578:12;22507;23708:18;23719:6;23708:10;:18::i;:::-;23700:60;;;;;-1:-1:-1;;;23700:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23834:12;23848:23;23875:6;-1:-1:-1;;;;;23875:11:0;23895:5;23903:4;23875:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;23875:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;23833:75:0;;;;23926:52;23944:7;23953:10;23965:12;23926:17;:52::i;:::-;23919:59;23456:530;-1:-1:-1;;;;;;;23456:530:0:o;25996:742::-;26111:12;26140:7;26136:595;;;-1:-1:-1;26171:10:0;26164:17;;26136:595;26285:17;;:21;26281:439;;26548:10;26542:17;26609:15;26596:10;26592:2;26588:19;26581:44;26496:148;26684:20;;-1:-1:-1;;;26684:20:0;;;;;;;;;;;;;;;;;26691:12;;26684:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;70287:10116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70287:10116:0;;;-1:-1:-1;70287:10116:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://bfd7827094dbc712a3b208b56c2364ec5bf8fb9594d93e79ccd89cad72107b03
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.