ERC-721
NFT
Overview
Max Total Supply
1,000 LDMN
Holders
325
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 LDMNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Lacedameon
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { 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 /** * @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 /** * @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 /** * @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 /** * @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 /** * @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 /** * @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() { // 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 /** * @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 /** * @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 /** * @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 /** * @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 /** * @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); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol /** * @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_) { _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 /** * @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() { 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: contracts/Lacedameon.sol /** * @title Lacedameon contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract Lacedameon is ERC721, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 public startingIndexBlock; uint256 public startingIndex; uint256 public privateMintPrice = 0.075 ether; uint256 public publicMintPrice = 0.08 ether; uint256 public maxToMint = 5; uint256 public MAX_MINT_WHITELIST = 5; uint256 public MAX_ELEMENTS = 1000; uint256 public REVEAL_TIMESTAMP; bool public revealed = false; string public notRevealedUri = ""; string public PROVENANCE_HASH = ""; bool public saleIsActive = false; bool public privateSaleIsActive = true; struct Whitelist { address addr; uint256 claimAmount; uint256 hasMinted; } mapping(address => Whitelist) public whitelist; mapping(address => Whitelist) public winnerlist; address[] whitelistAddr; address[] winnerlistAddr; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { REVEAL_TIMESTAMP = block.timestamp; _setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } /** * Get the array of token for owner. */ function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); for (uint256 index; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } /** * Check if certain token id is exists. */ function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } /** * Set presell price to mint */ function setPrivateMintPrice(uint256 _price) external onlyOwner { privateMintPrice = _price; } /** * Set publicsell price to mint */ function setPublicMintPrice(uint256 _price) external onlyOwner { publicMintPrice = _price; } /** * Set maximum count to mint per once. */ function setMaxToMint(uint256 _maxValue) external onlyOwner { maxToMint = _maxValue; } /** * reserve by owner */ function reserve(uint256 _count) public onlyOwner { uint256 total = totalSupply(); require(total + _count <= MAX_ELEMENTS, "Exceeded"); for (uint256 i = 0; i < _count; i++) { _safeMint(msg.sender, total + i); } } /** * Set reveal timestamp when finished the sale. */ function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner { REVEAL_TIMESTAMP = _revealTimeStamp; } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory _provenanceHash) external onlyOwner { PROVENANCE_HASH = _provenanceHash; } function setBaseURI(string memory baseURI) external onlyOwner { _setBaseURI(baseURI); } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } //only owner function reveal() public onlyOwner { revealed = true; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); require(tokenId < totalSupply(), "URI query for nonexistent token"); if (revealed == false) { return notRevealedUri; } string memory base = baseURI(); return string(abi.encodePacked(base, "/", tokenId.toString(), ".json")); } /* * Pause sale if active, make active if paused */ function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipPrivateSaleState() public onlyOwner { privateSaleIsActive = !privateSaleIsActive; } /** * Mints tokens */ function mint(uint256 _count) public payable { uint256 total = totalSupply(); require(saleIsActive, "Sale must be active to mint"); require((total + _count) <= MAX_ELEMENTS, "Max limit"); if (privateSaleIsActive) { require( (privateMintPrice * _count) <= msg.value, "Value below price" ); require(_count <= MAX_MINT_WHITELIST, "Above max tx count"); require(isWhitelisted(msg.sender), "Is not whitelisted"); require( whitelist[msg.sender].hasMinted.add(_count) <= MAX_MINT_WHITELIST, "Can only mint 5 while whitelisted" ); whitelist[msg.sender].hasMinted = whitelist[msg.sender] .hasMinted .add(_count); } else { if (isWhitelisted(msg.sender)) { require((balanceOf(msg.sender) - whitelist[msg.sender].hasMinted + _count) <= maxToMint, "Can only mint 5 tokens"); } else { require((balanceOf(msg.sender) + _count) <= maxToMint, "Can only mint 5 tokens"); } require( (publicMintPrice * _count) <= msg.value, "Value below price" ); } for (uint256 i = 0; i < _count; i++) { uint256 mintIndex = totalSupply() + 1; if (totalSupply() < MAX_ELEMENTS) { _safeMint(msg.sender, mintIndex); } } // If we haven't set the starting index and this is either // 1) the last saleable token or // 2) the first token to be sold after the end of pre-sale, set the starting index block if ( startingIndexBlock == 0 && (totalSupply() == MAX_ELEMENTS || block.timestamp >= REVEAL_TIMESTAMP) ) { startingIndexBlock = block.number; } } function freeMint(uint256 _count) public { uint256 total = totalSupply(); require(isWinnerlisted(msg.sender), "Is not winnerlisted"); require(saleIsActive, "Sale must be active to mint"); require((total + _count) <= MAX_ELEMENTS, "Exceeds max supply"); require( winnerlist[msg.sender].claimAmount > 0, "You have no amount to claim" ); require( _count <= winnerlist[msg.sender].claimAmount, "You claim amount exceeded" ); for (uint256 i = 0; i < _count; i++) { uint256 mintIndex = totalSupply() + 1; if (totalSupply() < MAX_ELEMENTS) { _safeMint(msg.sender, mintIndex); } } winnerlist[msg.sender].claimAmount = winnerlist[msg.sender].claimAmount - _count; // If we haven't set the starting index and this is either // 1) the last saleable token or // 2) the first token to be sold after the end of pre-sale, set the starting index block if ( startingIndexBlock == 0 && (totalSupply() == MAX_ELEMENTS || block.timestamp >= REVEAL_TIMESTAMP) ) { startingIndexBlock = block.number; } } /** * Set the starting index for the collection */ function setStartingIndex() external onlyOwner { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_ELEMENTS; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if ((block.number - startingIndexBlock) > 255) { startingIndex = uint256(blockhash(block.number - 1)) % MAX_ELEMENTS; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex + 1; } } function setWhitelistAddr(address[] memory addrs) public onlyOwner { whitelistAddr = addrs; for (uint256 i = 0; i < whitelistAddr.length; i++) { addAddressToWhitelist(whitelistAddr[i]); } } /** * Set the starting index block for the collection, essentially unblocking * setting starting index */ function emergencySetStartingIndexBlock() external onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; (bool success, ) = msg.sender.call{value: balance}(""); require(success); } function partialWithdraw(uint256 _amount, address payable _to) external onlyOwner { require(_amount > 0, "Withdraw must be greater than 0"); require(_amount <= address(this).balance, "Amount too high"); (bool success, ) = _to.call{value: _amount}(""); require(success); } function addAddressToWhitelist(address addr) public onlyOwner returns (bool success) { require(!isWhitelisted(addr), "Already whitelisted"); whitelist[addr].addr = addr; success = true; } function isWhitelisted(address addr) public view returns (bool isWhiteListed) { return whitelist[addr].addr == addr; } function addAddressToWinnerlist(address addr, uint256 claimAmount) public onlyOwner returns (bool success) { require(!isWinnerlisted(addr), "Already winnerlisted"); winnerlist[addr].addr = addr; winnerlist[addr].claimAmount = claimAmount; winnerlist[addr].hasMinted = 0; success = true; } function isWinnerlisted(address addr) public view returns (bool isWinnerListed) { return winnerlist[addr].addr == addr; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"addAddressToWinnerlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWinnerlisted","outputs":[{"internalType":"bool","name":"isWinnerListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"partialWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_maxValue","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrivateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"setWhitelistAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"winnerlist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
67010a741a46278000600d5567011c37937e080000600e556005600f8190556010556103e86011556013805460ff1916905560a06040819052600060808190526200004d9160149162000297565b506040805160208101918290526000908190526200006e9160159162000297565b506016805461ffff19166101001790553480156200008b57600080fd5b5060405162003c2e38038062003c2e833981016040819052620000ae91620003f4565b8383620000c26301ffc9a760e01b6200018d565b8151620000d790600690602085019062000297565b508051620000ed90600790602084019062000297565b50620001006380ac58cd60e01b6200018d565b62000112635b5e139f60e01b6200018d565b6200012463780e9d6360e01b6200018d565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35042601255620001788262000212565b62000183816200022b565b5050505062000500565b6001600160e01b03198082161415620001ed5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e746572666163652069640000000060448201526064015b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b80516200022790600990602084019062000297565b5050565b600a546001600160a01b03163314620002875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001e4565b8051620002279060149060208401905b828054620002a590620004ad565b90600052602060002090601f016020900481019282620002c9576000855562000314565b82601f10620002e457805160ff191683800117855562000314565b8280016001018555821562000314579182015b8281111562000314578251825591602001919060010190620002f7565b506200032292915062000326565b5090565b5b8082111562000322576000815560010162000327565b600082601f8301126200034f57600080fd5b81516001600160401b03808211156200036c576200036c620004ea565b604051601f8301601f19908116603f01168101908282118183101715620003975762000397620004ea565b81604052838152602092508683858801011115620003b457600080fd5b600091505b83821015620003d85785820183015181830184015290820190620003b9565b83821115620003ea5760008385830101525b9695505050505050565b600080600080608085870312156200040b57600080fd5b84516001600160401b03808211156200042357600080fd5b62000431888389016200033d565b955060208701519150808211156200044857600080fd5b62000456888389016200033d565b945060408701519150808211156200046d57600080fd5b6200047b888389016200033d565b935060608701519150808211156200049257600080fd5b50620004a1878288016200033d565b91505092959194509250565b600181811c90821680620004c257607f821691505b60208210811415620004e457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61371e80620005106000396000f3fe60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a8b578063f2fde38b14610aab578063f571d67c14610acb578063ff1b655614610b0757600080fd5b8063e36d6498146109fd578063e985e9c514610a13578063e986655014610a5c578063eb8d244414610a7157600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cb774d47146109b1578063cd7d508f146109c7578063dc53fd92146109e757600080fd5b8063a22cb4651461093c578063a475b5dd1461095c578063b88d4fde1461097157600080fd5b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b146108b057806395d89b41146108ce5780639b19251a146108e3578063a0712d681461092957600080fd5b80637c928fe91461082e5780637d17fcbe1461084e578063819b25ba146108635780638462151c1461088357600080fd5b806370a08231116101b657806370a082311461076e578063715018a61461078e578063738c69a6146107a35780637b9417c81461080e57600080fd5b80636352211e146107195780636c0360eb146107395780637084b2b71461074e57600080fd5b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e57806351830227146106a957806355f804b3146106c357806358941a4d146106e35780635d82cf6e146106f957600080fd5b80633ccfd60b1461063457806342842e0e146106495780634f558e79146106695780634f6ccce71461068957600080fd5b806334918dfd1161029b57806334918dfd146105d45780633502a716146105e95780633719e3b0146105ff5780633af32abf1461061457600080fd5b80631d97f38e1461057457806323b872dd146105945780632f745c59146105b457600080fd5b8063095ea7b31161032e5780631496783711610308578063149678371461050957806318160ddd1461052957806318e20a381461053e5780631970d1fb1461055457600080fd5b8063095ea7b3146104b35780630ba133c5146104d357806310969523146104e957600080fd5b806304737a011161036a57806304737a011461042557806306fdde0314610444578063081812fc14610466578063081c8c441461049e57600080fd5b806204348e14610390578063018a2c37146103b957806301ffc9a7146103db575b600080fd5b34801561039c57600080fd5b506103a6600d5481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004613291565b610b1c565b005b3480156103e757600080fd5b506104156103f636600461320e565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020016103b0565b34801561043157600080fd5b5060165461041590610100900460ff1681565b34801561045057600080fd5b50610459610b54565b6040516103b091906133e6565b34801561047257600080fd5b50610486610481366004613291565b610be6565b6040516001600160a01b0390911681526020016103b0565b3480156104aa57600080fd5b50610459610c6e565b3480156104bf57600080fd5b506103d96104ce366004613129565b610cfc565b3480156104df57600080fd5b506103a6600f5481565b3480156104f557600080fd5b506103d9610504366004613248565b610e12565b34801561051557600080fd5b50610415610524366004613129565b610e53565b34801561053557600080fd5b506103a6610f1f565b34801561054a57600080fd5b506103a660125481565b34801561056057600080fd5b506103d961056f366004613291565b610f30565b34801561058057600080fd5b506103d961058f3660046132aa565b610f5f565b3480156105a057600080fd5b506103d96105af366004613035565b61107b565b3480156105c057600080fd5b506103a66105cf366004613129565b6110ac565b3480156105e057600080fd5b506103d96110d7565b3480156105f557600080fd5b506103a660115481565b34801561060b57600080fd5b506103d9611115565b34801561062057600080fd5b5061041561062f366004612fdf565b61115c565b34801561064057600080fd5b506103d961117d565b34801561065557600080fd5b506103d9610664366004613035565b6111fe565b34801561067557600080fd5b50610415610684366004613291565b611219565b34801561069557600080fd5b506103a66106a4366004613291565b611224565b3480156106b557600080fd5b506013546104159060ff1681565b3480156106cf57600080fd5b506103d96106de366004613248565b61123a565b3480156106ef57600080fd5b506103a660105481565b34801561070557600080fd5b506103d9610714366004613291565b611270565b34801561072557600080fd5b50610486610734366004613291565b61129f565b34801561074557600080fd5b506104596112c7565b34801561075a57600080fd5b506103d9610769366004613291565b6112d6565b34801561077a57600080fd5b506103a6610789366004612fdf565b611305565b34801561079a57600080fd5b506103d9611391565b3480156107af57600080fd5b506107e96107be366004612fdf565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b0390941684526020840192909252908201526060016103b0565b34801561081a57600080fd5b50610415610829366004612fdf565b611405565b34801561083a57600080fd5b506103d9610849366004613291565b6114ac565b34801561085a57600080fd5b506103d961172d565b34801561086f57600080fd5b506103d961087e366004613291565b6117ad565b34801561088f57600080fd5b506108a361089e366004612fdf565b61185a565b6040516103b091906133a2565b3480156108bc57600080fd5b50600a546001600160a01b0316610486565b3480156108da57600080fd5b50610459611915565b3480156108ef57600080fd5b506107e96108fe366004612fdf565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6103d9610937366004613291565b611924565b34801561094857600080fd5b506103d96109573660046130f6565b611d0e565b34801561096857600080fd5b506103d9611dd3565b34801561097d57600080fd5b506103d961098c366004613076565b611e0c565b34801561099d57600080fd5b506104596109ac366004613291565b611e44565b3480156109bd57600080fd5b506103a6600c5481565b3480156109d357600080fd5b506103d96109e2366004613155565b611fe3565b3480156109f357600080fd5b506103a6600e5481565b348015610a0957600080fd5b506103a6600b5481565b348015610a1f57600080fd5b50610415610a2e366004612ffc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506103d9612071565b348015610a7d57600080fd5b506016546104159060ff1681565b348015610a9757600080fd5b506103d9610aa6366004613248565b61219c565b348015610ab757600080fd5b506103d9610ac6366004612fdf565b6121d9565b348015610ad757600080fd5b50610415610ae6366004612fdf565b6001600160a01b039081166000818152601860205260409020549091161490565b348015610b1357600080fd5b506104596122c4565b600a546001600160a01b03163314610b4f5760405162461bcd60e51b8152600401610b469061344b565b60405180910390fd5b601255565b606060068054610b6390613590565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90613590565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bf1826122d1565b610c525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b506000908152600460205260409020546001600160a01b031690565b60148054610c7b90613590565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790613590565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b6000610d078261129f565b9050806001600160a01b0316836001600160a01b03161415610d755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b46565b336001600160a01b0382161480610d915750610d918133610a2e565b610e035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b46565b610e0d83836122de565b505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610b469061344b565b8051610e4f906015906020840190612e99565b5050565b600a546000906001600160a01b03163314610e805760405162461bcd60e51b8152600401610b469061344b565b6001600160a01b038084166000818152601860205260409020549091161415610ee25760405162461bcd60e51b8152602060048201526014602482015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b6044820152606401610b46565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610f2b600261234c565b905090565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610b469061344b565b600d55565b600a546001600160a01b03163314610f895760405162461bcd60e51b8152600401610b469061344b565b60008211610fd95760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e2030006044820152606401610b46565b4782111561101b5760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b6044820152606401610b46565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611068576040519150601f19603f3d011682016040523d82523d6000602084013e61106d565b606091505b5050905080610e0d57600080fd5b6110853382612356565b6110a15760405162461bcd60e51b8152600401610b4690613480565b610e0d838383612440565b6001600160a01b03821660009081526001602052604081206110ce90836125c1565b90505b92915050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610b469061344b565b6016805460ff19811660ff90911615179055565b600a546001600160a01b0316331461113f5760405162461bcd60e51b8152600401610b469061344b565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b600a546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b469061344b565b6040514790600090339083908381818185875af1925050503d80600081146111eb576040519150601f19603f3d011682016040523d82523d6000602084013e6111f0565b606091505b5050905080610e4f57600080fd5b610e0d83838360405180602001604052806000815250611e0c565b60006110d1826122d1565b6000806112326002846125cd565b509392505050565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610b469061344b565b61126d816125e9565b50565b600a546001600160a01b0316331461129a5760405162461bcd60e51b8152600401610b469061344b565b600e55565b60006110d1826040518060600160405280602981526020016136c060299139600291906125fc565b606060098054610b6390613590565b600a546001600160a01b031633146113005760405162461bcd60e51b8152600401610b469061344b565b600f55565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b46565b6001600160a01b03821660009081526001602052604090206110d19061234c565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610b469061344b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546000906001600160a01b031633146114325760405162461bcd60e51b8152600401610b469061344b565b61143b8261115c565b1561147e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610b46565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006114b6610f1f565b336000818152601860205260409020549192506001600160a01b03909116146115175760405162461bcd60e51b8152602060048201526013602482015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b6044820152606401610b46565b60165460ff166115695760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546115768383613502565b11156115b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610b46565b336000908152601860205260409020600101546116185760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d00000000006044820152606401610b46565b3360009081526018602052604090206001015482111561167a5760405162461bcd60e51b815260206004820152601960248201527f596f7520636c61696d20616d6f756e74206578636565646564000000000000006044820152606401610b46565b60005b828110156116ca57600061168f610f1f565b61169a906001613502565b90506011546116a7610f1f565b10156116b7576116b73382612613565b50806116c2816135c5565b91505061167d565b50336000908152601860205260409020600101546116e990839061354d565b33600090815260186020526040902060010155600b541580156117205750601154611712610f1f565b148061172057506012544210155b15610e4f5743600b555050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610b469061344b565b600c54156117a75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b43600b55565b600a546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b469061344b565b60006117e1610f1f565b6011549091506117f18383613502565b111561182a5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610b46565b60005b82811015610e0d57611848336118438385613502565b612613565b80611852816135c5565b91505061182d565b6060600061186783611305565b905080611884576040805160008082526020820190925290611232565b60008167ffffffffffffffff81111561189f5761189f61364c565b6040519080825280602002602001820160405280156118c8578160200160208202803683370190505b50905060005b82811015611232576118e085826110ac565b8282815181106118f2576118f2613636565b602090810291909101015280611907816135c5565b9150506118ce565b50919050565b606060078054610b6390613590565b600061192e610f1f565b60165490915060ff166119835760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546119908383613502565b11156119ca5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610b46565b601654610100900460ff1615611b69573482600d546119e9919061352e565b1115611a2b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b601054821115611a725760405162461bcd60e51b815260206004820152601260248201527110589bdd99481b585e081d1e0818dbdd5b9d60721b6044820152606401610b46565b611a7b3361115c565b611abc5760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610b46565b60105433600090815260176020526040902060020154611adc908461262d565b1115611b345760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e742035207768696c652077686974656c697374656044820152601960fa1b6064820152608401610b46565b33600090815260176020526040902060020154611b51908361262d565b33600090815260176020526040902060020155611ca7565b611b723361115c565b15611bf857600f54336000818152601760205260409020600201548491611b9890611305565b611ba2919061354d565b611bac9190613502565b1115611bf35760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203520746f6b656e7360501b6044820152606401610b46565b611c56565b600f5482611c0533611305565b611c0f9190613502565b1115611c565760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203520746f6b656e7360501b6044820152606401610b46565b3482600e54611c65919061352e565b1115611ca75760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b60005b82811015611cf7576000611cbc610f1f565b611cc7906001613502565b9050601154611cd4610f1f565b1015611ce457611ce43382612613565b5080611cef816135c5565b915050611caa565b50600b541580156117205750601154611712610f1f565b6001600160a01b038216331415611d675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b46565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611dfd5760405162461bcd60e51b8152600401610b469061344b565b6013805460ff19166001179055565b611e163383612356565b611e325760405162461bcd60e51b8152600401610b4690613480565b611e3e8484848461268c565b50505050565b6060611e4f826122d1565b611eb35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b46565b611ebb610f1f565b8210611f095760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b46565b60135460ff16611fa55760148054611f2090613590565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4c90613590565b8015611f995780601f10611f6e57610100808354040283529160200191611f99565b820191906000526020600020905b815481529060010190602001808311611f7c57829003601f168201915b50505050509050919050565b6000611faf6112c7565b905080611fbb846126bf565b604051602001611fcc929190613317565b604051602081830303815290604052915050919050565b600a546001600160a01b0316331461200d5760405162461bcd60e51b8152600401610b469061344b565b8051612020906019906020840190612f1d565b5060005b601954811015610e4f5761205e6019828154811061204457612044613636565b6000918252602090912001546001600160a01b0316611405565b5080612069816135c5565b915050612024565b600a546001600160a01b0316331461209b5760405162461bcd60e51b8152600401610b469061344b565b600c54156120eb5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b600b5461213a5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610b46565b601154600b5461214b9190406135e0565b600c55600b5460ff9061215e904361354d565b11156121815760115461217260014361354d565b61217d9190406135e0565b600c555b600c5461219a57600c54612196906001613502565b600c555b565b600a546001600160a01b031633146121c65760405162461bcd60e51b8152600401610b469061344b565b8051610e4f906014906020840190612e99565b600a546001600160a01b031633146122035760405162461bcd60e51b8152600401610b469061344b565b6001600160a01b0381166122685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b46565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60158054610c7b90613590565b60006110d16002836127bd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123138261129f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110d1825490565b6000612361826122d1565b6123c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b60006123cd8361129f565b9050806001600160a01b0316846001600160a01b031614806124085750836001600160a01b03166123fd84610be6565b6001600160a01b0316145b8061243857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124538261129f565b6001600160a01b0316146124bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b46565b6001600160a01b03821661251d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b46565b6125286000826122de565b6001600160a01b038316600090815260016020526040902061254a90826127d5565b506001600160a01b038216600090815260016020526040902061256d90826127e1565b5061257a600282846127ed565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110ce8383612803565b60008080806125dc8686612889565b9097909650945050505050565b8051610e4f906009906020840190612e99565b6000612609848484612926565b90505b9392505050565b610e4f82826040518060200160405280600081525061298f565b60008061263a8385613502565b9050838110156110ce5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b46565b612697848484612440565b6126a3848484846129c2565b611e3e5760405162461bcd60e51b8152600401610b46906133f9565b6060816126e35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561270d57806126f7816135c5565b91506127069050600a8361351a565b91506126e7565b60008167ffffffffffffffff8111156127285761272861364c565b6040519080825280601f01601f191660200182016040528015612752576020820181803683370190505b5090505b84156124385761276760018361354d565b9150612774600a866135e0565b61277f906030613502565b60f81b81838151811061279457612794613636565b60200101906001600160f81b031916908160001a9053506127b6600a8661351a565b9450612756565b600081815260018301602052604081205415156110ce565b60006110ce8383612a93565b60006110ce8383612b86565b600061260984846001600160a01b038516612bd5565b815460009082106128615760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b82600001828154811061287657612876613636565b9060005260206000200154905092915050565b8154600090819083106128e95760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b600084600001848154811061290057612900613636565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816129565760405162461bcd60e51b8152600401610b4691906133e6565b508461296360018361354d565b8154811061297357612973613636565b9060005260206000209060020201600101549150509392505050565b6129998383612c76565b6129a660008484846129c2565b610e0d5760405162461bcd60e51b8152600401610b46906133f9565b60006001600160a01b0384163b6129db57506001612438565b6000612a5c630a85bd0160e11b338887876040516024016129ff9493929190613365565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161368e603291396001600160a01b0388169190612d8e565b9050600081806020019051810190612a74919061322b565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612b7c576000612ab760018361354d565b8554909150600090612acb9060019061354d565b90506000866000018281548110612ae457612ae4613636565b9060005260206000200154905080876000018481548110612b0757612b07613636565b600091825260209091200155612b1e836001613502565b60008281526001890160205260409020558654879080612b4057612b40613620565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d1565b60009150506110d1565b6000818152600183016020526040812054612bcd575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d1565b5060006110d1565b600082815260018401602052604081205480612c3a57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561260c565b8285612c4760018461354d565b81548110612c5757612c57613636565b906000526020600020906002020160010181905550600091505061260c565b6001600160a01b038216612ccc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b46565b612cd5816122d1565b15612d225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b46565b6001600160a01b0382166000908152600160205260409020612d4490826127e1565b50612d51600282846127ed565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612609848460008585843b612de75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b46565b600080866001600160a01b03168587604051612e0391906132fb565b60006040518083038185875af1925050503d8060008114612e40576040519150601f19603f3d011682016040523d82523d6000602084013e612e45565b606091505b5091509150612e55828286612e60565b979650505050505050565b60608315612e6f57508161260c565b825115612e7f5782518084602001fd5b8160405162461bcd60e51b8152600401610b4691906133e6565b828054612ea590613590565b90600052602060002090601f016020900481019282612ec75760008555612f0d565b82601f10612ee057805160ff1916838001178555612f0d565b82800160010185558215612f0d579182015b82811115612f0d578251825591602001919060010190612ef2565b50612f19929150612f72565b5090565b828054828255906000526020600020908101928215612f0d579160200282015b82811115612f0d57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f3d565b5b80821115612f195760008155600101612f73565b600067ffffffffffffffff831115612fa157612fa161364c565b612fb4601f8401601f19166020016134d1565b9050828152838383011115612fc857600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ff157600080fd5b81356110ce81613662565b6000806040838503121561300f57600080fd5b823561301a81613662565b9150602083013561302a81613662565b809150509250929050565b60008060006060848603121561304a57600080fd5b833561305581613662565b9250602084013561306581613662565b929592945050506040919091013590565b6000806000806080858703121561308c57600080fd5b843561309781613662565b935060208501356130a781613662565b925060408501359150606085013567ffffffffffffffff8111156130ca57600080fd5b8501601f810187136130db57600080fd5b6130ea87823560208401612f87565b91505092959194509250565b6000806040838503121561310957600080fd5b823561311481613662565b91506020830135801515811461302a57600080fd5b6000806040838503121561313c57600080fd5b823561314781613662565b946020939093013593505050565b6000602080838503121561316857600080fd5b823567ffffffffffffffff8082111561318057600080fd5b818501915085601f83011261319457600080fd5b8135818111156131a6576131a661364c565b8060051b91506131b78483016134d1565b8181528481019084860184860187018a10156131d257600080fd5b600095505b8386101561320157803594506131ec85613662565b848352600195909501949186019186016131d7565b5098975050505050505050565b60006020828403121561322057600080fd5b81356110ce81613677565b60006020828403121561323d57600080fd5b81516110ce81613677565b60006020828403121561325a57600080fd5b813567ffffffffffffffff81111561327157600080fd5b8201601f8101841361328257600080fd5b61243884823560208401612f87565b6000602082840312156132a357600080fd5b5035919050565b600080604083850312156132bd57600080fd5b82359150602083013561302a81613662565b600081518084526132e7816020860160208601613564565b601f01601f19169290920160200192915050565b6000825161330d818460208701613564565b9190910192915050565b60008351613329818460208801613564565b602f60f81b9083019081528351613347816001840160208801613564565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613398908301846132cf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133da578351835292840192918401916001016133be565b50909695505050505050565b6020815260006110ce60208301846132cf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134fa576134fa61364c565b604052919050565b60008219821115613515576135156135f4565b500190565b6000826135295761352961360a565b500490565b6000816000190483118215151615613548576135486135f4565b500290565b60008282101561355f5761355f6135f4565b500390565b60005b8381101561357f578181015183820152602001613567565b83811115611e3e5750506000910152565b600181811c908216806135a457607f821691505b6020821081141561190f57634e487b7160e01b600052602260045260246000fd5b60006000198214156135d9576135d96135f4565b5060010190565b6000826135ef576135ef61360a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126d57600080fd5b6001600160e01b03198116811461126d57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212208663d18de0df363e867c32d67cb92ecd45e47130620b6696b4bcedcaf6f0e16d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000a4c61636564616d656f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c444d4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d62796b37414b725878614b416b4b756939583362704351586e7375354c33504a796b5232516a7571655965760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f697066732e696f2f697066732f62616679626569627a756d717332326874726663646e6e63767672723237666a6861356e6f68336c787a796533377a32326e6769776b627533746d2f6d657461646174612e6a736f6e0000
Deployed Bytecode
0x60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a8b578063f2fde38b14610aab578063f571d67c14610acb578063ff1b655614610b0757600080fd5b8063e36d6498146109fd578063e985e9c514610a13578063e986655014610a5c578063eb8d244414610a7157600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cb774d47146109b1578063cd7d508f146109c7578063dc53fd92146109e757600080fd5b8063a22cb4651461093c578063a475b5dd1461095c578063b88d4fde1461097157600080fd5b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b146108b057806395d89b41146108ce5780639b19251a146108e3578063a0712d681461092957600080fd5b80637c928fe91461082e5780637d17fcbe1461084e578063819b25ba146108635780638462151c1461088357600080fd5b806370a08231116101b657806370a082311461076e578063715018a61461078e578063738c69a6146107a35780637b9417c81461080e57600080fd5b80636352211e146107195780636c0360eb146107395780637084b2b71461074e57600080fd5b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e57806351830227146106a957806355f804b3146106c357806358941a4d146106e35780635d82cf6e146106f957600080fd5b80633ccfd60b1461063457806342842e0e146106495780634f558e79146106695780634f6ccce71461068957600080fd5b806334918dfd1161029b57806334918dfd146105d45780633502a716146105e95780633719e3b0146105ff5780633af32abf1461061457600080fd5b80631d97f38e1461057457806323b872dd146105945780632f745c59146105b457600080fd5b8063095ea7b31161032e5780631496783711610308578063149678371461050957806318160ddd1461052957806318e20a381461053e5780631970d1fb1461055457600080fd5b8063095ea7b3146104b35780630ba133c5146104d357806310969523146104e957600080fd5b806304737a011161036a57806304737a011461042557806306fdde0314610444578063081812fc14610466578063081c8c441461049e57600080fd5b806204348e14610390578063018a2c37146103b957806301ffc9a7146103db575b600080fd5b34801561039c57600080fd5b506103a6600d5481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004613291565b610b1c565b005b3480156103e757600080fd5b506104156103f636600461320e565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020016103b0565b34801561043157600080fd5b5060165461041590610100900460ff1681565b34801561045057600080fd5b50610459610b54565b6040516103b091906133e6565b34801561047257600080fd5b50610486610481366004613291565b610be6565b6040516001600160a01b0390911681526020016103b0565b3480156104aa57600080fd5b50610459610c6e565b3480156104bf57600080fd5b506103d96104ce366004613129565b610cfc565b3480156104df57600080fd5b506103a6600f5481565b3480156104f557600080fd5b506103d9610504366004613248565b610e12565b34801561051557600080fd5b50610415610524366004613129565b610e53565b34801561053557600080fd5b506103a6610f1f565b34801561054a57600080fd5b506103a660125481565b34801561056057600080fd5b506103d961056f366004613291565b610f30565b34801561058057600080fd5b506103d961058f3660046132aa565b610f5f565b3480156105a057600080fd5b506103d96105af366004613035565b61107b565b3480156105c057600080fd5b506103a66105cf366004613129565b6110ac565b3480156105e057600080fd5b506103d96110d7565b3480156105f557600080fd5b506103a660115481565b34801561060b57600080fd5b506103d9611115565b34801561062057600080fd5b5061041561062f366004612fdf565b61115c565b34801561064057600080fd5b506103d961117d565b34801561065557600080fd5b506103d9610664366004613035565b6111fe565b34801561067557600080fd5b50610415610684366004613291565b611219565b34801561069557600080fd5b506103a66106a4366004613291565b611224565b3480156106b557600080fd5b506013546104159060ff1681565b3480156106cf57600080fd5b506103d96106de366004613248565b61123a565b3480156106ef57600080fd5b506103a660105481565b34801561070557600080fd5b506103d9610714366004613291565b611270565b34801561072557600080fd5b50610486610734366004613291565b61129f565b34801561074557600080fd5b506104596112c7565b34801561075a57600080fd5b506103d9610769366004613291565b6112d6565b34801561077a57600080fd5b506103a6610789366004612fdf565b611305565b34801561079a57600080fd5b506103d9611391565b3480156107af57600080fd5b506107e96107be366004612fdf565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b0390941684526020840192909252908201526060016103b0565b34801561081a57600080fd5b50610415610829366004612fdf565b611405565b34801561083a57600080fd5b506103d9610849366004613291565b6114ac565b34801561085a57600080fd5b506103d961172d565b34801561086f57600080fd5b506103d961087e366004613291565b6117ad565b34801561088f57600080fd5b506108a361089e366004612fdf565b61185a565b6040516103b091906133a2565b3480156108bc57600080fd5b50600a546001600160a01b0316610486565b3480156108da57600080fd5b50610459611915565b3480156108ef57600080fd5b506107e96108fe366004612fdf565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6103d9610937366004613291565b611924565b34801561094857600080fd5b506103d96109573660046130f6565b611d0e565b34801561096857600080fd5b506103d9611dd3565b34801561097d57600080fd5b506103d961098c366004613076565b611e0c565b34801561099d57600080fd5b506104596109ac366004613291565b611e44565b3480156109bd57600080fd5b506103a6600c5481565b3480156109d357600080fd5b506103d96109e2366004613155565b611fe3565b3480156109f357600080fd5b506103a6600e5481565b348015610a0957600080fd5b506103a6600b5481565b348015610a1f57600080fd5b50610415610a2e366004612ffc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506103d9612071565b348015610a7d57600080fd5b506016546104159060ff1681565b348015610a9757600080fd5b506103d9610aa6366004613248565b61219c565b348015610ab757600080fd5b506103d9610ac6366004612fdf565b6121d9565b348015610ad757600080fd5b50610415610ae6366004612fdf565b6001600160a01b039081166000818152601860205260409020549091161490565b348015610b1357600080fd5b506104596122c4565b600a546001600160a01b03163314610b4f5760405162461bcd60e51b8152600401610b469061344b565b60405180910390fd5b601255565b606060068054610b6390613590565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90613590565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bf1826122d1565b610c525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b506000908152600460205260409020546001600160a01b031690565b60148054610c7b90613590565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790613590565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b6000610d078261129f565b9050806001600160a01b0316836001600160a01b03161415610d755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b46565b336001600160a01b0382161480610d915750610d918133610a2e565b610e035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b46565b610e0d83836122de565b505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610b469061344b565b8051610e4f906015906020840190612e99565b5050565b600a546000906001600160a01b03163314610e805760405162461bcd60e51b8152600401610b469061344b565b6001600160a01b038084166000818152601860205260409020549091161415610ee25760405162461bcd60e51b8152602060048201526014602482015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b6044820152606401610b46565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610f2b600261234c565b905090565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610b469061344b565b600d55565b600a546001600160a01b03163314610f895760405162461bcd60e51b8152600401610b469061344b565b60008211610fd95760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e2030006044820152606401610b46565b4782111561101b5760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b6044820152606401610b46565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611068576040519150601f19603f3d011682016040523d82523d6000602084013e61106d565b606091505b5050905080610e0d57600080fd5b6110853382612356565b6110a15760405162461bcd60e51b8152600401610b4690613480565b610e0d838383612440565b6001600160a01b03821660009081526001602052604081206110ce90836125c1565b90505b92915050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610b469061344b565b6016805460ff19811660ff90911615179055565b600a546001600160a01b0316331461113f5760405162461bcd60e51b8152600401610b469061344b565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b600a546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b469061344b565b6040514790600090339083908381818185875af1925050503d80600081146111eb576040519150601f19603f3d011682016040523d82523d6000602084013e6111f0565b606091505b5050905080610e4f57600080fd5b610e0d83838360405180602001604052806000815250611e0c565b60006110d1826122d1565b6000806112326002846125cd565b509392505050565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610b469061344b565b61126d816125e9565b50565b600a546001600160a01b0316331461129a5760405162461bcd60e51b8152600401610b469061344b565b600e55565b60006110d1826040518060600160405280602981526020016136c060299139600291906125fc565b606060098054610b6390613590565b600a546001600160a01b031633146113005760405162461bcd60e51b8152600401610b469061344b565b600f55565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b46565b6001600160a01b03821660009081526001602052604090206110d19061234c565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610b469061344b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546000906001600160a01b031633146114325760405162461bcd60e51b8152600401610b469061344b565b61143b8261115c565b1561147e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610b46565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006114b6610f1f565b336000818152601860205260409020549192506001600160a01b03909116146115175760405162461bcd60e51b8152602060048201526013602482015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b6044820152606401610b46565b60165460ff166115695760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546115768383613502565b11156115b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610b46565b336000908152601860205260409020600101546116185760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d00000000006044820152606401610b46565b3360009081526018602052604090206001015482111561167a5760405162461bcd60e51b815260206004820152601960248201527f596f7520636c61696d20616d6f756e74206578636565646564000000000000006044820152606401610b46565b60005b828110156116ca57600061168f610f1f565b61169a906001613502565b90506011546116a7610f1f565b10156116b7576116b73382612613565b50806116c2816135c5565b91505061167d565b50336000908152601860205260409020600101546116e990839061354d565b33600090815260186020526040902060010155600b541580156117205750601154611712610f1f565b148061172057506012544210155b15610e4f5743600b555050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610b469061344b565b600c54156117a75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b43600b55565b600a546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b469061344b565b60006117e1610f1f565b6011549091506117f18383613502565b111561182a5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610b46565b60005b82811015610e0d57611848336118438385613502565b612613565b80611852816135c5565b91505061182d565b6060600061186783611305565b905080611884576040805160008082526020820190925290611232565b60008167ffffffffffffffff81111561189f5761189f61364c565b6040519080825280602002602001820160405280156118c8578160200160208202803683370190505b50905060005b82811015611232576118e085826110ac565b8282815181106118f2576118f2613636565b602090810291909101015280611907816135c5565b9150506118ce565b50919050565b606060078054610b6390613590565b600061192e610f1f565b60165490915060ff166119835760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546119908383613502565b11156119ca5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610b46565b601654610100900460ff1615611b69573482600d546119e9919061352e565b1115611a2b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b601054821115611a725760405162461bcd60e51b815260206004820152601260248201527110589bdd99481b585e081d1e0818dbdd5b9d60721b6044820152606401610b46565b611a7b3361115c565b611abc5760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610b46565b60105433600090815260176020526040902060020154611adc908461262d565b1115611b345760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e742035207768696c652077686974656c697374656044820152601960fa1b6064820152608401610b46565b33600090815260176020526040902060020154611b51908361262d565b33600090815260176020526040902060020155611ca7565b611b723361115c565b15611bf857600f54336000818152601760205260409020600201548491611b9890611305565b611ba2919061354d565b611bac9190613502565b1115611bf35760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203520746f6b656e7360501b6044820152606401610b46565b611c56565b600f5482611c0533611305565b611c0f9190613502565b1115611c565760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203520746f6b656e7360501b6044820152606401610b46565b3482600e54611c65919061352e565b1115611ca75760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b60005b82811015611cf7576000611cbc610f1f565b611cc7906001613502565b9050601154611cd4610f1f565b1015611ce457611ce43382612613565b5080611cef816135c5565b915050611caa565b50600b541580156117205750601154611712610f1f565b6001600160a01b038216331415611d675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b46565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611dfd5760405162461bcd60e51b8152600401610b469061344b565b6013805460ff19166001179055565b611e163383612356565b611e325760405162461bcd60e51b8152600401610b4690613480565b611e3e8484848461268c565b50505050565b6060611e4f826122d1565b611eb35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b46565b611ebb610f1f565b8210611f095760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b46565b60135460ff16611fa55760148054611f2090613590565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4c90613590565b8015611f995780601f10611f6e57610100808354040283529160200191611f99565b820191906000526020600020905b815481529060010190602001808311611f7c57829003601f168201915b50505050509050919050565b6000611faf6112c7565b905080611fbb846126bf565b604051602001611fcc929190613317565b604051602081830303815290604052915050919050565b600a546001600160a01b0316331461200d5760405162461bcd60e51b8152600401610b469061344b565b8051612020906019906020840190612f1d565b5060005b601954811015610e4f5761205e6019828154811061204457612044613636565b6000918252602090912001546001600160a01b0316611405565b5080612069816135c5565b915050612024565b600a546001600160a01b0316331461209b5760405162461bcd60e51b8152600401610b469061344b565b600c54156120eb5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b600b5461213a5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610b46565b601154600b5461214b9190406135e0565b600c55600b5460ff9061215e904361354d565b11156121815760115461217260014361354d565b61217d9190406135e0565b600c555b600c5461219a57600c54612196906001613502565b600c555b565b600a546001600160a01b031633146121c65760405162461bcd60e51b8152600401610b469061344b565b8051610e4f906014906020840190612e99565b600a546001600160a01b031633146122035760405162461bcd60e51b8152600401610b469061344b565b6001600160a01b0381166122685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b46565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60158054610c7b90613590565b60006110d16002836127bd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123138261129f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110d1825490565b6000612361826122d1565b6123c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b60006123cd8361129f565b9050806001600160a01b0316846001600160a01b031614806124085750836001600160a01b03166123fd84610be6565b6001600160a01b0316145b8061243857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124538261129f565b6001600160a01b0316146124bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b46565b6001600160a01b03821661251d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b46565b6125286000826122de565b6001600160a01b038316600090815260016020526040902061254a90826127d5565b506001600160a01b038216600090815260016020526040902061256d90826127e1565b5061257a600282846127ed565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110ce8383612803565b60008080806125dc8686612889565b9097909650945050505050565b8051610e4f906009906020840190612e99565b6000612609848484612926565b90505b9392505050565b610e4f82826040518060200160405280600081525061298f565b60008061263a8385613502565b9050838110156110ce5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b46565b612697848484612440565b6126a3848484846129c2565b611e3e5760405162461bcd60e51b8152600401610b46906133f9565b6060816126e35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561270d57806126f7816135c5565b91506127069050600a8361351a565b91506126e7565b60008167ffffffffffffffff8111156127285761272861364c565b6040519080825280601f01601f191660200182016040528015612752576020820181803683370190505b5090505b84156124385761276760018361354d565b9150612774600a866135e0565b61277f906030613502565b60f81b81838151811061279457612794613636565b60200101906001600160f81b031916908160001a9053506127b6600a8661351a565b9450612756565b600081815260018301602052604081205415156110ce565b60006110ce8383612a93565b60006110ce8383612b86565b600061260984846001600160a01b038516612bd5565b815460009082106128615760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b82600001828154811061287657612876613636565b9060005260206000200154905092915050565b8154600090819083106128e95760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b600084600001848154811061290057612900613636565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816129565760405162461bcd60e51b8152600401610b4691906133e6565b508461296360018361354d565b8154811061297357612973613636565b9060005260206000209060020201600101549150509392505050565b6129998383612c76565b6129a660008484846129c2565b610e0d5760405162461bcd60e51b8152600401610b46906133f9565b60006001600160a01b0384163b6129db57506001612438565b6000612a5c630a85bd0160e11b338887876040516024016129ff9493929190613365565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161368e603291396001600160a01b0388169190612d8e565b9050600081806020019051810190612a74919061322b565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612b7c576000612ab760018361354d565b8554909150600090612acb9060019061354d565b90506000866000018281548110612ae457612ae4613636565b9060005260206000200154905080876000018481548110612b0757612b07613636565b600091825260209091200155612b1e836001613502565b60008281526001890160205260409020558654879080612b4057612b40613620565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d1565b60009150506110d1565b6000818152600183016020526040812054612bcd575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d1565b5060006110d1565b600082815260018401602052604081205480612c3a57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561260c565b8285612c4760018461354d565b81548110612c5757612c57613636565b906000526020600020906002020160010181905550600091505061260c565b6001600160a01b038216612ccc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b46565b612cd5816122d1565b15612d225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b46565b6001600160a01b0382166000908152600160205260409020612d4490826127e1565b50612d51600282846127ed565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612609848460008585843b612de75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b46565b600080866001600160a01b03168587604051612e0391906132fb565b60006040518083038185875af1925050503d8060008114612e40576040519150601f19603f3d011682016040523d82523d6000602084013e612e45565b606091505b5091509150612e55828286612e60565b979650505050505050565b60608315612e6f57508161260c565b825115612e7f5782518084602001fd5b8160405162461bcd60e51b8152600401610b4691906133e6565b828054612ea590613590565b90600052602060002090601f016020900481019282612ec75760008555612f0d565b82601f10612ee057805160ff1916838001178555612f0d565b82800160010185558215612f0d579182015b82811115612f0d578251825591602001919060010190612ef2565b50612f19929150612f72565b5090565b828054828255906000526020600020908101928215612f0d579160200282015b82811115612f0d57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f3d565b5b80821115612f195760008155600101612f73565b600067ffffffffffffffff831115612fa157612fa161364c565b612fb4601f8401601f19166020016134d1565b9050828152838383011115612fc857600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ff157600080fd5b81356110ce81613662565b6000806040838503121561300f57600080fd5b823561301a81613662565b9150602083013561302a81613662565b809150509250929050565b60008060006060848603121561304a57600080fd5b833561305581613662565b9250602084013561306581613662565b929592945050506040919091013590565b6000806000806080858703121561308c57600080fd5b843561309781613662565b935060208501356130a781613662565b925060408501359150606085013567ffffffffffffffff8111156130ca57600080fd5b8501601f810187136130db57600080fd5b6130ea87823560208401612f87565b91505092959194509250565b6000806040838503121561310957600080fd5b823561311481613662565b91506020830135801515811461302a57600080fd5b6000806040838503121561313c57600080fd5b823561314781613662565b946020939093013593505050565b6000602080838503121561316857600080fd5b823567ffffffffffffffff8082111561318057600080fd5b818501915085601f83011261319457600080fd5b8135818111156131a6576131a661364c565b8060051b91506131b78483016134d1565b8181528481019084860184860187018a10156131d257600080fd5b600095505b8386101561320157803594506131ec85613662565b848352600195909501949186019186016131d7565b5098975050505050505050565b60006020828403121561322057600080fd5b81356110ce81613677565b60006020828403121561323d57600080fd5b81516110ce81613677565b60006020828403121561325a57600080fd5b813567ffffffffffffffff81111561327157600080fd5b8201601f8101841361328257600080fd5b61243884823560208401612f87565b6000602082840312156132a357600080fd5b5035919050565b600080604083850312156132bd57600080fd5b82359150602083013561302a81613662565b600081518084526132e7816020860160208601613564565b601f01601f19169290920160200192915050565b6000825161330d818460208701613564565b9190910192915050565b60008351613329818460208801613564565b602f60f81b9083019081528351613347816001840160208801613564565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613398908301846132cf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133da578351835292840192918401916001016133be565b50909695505050505050565b6020815260006110ce60208301846132cf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134fa576134fa61364c565b604052919050565b60008219821115613515576135156135f4565b500190565b6000826135295761352961360a565b500490565b6000816000190483118215151615613548576135486135f4565b500290565b60008282101561355f5761355f6135f4565b500390565b60005b8381101561357f578181015183820152602001613567565b83811115611e3e5750506000910152565b600181811c908216806135a457607f821691505b6020821081141561190f57634e487b7160e01b600052602260045260246000fd5b60006000198214156135d9576135d96135f4565b5060010190565b6000826135ef576135ef61360a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126d57600080fd5b6001600160e01b03198116811461126d57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212208663d18de0df363e867c32d67cb92ecd45e47130620b6696b4bcedcaf6f0e16d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000a4c61636564616d656f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c444d4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d62796b37414b725878614b416b4b756939583362704351586e7375354c33504a796b5232516a7571655965760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f697066732e696f2f697066732f62616679626569627a756d717332326874726663646e6e63767672723237666a6861356e6f68336c787a796533377a32326e6769776b627533746d2f6d657461646174612e6a736f6e0000
-----Decoded View---------------
Arg [0] : _name (string): Lacedameon
Arg [1] : _symbol (string): LDMN
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/Qmbyk7AKrXxaKAkKui9X3bpCQXnsu5L3PJykR2QjuqeYev
Arg [3] : _initNotRevealedUri (string): https://ipfs.io/ipfs/bafybeibzumqs22htrfcdnncvvrr27fjha5noh3lxzye37z22ngiwkbu3tm/metadata.json
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4c61636564616d656f6e00000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4c444d4e00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 68747470733a2f2f697066732e696f2f697066732f516d62796b37414b725878
Arg [10] : 614b416b4b756939583362704351586e7375354c33504a796b5232516a757165
Arg [11] : 5965760000000000000000000000000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000005e
Arg [13] : 68747470733a2f2f697066732e696f2f697066732f62616679626569627a756d
Arg [14] : 717332326874726663646e6e63767672723237666a6861356e6f68336c787a79
Arg [15] : 6533377a32326e6769776b627533746d2f6d657461646174612e6a736f6e0000
Deployed Bytecode Sourcemap
70159:10705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70347:45;;;;;;;;;;;;;;;;;;;23964:25:1;;;23952:2;23937:18;70347:45:0;;;;;;;;73082:127;;;;;;;;;;-1:-1:-1;73082:127:0;;;;;:::i;:::-;;:::i;:::-;;10295:200;;;;;;;;;;-1:-1:-1;10295:200:0;;;;;:::i;:::-;-1:-1:-1;;;;;;10454:33:0;10425:4;10454:33;;;;;;;;;;;;;;10295:200;;;;8961:14:1;;8954:22;8936:41;;8924:2;8909:18;10295:200:0;8796:187:1;70768:38:0;;;;;;;;;;-1:-1:-1;70768:38:0;;;;;;;;;;;53618:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56626:308::-;;;;;;;;;;-1:-1:-1;56626:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7272:32:1;;;7254:51;;7242:2;7227:18;56626:308:0;7108:203:1;70646:33:0;;;;;;;;;;;;;:::i;56125:435::-;;;;;;;;;;-1:-1:-1;56125:435:0;;;;;:::i;:::-;;:::i;70449:28::-;;;;;;;;;;;;;;;;73278:152;;;;;;;;;;-1:-1:-1;73278:152:0;;;;;:::i;:::-;;:::i;80316:370::-;;;;;;;;;;-1:-1:-1;80316:370:0;;;;;:::i;:::-;;:::i;55553:211::-;;;;;;;;;;;;;:::i;70569:31::-;;;;;;;;;;;;;;;;72237:108;;;;;;;;;;-1:-1:-1;72237:108:0;;;;;:::i;:::-;;:::i;79542:335::-;;;;;;;;;;-1:-1:-1;79542:335:0;;;;;:::i;:::-;;:::i;57685:376::-;;;;;;;;;;-1:-1:-1;57685:376:0;;;;;:::i;:::-;;:::i;55265:212::-;;;;;;;;;;-1:-1:-1;55265:212:0;;;;;:::i;:::-;;:::i;74407:89::-;;;;;;;;;;;;;:::i;70528:34::-;;;;;;;;;;;;;;;;74504:110;;;;;;;;;;;;;:::i;80144:164::-;;;;;;;;;;-1:-1:-1;80144:164:0;;;;;:::i;:::-;;:::i;79347:187::-;;;;;;;;;;;;;:::i;58132:185::-;;;;;;;;;;-1:-1:-1;58132:185:0;;;;;:::i;:::-;;:::i;72073:104::-;;;;;;;;;;-1:-1:-1;72073:104:0;;;;;:::i;:::-;;:::i;55841:222::-;;;;;;;;;;-1:-1:-1;55841:222:0;;;;;:::i;:::-;;:::i;70609:28::-;;;;;;;;;;-1:-1:-1;70609:28:0;;;;;;;;73438:101;;;;;;;;;;-1:-1:-1;73438:101:0;;;;;:::i;:::-;;:::i;70484:37::-;;;;;;;;;;;;;;;;72408:106;;;;;;;;;;-1:-1:-1;72408:106:0;;;;;:::i;:::-;;:::i;53262:289::-;;;;;;;;;;-1:-1:-1;53262:289:0;;;;;:::i;:::-;;:::i;55084:97::-;;;;;;;;;;;;;:::i;72584:100::-;;;;;;;;;;-1:-1:-1;72584:100:0;;;;;:::i;:::-;;:::i;52892:308::-;;;;;;;;;;-1:-1:-1;52892:308:0;;;;;:::i;:::-;;:::i;69417:148::-;;;;;;;;;;;;;:::i;70982:47::-;;;;;;;;;;-1:-1:-1;70982:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70982:47:0;;;;;;;;;;;-1:-1:-1;;;;;8029:32:1;;;8011:51;;8093:2;8078:18;;8071:34;;;;8121:18;;;8114:34;7999:2;7984:18;70982:47:0;7809:345:1;79885:251:0;;;;;;;;;;-1:-1:-1;79885:251:0;;;;;:::i;:::-;;:::i;76673:1335::-;;;;;;;;;;-1:-1:-1;76673:1335:0;;;;;:::i;:::-;;:::i;79153:186::-;;;;;;;;;;;;;:::i;72737:266::-;;;;;;;;;;-1:-1:-1;72737:266:0;;;;;:::i;:::-;;:::i;71492:510::-;;;;;;;;;;-1:-1:-1;71492:510:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68766:87::-;;;;;;;;;;-1:-1:-1;68839:6:0;;-1:-1:-1;;;;;68839:6:0;68766:87;;53787:104;;;;;;;;;;;;;:::i;70929:46::-;;;;;;;;;;-1:-1:-1;70929:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70929:46:0;;;;;;;74661:2004;;;;;;:::i;:::-;;:::i;57006:327::-;;;;;;;;;;-1:-1:-1;57006:327:0;;;;;:::i;:::-;;:::i;73699:69::-;;;;;;;;;;;;;:::i;58388:365::-;;;;;;;;;;-1:-1:-1;58388:365:0;;;;;:::i;:::-;;:::i;73776:552::-;;;;;;;;;;-1:-1:-1;73776:552:0;;;;;:::i;:::-;;:::i;70312:28::-;;;;;;;;;;;;;;;;78782:234;;;;;;;;;;-1:-1:-1;78782:234:0;;;;;:::i;:::-;;:::i;70399:43::-;;;;;;;;;;;;;;;;70272:33;;;;;;;;;;;;;;;;57404:214;;;;;;;;;;-1:-1:-1;57404:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;57575:25:0;;;57546:4;57575:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57404:214;78084:690;;;;;;;;;;;;;:::i;70729:32::-;;;;;;;;;;-1:-1:-1;70729:32:0;;;;;;;;73547:126;;;;;;;;;;-1:-1:-1;73547:126:0;;;;;:::i;:::-;;:::i;69720:281::-;;;;;;;;;;-1:-1:-1;69720:281:0;;;;;:::i;:::-;;:::i;80694:167::-;;;;;;;;;;-1:-1:-1;80694:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;80824:29:0;;;80780:19;80824:16;;;:10;:16;;;;;:21;;;;:29;;80694:167;70688:34;;;;;;;;;;;;;:::i;73082:127::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;;;;;;;;;73166:16:::1;:35:::0;73082:127::o;53618:100::-;53672:13;53705:5;53698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53618:100;:::o;56626:308::-;56747:7;56794:16;56802:7;56794;:16::i;:::-;56772:110;;;;-1:-1:-1;;;56772:110:0;;18451:2:1;56772:110:0;;;18433:21:1;18490:2;18470:18;;;18463:30;18529:34;18509:18;;;18502:62;-1:-1:-1;;;18580:18:1;;;18573:42;18632:19;;56772:110:0;18249:408:1;56772:110:0;-1:-1:-1;56902:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;56902:24:0;;56626:308::o;70646:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56125:435::-;56206:13;56222:23;56237:7;56222:14;:23::i;:::-;56206:39;;56270:5;-1:-1:-1;;;;;56264:11:0;:2;-1:-1:-1;;;;;56264:11:0;;;56256:57;;;;-1:-1:-1;;;56256:57:0;;21094:2:1;56256:57:0;;;21076:21:1;21133:2;21113:18;;;21106:30;21172:34;21152:18;;;21145:62;-1:-1:-1;;;21223:18:1;;;21216:31;21264:19;;56256:57:0;20892:397:1;56256:57:0;735:10;-1:-1:-1;;;;;56348:21:0;;;;:86;;-1:-1:-1;56390:44:0;56414:5;735:10;57404:214;:::i;56390:44::-;56326:192;;;;-1:-1:-1;;;56326:192:0;;15809:2:1;56326:192:0;;;15791:21:1;15848:2;15828:18;;;15821:30;15887:34;15867:18;;;15860:62;15958:26;15938:18;;;15931:54;16002:19;;56326:192:0;15607:420:1;56326:192:0;56531:21;56540:2;56544:7;56531:8;:21::i;:::-;56195:365;56125:435;;:::o;73278:152::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73389:33;;::::1;::::0;:15:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;73278:152:::0;:::o;80316:370::-;68839:6;;80436:12;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;80824:29:0;;;80780:19;80824:16;;;:10;:16;;;;;:21;;;;:29;80474:21:::1;80466:54;;;::::0;-1:-1:-1;;;80466:54:0;;20745:2:1;80466:54:0::1;::::0;::::1;20727:21:1::0;20784:2;20764:18;;;20757:30;-1:-1:-1;;;20803:18:1;;;20796:50;20863:18;;80466:54:0::1;20543:344:1::0;80466:54:0::1;-1:-1:-1::0;;;;;;80531:16:0;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:28;;-1:-1:-1;;;;;;80531:28:0::1;::::0;;::::1;::::0;;;80570;;::::1;:42:::0;;;;80623:26:::1;::::0;;::::1;:30:::0;80531:28;80316:370::o;55553:211::-;55614:7;55735:21;:12;:19;:21::i;:::-;55728:28;;55553:211;:::o;72237:108::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72312:16:::1;:25:::0;72237:108::o;79542:335::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79676:1:::1;79666:7;:11;79658:55;;;::::0;-1:-1:-1;;;79658:55:0;;15091:2:1;79658:55:0::1;::::0;::::1;15073:21:1::0;15130:2;15110:18;;;15103:30;15169:33;15149:18;;;15142:61;15220:18;;79658:55:0::1;14889:355:1::0;79658:55:0::1;79743:21;79732:7;:32;;79724:60;;;::::0;-1:-1:-1;;;79724:60:0;;16234:2:1;79724:60:0::1;::::0;::::1;16216:21:1::0;16273:2;16253:18;;;16246:30;-1:-1:-1;;;16292:18:1;;;16285:45;16347:18;;79724:60:0::1;16032:339:1::0;79724:60:0::1;79796:12;79814:3;-1:-1:-1::0;;;;;79814:8:0::1;79830:7;79814:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79795:47;;;79861:7;79853:16;;;::::0;::::1;57685:376:::0;57894:41;735:10;57927:7;57894:18;:41::i;:::-;57872:140;;;;-1:-1:-1;;;57872:140:0;;;;;;;:::i;:::-;58025:28;58035:4;58041:2;58045:7;58025:9;:28::i;55265:212::-;-1:-1:-1;;;;;55439:20:0;;55407:7;55439:20;;;:13;:20;;;;;:30;;55463:5;55439:23;:30::i;:::-;55432:37;;55265:212;;;;;:::o;74407:89::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;74476:12:::1;::::0;;-1:-1:-1;;74460:28:0;::::1;74476:12;::::0;;::::1;74475:13;74460:28;::::0;;74407:89::o;74504:110::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;74587:19:::1;::::0;;-1:-1:-1;;74564:42:0;::::1;74587:19;::::0;;;::::1;;;74586:20;74564:42:::0;;::::1;;::::0;;74504:110::o;80144:164::-;-1:-1:-1;;;;;80272:28:0;;;80229:18;80272:15;;;:9;:15;;;;;:20;;;;:28;;80144:164::o;79347:187::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79464:35:::1;::::0;79413:21:::1;::::0;79395:15:::1;::::0;79464:10:::1;::::0;79413:21;;79395:15;79464:35;79395:15;79464:35;79413:21;79464:10;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79445:54;;;79518:7;79510:16;;;::::0;::::1;58132:185:::0;58270:39;58287:4;58293:2;58297:7;58270:39;;;;;;;;;;;;:16;:39::i;72073:104::-;72128:4;72152:17;72160:8;72152:7;:17::i;55841:222::-;55961:7;;56008:22;:12;56024:5;56008:15;:22::i;:::-;-1:-1:-1;55986:44:0;55841:222;-1:-1:-1;;;55841:222:0:o;73438:101::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73511:20:::1;73523:7;73511:11;:20::i;:::-;73438:101:::0;:::o;72408:106::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72482:15:::1;:24:::0;72408:106::o;53262:289::-;53379:7;53424:119;53459:7;53424:119;;;;;;;;;;;;;;;;;:12;;:119;:16;:119::i;55084:97::-;55132:13;55165:8;55158:15;;;;;:::i;72584:100::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72655:9:::1;:21:::0;72584:100::o;52892:308::-;53009:7;-1:-1:-1;;;;;53056:19:0;;53034:111;;;;-1:-1:-1;;;53034:111:0;;16578:2:1;53034:111:0;;;16560:21:1;16617:2;16597:18;;;16590:30;16656:34;16636:18;;;16629:62;-1:-1:-1;;;16707:18:1;;;16700:40;16757:19;;53034:111:0;16376:406:1;53034:111:0;-1:-1:-1;;;;;53163:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;69417:148::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;69508:6:::1;::::0;69487:40:::1;::::0;69524:1:::1;::::0;-1:-1:-1;;;;;69508:6:0::1;::::0;69487:40:::1;::::0;69524:1;;69487:40:::1;69538:6;:19:::0;;-1:-1:-1;;;;;;69538:19:0::1;::::0;;69417:148::o;79885:251::-;68839:6;;79983:12;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;80022:19:::1;80036:4;80022:13;:19::i;:::-;80021:20;80013:52;;;::::0;-1:-1:-1;;;80013:52:0;;20051:2:1;80013:52:0::1;::::0;::::1;20033:21:1::0;20090:2;20070:18;;;20063:30;-1:-1:-1;;;20109:18:1;;;20102:49;20168:18;;80013:52:0::1;19849:343:1::0;80013:52:0::1;-1:-1:-1::0;;;;;;80076:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;;;;;80076:27:0::1;::::0;;::::1;::::0;;;;79885:251::o;76673:1335::-;76725:13;76741;:11;:13::i;:::-;76788:10;80780:19;80824:16;;;:10;:16;;;;;:21;76725:29;;-1:-1:-1;;;;;;80824:21:0;;;:29;76765:58;;;;-1:-1:-1;;;76765:58:0;;23672:2:1;76765:58:0;;;23654:21:1;23711:2;23691:18;;;23684:30;-1:-1:-1;;;23730:18:1;;;23723:49;23789:18;;76765:58:0;23470:343:1;76765:58:0;76842:12;;;;76834:52;;;;-1:-1:-1;;;76834:52:0;;13578:2:1;76834:52:0;;;13560:21:1;13617:2;13597:18;;;13590:30;13656:29;13636:18;;;13629:57;13703:18;;76834:52:0;13376:351:1;76834:52:0;76925:12;;76906:14;76914:6;76906:5;:14;:::i;:::-;76905:32;;76897:63;;;;-1:-1:-1;;;76897:63:0;;16989:2:1;76897:63:0;;;16971:21:1;17028:2;17008:18;;;17001:30;-1:-1:-1;;;17047:18:1;;;17040:48;17105:18;;76897:63:0;16787:342:1;76897:63:0;77004:10;77030:1;76993:22;;;:10;:22;;;;;:34;;;76971:115;;;;-1:-1:-1;;;76971:115:0;;23316:2:1;76971:115:0;;;23298:21:1;23355:2;23335:18;;;23328:30;23394:29;23374:18;;;23367:57;23441:18;;76971:115:0;23114:351:1;76971:115:0;77140:10;77129:22;;;;:10;:22;;;;;:34;;;77119:44;;;77097:119;;;;-1:-1:-1;;;77097:119:0;;11360:2:1;77097:119:0;;;11342:21:1;11399:2;11379:18;;;11372:30;11438:27;11418:18;;;11411:55;11483:18;;77097:119:0;11158:349:1;77097:119:0;77234:9;77229:216;77253:6;77249:1;:10;77229:216;;;77281:17;77301:13;:11;:13::i;:::-;:17;;77317:1;77301:17;:::i;:::-;77281:37;;77353:12;;77337:13;:11;:13::i;:::-;:28;77333:101;;;77386:32;77396:10;77408:9;77386;:32::i;:::-;-1:-1:-1;77261:3:0;;;;:::i;:::-;;;;77229:216;;;-1:-1:-1;77518:10:0;77507:22;;;;:10;:22;;;;;:34;;;:56;;77557:6;;77507:56;:::i;:::-;77468:10;77457:22;;;;:10;:22;;;;;:34;;:106;77802:18;;:23;:127;;;;;77860:12;;77843:13;:11;:13::i;:::-;:29;:85;;;;77912:16;;77893:15;:35;;77843:85;77784:217;;;77977:12;77956:18;:33;76714:1294;76673:1335;:::o;79153:186::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79233:13:::1;::::0;:18;79225:60:::1;;;::::0;-1:-1:-1;;;79225:60:0;;15451:2:1;79225:60:0::1;::::0;::::1;15433:21:1::0;15490:2;15470:18;;;15463:30;15529:31;15509:18;;;15502:59;15578:18;;79225:60:0::1;15249:353:1::0;79225:60:0::1;79319:12;79298:18;:33:::0;79153:186::o;72737:266::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72798:13:::1;72814;:11;:13::i;:::-;72864:12;::::0;72798:29;;-1:-1:-1;72846:14:0::1;72854:6:::0;72798:29;72846:14:::1;:::i;:::-;:30;;72838:51;;;::::0;-1:-1:-1;;;72838:51:0;;22980:2:1;72838:51:0::1;::::0;::::1;22962:21:1::0;23019:1;22999:18;;;22992:29;-1:-1:-1;;;23037:18:1;;;23030:38;23085:18;;72838:51:0::1;22778:331:1::0;72838:51:0::1;72905:9;72900:96;72924:6;72920:1;:10;72900:96;;;72952:32;72962:10;72974:9;72982:1:::0;72974:5;:9:::1;:::i;:::-;72952;:32::i;:::-;72932:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72900:96;;71492:510:::0;71581:16;71615:18;71636:17;71646:6;71636:9;:17::i;:::-;71615:38;-1:-1:-1;71668:15:0;71664:331;;71707:16;;;71721:1;71707:16;;;;;;;;;;;;71664:331;71756:23;71796:10;71782:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71782:25:0;;71756:51;;71827:13;71822:134;71850:10;71842:5;:18;71822:134;;;71906:34;71926:6;71934:5;71906:19;:34::i;:::-;71890:6;71897:5;71890:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;71862:7;;;;:::i;:::-;;;;71822:134;;71664:331;71604:398;71492:510;;;:::o;53787:104::-;53843:13;53876:7;53869:14;;;;;:::i;74661:2004::-;74717:13;74733;:11;:13::i;:::-;74765:12;;74717:29;;-1:-1:-1;74765:12:0;;74757:52;;;;-1:-1:-1;;;74757:52:0;;13578:2:1;74757:52:0;;;13560:21:1;13617:2;13597:18;;;13590:30;13656:29;13636:18;;;13629:57;13703:18;;74757:52:0;13376:351:1;74757:52:0;74848:12;;74829:14;74837:6;74829:5;:14;:::i;:::-;74828:32;;74820:54;;;;-1:-1:-1;;;74820:54:0;;13934:2:1;74820:54:0;;;13916:21:1;13973:1;13953:18;;;13946:29;-1:-1:-1;;;13991:18:1;;;13984:39;14040:18;;74820:54:0;13732:332:1;74820:54:0;74891:19;;;;;;;74887:1106;;;74984:9;74973:6;74954:16;;:25;;;;:::i;:::-;74953:40;;74927:119;;;;-1:-1:-1;;;74927:119:0;;20399:2:1;74927:119:0;;;20381:21:1;20438:2;20418:18;;;20411:30;-1:-1:-1;;;20457:18:1;;;20450:47;20514:18;;74927:119:0;20197:341:1;74927:119:0;75079:18;;75069:6;:28;;75061:59;;;;-1:-1:-1;;;75061:59:0;;13231:2:1;75061:59:0;;;13213:21:1;13270:2;13250:18;;;13243:30;-1:-1:-1;;;13289:18:1;;;13282:48;13347:18;;75061:59:0;13029:342:1;75061:59:0;75143:25;75157:10;75143:13;:25::i;:::-;75135:56;;;;-1:-1:-1;;;75135:56:0;;22633:2:1;75135:56:0;;;22615:21:1;22672:2;22652:18;;;22645:30;-1:-1:-1;;;22691:18:1;;;22684:48;22749:18;;75135:56:0;22431:342:1;75135:56:0;75300:18;;75242:10;75232:21;;;;:9;:21;;;;;:31;;;:43;;75268:6;75232:35;:43::i;:::-;:86;;75206:181;;;;-1:-1:-1;;;75206:181:0;;12070:2:1;75206:181:0;;;12052:21:1;12109:2;12089:18;;;12082:30;12148:34;12128:18;;;12121:62;-1:-1:-1;;;12199:18:1;;;12192:31;12240:19;;75206:181:0;11868:397:1;75206:181:0;75446:10;75436:21;;;;:9;:21;;;;;:49;;;:79;;75508:6;75436:71;:79::i;:::-;75412:10;75402:21;;;;:9;:21;;;;;:31;;:113;74887:1106;;;75552:25;75566:10;75552:13;:25::i;:::-;75548:301;;;75676:9;;75641:10;75631:21;;;;:9;:21;;;;;:31;;;75665:6;;75607:21;;:9;:21::i;:::-;:55;;;;:::i;:::-;:64;;;;:::i;:::-;75606:79;;75598:114;;;;-1:-1:-1;;;75598:114:0;;18100:2:1;75598:114:0;;;18082:21:1;18139:2;18119:18;;;18112:30;-1:-1:-1;;;18158:18:1;;;18151:52;18220:18;;75598:114:0;17898:346:1;75598:114:0;75548:301;;;75797:9;;75786:6;75762:21;75772:10;75762:9;:21::i;:::-;:30;;;;:::i;:::-;75761:45;;75753:80;;;;-1:-1:-1;;;75753:80:0;;18100:2:1;75753:80:0;;;18082:21:1;18139:2;18119:18;;;18112:30;-1:-1:-1;;;18158:18:1;;;18151:52;18220:18;;75753:80:0;17898:346:1;75753:80:0;75919:9;75908:6;75890:15;;:24;;;;:::i;:::-;75889:39;;75863:118;;;;-1:-1:-1;;;75863:118:0;;20399:2:1;75863:118:0;;;20381:21:1;20438:2;20418:18;;;20411:30;-1:-1:-1;;;20457:18:1;;;20450:47;20514:18;;75863:118:0;20197:341:1;75863:118:0;76010:9;76005:216;76029:6;76025:1;:10;76005:216;;;76057:17;76077:13;:11;:13::i;:::-;:17;;76093:1;76077:17;:::i;:::-;76057:37;;76129:12;;76113:13;:11;:13::i;:::-;:28;76109:101;;;76162:32;76172:10;76184:9;76162;:32::i;:::-;-1:-1:-1;76037:3:0;;;;:::i;:::-;;;;76005:216;;;-1:-1:-1;76459:18:0;;:23;:127;;;;;76517:12;;76500:13;:11;:13::i;57006:327::-;-1:-1:-1;;;;;57141:24:0;;735:10;57141:24;;57133:62;;;;-1:-1:-1;;;57133:62:0;;12877:2:1;57133:62:0;;;12859:21:1;12916:2;12896:18;;;12889:30;12955:27;12935:18;;;12928:55;13000:18;;57133:62:0;12675:349:1;57133:62:0;735:10;57208:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;57208:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;57208:53:0;;;;;;;;;;57277:48;;8936:41:1;;;57208:42:0;;735:10;57277:48;;8909:18:1;57277:48:0;;;;;;;57006:327;;:::o;73699:69::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73745:8:::1;:15:::0;;-1:-1:-1;;73745:15:0::1;73756:4;73745:15;::::0;;73699:69::o;58388:365::-;58577:41;735:10;58610:7;58577:18;:41::i;:::-;58555:140;;;;-1:-1:-1;;;58555:140:0;;;;;;;:::i;:::-;58706:39;58720:4;58726:2;58730:7;58739:5;58706:13;:39::i;:::-;58388:365;;;;:::o;73776:552::-;73894:13;73947:16;73955:7;73947;:16::i;:::-;73925:113;;;;-1:-1:-1;;;73925:113:0;;19635:2:1;73925:113:0;;;19617:21:1;19674:2;19654:18;;;19647:30;19713:34;19693:18;;;19686:62;-1:-1:-1;;;19764:18:1;;;19757:45;19819:19;;73925:113:0;19433:411:1;73925:113:0;74067:13;:11;:13::i;:::-;74057:7;:23;74049:67;;;;-1:-1:-1;;;74049:67:0;;9817:2:1;74049:67:0;;;9799:21:1;9856:2;9836:18;;;9829:30;9895:33;9875:18;;;9868:61;9946:18;;74049:67:0;9615:355:1;74049:67:0;74131:8;;;;74127:71;;74172:14;74165:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73776:552;;;:::o;74127:71::-;74208:18;74229:9;:7;:9::i;:::-;74208:30;;74280:4;74291:18;:7;:16;:18::i;:::-;74263:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74249:71;;;73776:552;;;:::o;78782:234::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;78860:21;;::::1;::::0;:13:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;78897:9;78892:117;78916:13;:20:::0;78912:24;::::1;78892:117;;;78958:39;78980:13;78994:1;78980:16;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;78980:16:0::1;78958:21;:39::i;:::-;-1:-1:-1::0;78938:3:0;::::1;::::0;::::1;:::i;:::-;;;;78892:117;;78084:690:::0;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;78150:13:::1;::::0;:18;78142:60:::1;;;::::0;-1:-1:-1;;;78142:60:0;;15451:2:1;78142:60:0::1;::::0;::::1;15433:21:1::0;15490:2;15470:18;;;15463:30;15529:31;15509:18;;;15502:59;15578:18;;78142:60:0::1;15249:353:1::0;78142:60:0::1;78221:18;::::0;78213:68:::1;;;::::0;-1:-1:-1;;;78213:68:0;;21496:2:1;78213:68:0::1;::::0;::::1;21478:21:1::0;;;21515:18;;;21508:30;21574:34;21554:18;;;21547:62;21626:18;;78213:68:0::1;21294:356:1::0;78213:68:0::1;78351:12;::::0;78328:18:::1;::::0;78310:53:::1;::::0;78351:12;78318:29:::1;78310:53;:::i;:::-;78294:13;:69:::0;78515:18:::1;::::0;78537:3:::1;::::0;78500:33:::1;::::0;:12:::1;:33;:::i;:::-;78499:41;78495:141;;;78612:12;::::0;78591:16:::1;78606:1;78591:12;:16;:::i;:::-;78573:51;::::0;;78581:27:::1;78573:51;:::i;:::-;78557:13;:67:::0;78495:141:::1;78687:13;::::0;78683:84:::1;;78738:13;::::0;:17:::1;::::0;78754:1:::1;78738:17;:::i;:::-;78722:13;:33:::0;78683:84:::1;78084:690::o:0;73547:126::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73633:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;69720:281::-:0;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69823:22:0;::::1;69801:110;;;::::0;-1:-1:-1;;;69801:110:0;;10596:2:1;69801:110:0::1;::::0;::::1;10578:21:1::0;10635:2;10615:18;;;10608:30;10674:34;10654:18;;;10647:62;-1:-1:-1;;;10725:18:1;;;10718:36;10771:19;;69801:110:0::1;10394:402:1::0;69801:110:0::1;69948:6;::::0;69927:38:::1;::::0;-1:-1:-1;;;;;69927:38:0;;::::1;::::0;69948:6:::1;::::0;69927:38:::1;::::0;69948:6:::1;::::0;69927:38:::1;69976:6;:17:::0;;-1:-1:-1;;;;;;69976:17:0::1;-1:-1:-1::0;;;;;69976:17:0;;;::::1;::::0;;;::::1;::::0;;69720:281::o;70688:34::-;;;;;;;:::i;60300:127::-;60365:4;60389:30;:12;60411:7;60389:21;:30::i;66732:201::-;66807:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;66807:29:0;-1:-1:-1;;;;;66807:29:0;;;;;;;;:24;;66861:23;66807:24;66861:14;:23::i;:::-;-1:-1:-1;;;;;66852:46:0;;;;;;;;;;;66732:201;;:::o;46052:155::-;46148:7;46180:19;46188:3;42426:19;;42343:110;60594:459;60723:4;60767:16;60775:7;60767;:16::i;:::-;60745:110;;;;-1:-1:-1;;;60745:110:0;;14678:2:1;60745:110:0;;;14660:21:1;14717:2;14697:18;;;14690:30;14756:34;14736:18;;;14729:62;-1:-1:-1;;;14807:18:1;;;14800:42;14859:19;;60745:110:0;14476:408:1;60745:110:0;60866:13;60882:23;60897:7;60882:14;:23::i;:::-;60866:39;;60935:5;-1:-1:-1;;;;;60924:16:0;:7;-1:-1:-1;;;;;60924:16:0;;:64;;;;60981:7;-1:-1:-1;;;;;60957:31:0;:20;60969:7;60957:11;:20::i;:::-;-1:-1:-1;;;;;60957:31:0;;60924:64;:120;;;-1:-1:-1;;;;;;57575:25:0;;;57546:4;57575:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61005:39;60916:129;60594:459;-1:-1:-1;;;;60594:459:0:o;63914:679::-;64087:4;-1:-1:-1;;;;;64060:31:0;:23;64075:7;64060:14;:23::i;:::-;-1:-1:-1;;;;;64060:31:0;;64038:122;;;;-1:-1:-1;;;64038:122:0;;19225:2:1;64038:122:0;;;19207:21:1;19264:2;19244:18;;;19237:30;19303:34;19283:18;;;19276:62;-1:-1:-1;;;19354:18:1;;;19347:39;19403:19;;64038:122:0;19023:405:1;64038:122:0;-1:-1:-1;;;;;64206:16:0;;64198:65;;;;-1:-1:-1;;;64198:65:0;;12472:2:1;64198:65:0;;;12454:21:1;12511:2;12491:18;;;12484:30;12550:34;12530:18;;;12523:62;-1:-1:-1;;;12601:18:1;;;12594:34;12645:19;;64198:65:0;12270:400:1;64198:65:0;64380:29;64397:1;64401:7;64380:8;:29::i;:::-;-1:-1:-1;;;;;64422:19:0;;;;;;:13;:19;;;;;:35;;64449:7;64422:26;:35::i;:::-;-1:-1:-1;;;;;;64468:17:0;;;;;;:13;:17;;;;;:30;;64490:7;64468:21;:30::i;:::-;-1:-1:-1;64511:29:0;:12;64528:7;64537:2;64511:16;:29::i;:::-;;64577:7;64573:2;-1:-1:-1;;;;;64558:27:0;64567:4;-1:-1:-1;;;;;64558:27:0;;;;;;;;;;;63914:679;;;:::o;37462:169::-;37560:7;37600:22;37604:3;37616:5;37600:3;:22::i;46555:268::-;46662:7;;;;46727:22;46731:3;46743:5;46727:3;:22::i;:::-;46696:53;;;;-1:-1:-1;46555:268:0;-1:-1:-1;;;;;46555:268:0:o;65254:100::-;65327:19;;;;:8;;:19;;;;;:::i;47937:292::-;48078:7;48160:44;48165:3;48185;48191:12;48160:4;:44::i;:::-;48152:53;-1:-1:-1;47937:292:0;;;;;;:::o;61396:110::-;61472:26;61482:2;61486:7;61472:26;;;;;;;;;;;;:9;:26::i;14028:179::-;14086:7;;14118:5;14122:1;14118;:5;:::i;:::-;14106:17;;14147:1;14142;:6;;14134:46;;;;-1:-1:-1;;;14134:46:0;;11714:2:1;14134:46:0;;;11696:21:1;11753:2;11733:18;;;11726:30;11792:29;11772:18;;;11765:57;11839:18;;14134:46:0;11512:351:1;59635:352:0;59792:28;59802:4;59808:2;59812:7;59792:9;:28::i;:::-;59853:48;59876:4;59882:2;59886:7;59895:5;59853:22;:48::i;:::-;59831:148;;;;-1:-1:-1;;;59831:148:0;;;;;;;:::i;48441:723::-;48497:13;48718:10;48714:53;;-1:-1:-1;;48745:10:0;;;;;;;;;;;;-1:-1:-1;;;48745:10:0;;;;;48441:723::o;48714:53::-;48792:5;48777:12;48833:78;48840:9;;48833:78;;48866:8;;;;:::i;:::-;;-1:-1:-1;48889:10:0;;-1:-1:-1;48897:2:0;48889:10;;:::i;:::-;;;48833:78;;;48921:19;48953:6;48943:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48943:17:0;;48921:39;;48971:154;48978:10;;48971:154;;49005:11;49015:1;49005:11;;:::i;:::-;;-1:-1:-1;49074:10:0;49082:2;49074:5;:10;:::i;:::-;49061:24;;:2;:24;:::i;:::-;49048:39;;49031:6;49038;49031:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49031:56:0;;;;;;;;-1:-1:-1;49102:11:0;49111:2;49102:11;;:::i;:::-;;;48971:154;;45781:183;45892:4;42218:17;;;:12;;;:17;;;;;;:22;;45921:35;42091:157;36484:160;36572:4;36601:35;36609:3;36629:5;36601:7;:35::i;36177:131::-;36244:4;36268:32;36273:3;36293:5;36268:4;:32::i;45147:219::-;45270:4;45294:64;45299:3;45319;-1:-1:-1;;;;;45333:23:0;;45294:4;:64::i;32128:273::-;32269:18;;32222:7;;32269:26;-1:-1:-1;32247:110:0;;;;-1:-1:-1;;;32247:110:0;;9414:2:1;32247:110:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492:34;9472:18;;;9465:62;-1:-1:-1;;;9543:18:1;;;9536:32;9585:19;;32247:110:0;9212:398:1;32247:110:0;32375:3;:11;;32387:5;32375:18;;;;;;;;:::i;:::-;;;;;;;;;32368:25;;32128:273;;;;:::o;42818:348::-;42968:19;;42912:7;;;;42968:27;-1:-1:-1;42946:111:0;;;;-1:-1:-1;;;42946:111:0;;17336:2:1;42946:111:0;;;17318:21:1;17375:2;17355:18;;;17348:30;17414:34;17394:18;;;17387:62;-1:-1:-1;;;17465:18:1;;;17458:32;17507:19;;42946:111:0;17134:398:1;42946:111:0;43070:22;43095:3;:12;;43108:5;43095:19;;;;;;;;:::i;:::-;;;;;;;;;;;43070:44;;43133:5;:10;;;43145:5;:12;;;43125:33;;;;;42818:348;;;;;:::o;44452:371::-;44580:7;44619:17;;;:12;;;:17;;;;;;44670:12;44655:13;44647:36;;;;-1:-1:-1;;;44647:36:0;;;;;;;;:::i;:::-;-1:-1:-1;44746:3:0;44759:12;44770:1;44759:8;:12;:::i;:::-;44746:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;44739:40;;;44452:371;;;;;:::o;61733:321::-;61863:18;61869:2;61873:7;61863:5;:18::i;:::-;61914:54;61945:1;61949:2;61953:7;61962:5;61914:22;:54::i;:::-;61892:154;;;;-1:-1:-1;;;61892:154:0;;;;;;;:::i;65919:694::-;66074:4;-1:-1:-1;;;;;66096:13:0;;19912:20;66091:60;;-1:-1:-1;66135:4:0;66128:11;;66091:60;66161:23;66187:313;-1:-1:-1;;;735:10:0;66353:4;66376:7;66402:5;66217:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;66217:205:0;;;;;;;-1:-1:-1;;;;;66217:205:0;;;;;;;;;;;66187:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66187:15:0;;;:313;:15;:313::i;:::-;66161:339;;66511:13;66538:10;66527:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;66578:26:0;-1:-1:-1;;;66578:26:0;;-1:-1:-1;;;65919:694:0;;;;;;:::o;29762:1570::-;29828:4;29967:19;;;:12;;;:19;;;;;;30003:15;;29999:1326;;30378:21;30402:14;30415:1;30402:10;:14;:::i;:::-;30451:18;;30378:38;;-1:-1:-1;30431:17:0;;30451:22;;30472:1;;30451:22;:::i;:::-;30431:42;;30718:17;30738:3;:11;;30750:9;30738:22;;;;;;;;:::i;:::-;;;;;;;;;30718:42;;30884:9;30855:3;:11;;30867:13;30855:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;30987:17;:13;31003:1;30987:17;:::i;:::-;30961:23;;;;:12;;;:23;;;;;:43;31126:17;;30961:3;;31126:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31221:3;:12;;:19;31234:5;31221:19;;;;;;;;;;;31214:26;;;31264:4;31257:11;;;;;;;;29999:1326;31308:5;31301:12;;;;;29172:414;29235:4;42218:17;;;:12;;;:17;;;;;;29252:327;;-1:-1:-1;29295:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;29478:18;;29456:19;;;:12;;;:19;;;;;;:40;;;;29511:11;;29252:327;-1:-1:-1;29562:5:0;29555:12;;39520:737;39630:4;39765:17;;;:12;;;:17;;;;;;39799:13;39795:455;;-1:-1:-1;;39897:36:0;;;;;;;;;;;;;;;;;;39879:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;40092:19;;40072:17;;;:12;;;:17;;;;;;;:39;40126:11;;39795:455;40206:5;40170:3;40183:12;40194:1;40183:8;:12;:::i;:::-;40170:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;40233:5;40226:12;;;;;62390:404;-1:-1:-1;;;;;62470:16:0;;62462:61;;;;-1:-1:-1;;;62462:61:0;;17739:2:1;62462:61:0;;;17721:21:1;;;17758:18;;;17751:30;17817:34;17797:18;;;17790:62;17869:18;;62462:61:0;17537:356:1;62462:61:0;62543:16;62551:7;62543;:16::i;:::-;62542:17;62534:58;;;;-1:-1:-1;;;62534:58:0;;11003:2:1;62534:58:0;;;10985:21:1;11042:2;11022:18;;;11015:30;11081;11061:18;;;11054:58;11129:18;;62534:58:0;10801:352:1;62534:58:0;-1:-1:-1;;;;;62663:17:0;;;;;;:13;:17;;;;;:30;;62685:7;62663:21;:30::i;:::-;-1:-1:-1;62706:29:0;:12;62723:7;62732:2;62706:16;:29::i;:::-;-1:-1:-1;62753:33:0;;62778:7;;-1:-1:-1;;;;;62753:33:0;;;62770:1;;62753:33;;62770:1;;62753:33;62390:404;;:::o;22569:229::-;22706:12;22738:52;22760:6;22768:4;22774:1;22777:12;22706;19912:20;;24109:60;;;;-1:-1:-1;;;24109:60:0;;22275:2:1;24109:60:0;;;22257:21:1;22314:2;22294:18;;;22287:30;22353:31;22333:18;;;22326:59;22402:18;;24109:60:0;22073:353:1;24109:60:0;24243:12;24257:23;24284:6;-1:-1:-1;;;;;24284:11:0;24303:5;24324:4;24284:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24242:97;;;;24357:52;24375:7;24384:10;24396:12;24357:17;:52::i;:::-;24350:59;23785:632;-1:-1:-1;;;;;;;23785:632:0:o;26708:777::-;26858:12;26887:7;26883:595;;;-1:-1:-1;26918:10:0;26911:17;;26883:595;27032:17;;:21;27028:439;;27295:10;27289:17;27356:15;27343:10;27339:2;27335:19;27328:44;27028:439;27438:12;27431:20;;-1:-1:-1;;;27431:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;677:388::-;745:6;753;806:2;794:9;785:7;781:23;777:32;774:52;;;822:1;819;812:12;774:52;861:9;848:23;880:31;905:5;880:31;:::i;:::-;930:5;-1:-1:-1;987:2:1;972:18;;959:32;1000:33;959:32;1000:33;:::i;:::-;1052:7;1042:17;;;677:388;;;;;:::o;1070:456::-;1147:6;1155;1163;1216:2;1204:9;1195:7;1191:23;1187:32;1184:52;;;1232:1;1229;1222:12;1184:52;1271:9;1258:23;1290:31;1315:5;1290:31;:::i;:::-;1340:5;-1:-1:-1;1397:2:1;1382:18;;1369:32;1410:33;1369:32;1410:33;:::i;:::-;1070:456;;1462:7;;-1:-1:-1;;;1516:2:1;1501:18;;;;1488:32;;1070:456::o;1531:794::-;1626:6;1634;1642;1650;1703:3;1691:9;1682:7;1678:23;1674:33;1671:53;;;1720:1;1717;1710:12;1671:53;1759:9;1746:23;1778:31;1803:5;1778:31;:::i;:::-;1828:5;-1:-1:-1;1885:2:1;1870:18;;1857:32;1898:33;1857:32;1898:33;:::i;:::-;1950:7;-1:-1:-1;2004:2:1;1989:18;;1976:32;;-1:-1:-1;2059:2:1;2044:18;;2031:32;2086:18;2075:30;;2072:50;;;2118:1;2115;2108:12;2072:50;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:55:1;;2223:1;2220;2213:12;2172:55;2246:73;2311:7;2306:2;2293:16;2288:2;2284;2280:11;2246:73;:::i;:::-;2236:83;;;1531:794;;;;;;;:::o;2330:416::-;2395:6;2403;2456:2;2444:9;2435:7;2431:23;2427:32;2424:52;;;2472:1;2469;2462:12;2424:52;2511:9;2498:23;2530:31;2555:5;2530:31;:::i;:::-;2580:5;-1:-1:-1;2637:2:1;2622:18;;2609:32;2679:15;;2672:23;2660:36;;2650:64;;2710:1;2707;2700:12;2751:315;2819:6;2827;2880:2;2868:9;2859:7;2855:23;2851:32;2848:52;;;2896:1;2893;2886:12;2848:52;2935:9;2922:23;2954:31;2979:5;2954:31;:::i;:::-;3004:5;3056:2;3041:18;;;;3028:32;;-1:-1:-1;;;2751:315:1:o;3071:1032::-;3155:6;3186:2;3229;3217:9;3208:7;3204:23;3200:32;3197:52;;;3245:1;3242;3235:12;3197:52;3285:9;3272:23;3314:18;3355:2;3347:6;3344:14;3341:34;;;3371:1;3368;3361:12;3341:34;3409:6;3398:9;3394:22;3384:32;;3454:7;3447:4;3443:2;3439:13;3435:27;3425:55;;3476:1;3473;3466:12;3425:55;3512:2;3499:16;3534:2;3530;3527:10;3524:36;;;3540:18;;:::i;:::-;3586:2;3583:1;3579:10;3569:20;;3609:28;3633:2;3629;3625:11;3609:28;:::i;:::-;3671:15;;;3702:12;;;;3734:11;;;3764;;;3760:20;;3757:33;-1:-1:-1;3754:53:1;;;3803:1;3800;3793:12;3754:53;3825:1;3816:10;;3835:238;3849:2;3846:1;3843:9;3835:238;;;3920:3;3907:17;3894:30;;3937:31;3962:5;3937:31;:::i;:::-;3981:18;;;3867:1;3860:9;;;;;4019:12;;;;4051;;3835:238;;;-1:-1:-1;4092:5:1;3071:1032;-1:-1:-1;;;;;;;;3071:1032:1:o;4108:245::-;4166:6;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4274:9;4261:23;4293:30;4317:5;4293:30;:::i;4358:249::-;4427:6;4480:2;4468:9;4459:7;4455:23;4451:32;4448:52;;;4496:1;4493;4486:12;4448:52;4528:9;4522:16;4547:30;4571:5;4547:30;:::i;4612:450::-;4681:6;4734:2;4722:9;4713:7;4709:23;4705:32;4702:52;;;4750:1;4747;4740:12;4702:52;4790:9;4777:23;4823:18;4815:6;4812:30;4809:50;;;4855:1;4852;4845:12;4809:50;4878:22;;4931:4;4923:13;;4919:27;-1:-1:-1;4909:55:1;;4960:1;4957;4950:12;4909:55;4983:73;5048:7;5043:2;5030:16;5025:2;5021;5017:11;4983:73;:::i;5067:180::-;5126:6;5179:2;5167:9;5158:7;5154:23;5150:32;5147:52;;;5195:1;5192;5185:12;5147:52;-1:-1:-1;5218:23:1;;5067:180;-1:-1:-1;5067:180:1:o;5252:323::-;5328:6;5336;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5441:9;5428:23;5418:33;;5501:2;5490:9;5486:18;5473:32;5514:31;5539:5;5514:31;:::i;5580:257::-;5621:3;5659:5;5653:12;5686:6;5681:3;5674:19;5702:63;5758:6;5751:4;5746:3;5742:14;5735:4;5728:5;5724:16;5702:63;:::i;:::-;5819:2;5798:15;-1:-1:-1;;5794:29:1;5785:39;;;;5826:4;5781:50;;5580:257;-1:-1:-1;;5580:257:1:o;5842:274::-;5971:3;6009:6;6003:13;6025:53;6071:6;6066:3;6059:4;6051:6;6047:17;6025:53;:::i;:::-;6094:16;;;;;5842:274;-1:-1:-1;;5842:274:1:o;6121:772::-;6502:3;6540:6;6534:13;6556:53;6602:6;6597:3;6590:4;6582:6;6578:17;6556:53;:::i;:::-;-1:-1:-1;;;6631:16:1;;;6656:18;;;6699:13;;6721:65;6699:13;6773:1;6762:13;;6755:4;6743:17;;6721:65;:::i;:::-;-1:-1:-1;;;6849:1:1;6805:20;;;;6841:10;;;6834:27;6885:1;6877:10;;6121:772;-1:-1:-1;;;;6121:772:1:o;7316:488::-;-1:-1:-1;;;;;7585:15:1;;;7567:34;;7637:15;;7632:2;7617:18;;7610:43;7684:2;7669:18;;7662:34;;;7732:3;7727:2;7712:18;;7705:31;;;7510:4;;7753:45;;7778:19;;7770:6;7753:45;:::i;:::-;7745:53;7316:488;-1:-1:-1;;;;;;7316:488:1:o;8159:632::-;8330:2;8382:21;;;8452:13;;8355:18;;;8474:22;;;8301:4;;8330:2;8553:15;;;;8527:2;8512:18;;;8301:4;8596:169;8610:6;8607:1;8604:13;8596:169;;;8671:13;;8659:26;;8740:15;;;;8705:12;;;;8632:1;8625:9;8596:169;;;-1:-1:-1;8782:3:1;;8159:632;-1:-1:-1;;;;;;8159:632:1:o;8988:219::-;9137:2;9126:9;9119:21;9100:4;9157:44;9197:2;9186:9;9182:18;9174:6;9157:44;:::i;9975:414::-;10177:2;10159:21;;;10216:2;10196:18;;;10189:30;10255:34;10250:2;10235:18;;10228:62;-1:-1:-1;;;10321:2:1;10306:18;;10299:48;10379:3;10364:19;;9975:414::o;18662:356::-;18864:2;18846:21;;;18883:18;;;18876:30;18942:34;18937:2;18922:18;;18915:62;19009:2;18994:18;;18662:356::o;21655:413::-;21857:2;21839:21;;;21896:2;21876:18;;;21869:30;21935:34;21930:2;21915:18;;21908:62;-1:-1:-1;;;22001:2:1;21986:18;;21979:47;22058:3;22043:19;;21655:413::o;24000:275::-;24071:2;24065:9;24136:2;24117:13;;-1:-1:-1;;24113:27:1;24101:40;;24171:18;24156:34;;24192:22;;;24153:62;24150:88;;;24218:18;;:::i;:::-;24254:2;24247:22;24000:275;;-1:-1:-1;24000:275:1:o;24280:128::-;24320:3;24351:1;24347:6;24344:1;24341:13;24338:39;;;24357:18;;:::i;:::-;-1:-1:-1;24393:9:1;;24280:128::o;24413:120::-;24453:1;24479;24469:35;;24484:18;;:::i;:::-;-1:-1:-1;24518:9:1;;24413:120::o;24538:168::-;24578:7;24644:1;24640;24636:6;24632:14;24629:1;24626:21;24621:1;24614:9;24607:17;24603:45;24600:71;;;24651:18;;:::i;:::-;-1:-1:-1;24691:9:1;;24538:168::o;24711:125::-;24751:4;24779:1;24776;24773:8;24770:34;;;24784:18;;:::i;:::-;-1:-1:-1;24821:9:1;;24711:125::o;24841:258::-;24913:1;24923:113;24937:6;24934:1;24931:13;24923:113;;;25013:11;;;25007:18;24994:11;;;24987:39;24959:2;24952:10;24923:113;;;25054:6;25051:1;25048:13;25045:48;;;-1:-1:-1;;25089:1:1;25071:16;;25064:27;24841:258::o;25104:380::-;25183:1;25179:12;;;;25226;;;25247:61;;25301:4;25293:6;25289:17;25279:27;;25247:61;25354:2;25346:6;25343:14;25323:18;25320:38;25317:161;;;25400:10;25395:3;25391:20;25388:1;25381:31;25435:4;25432:1;25425:15;25463:4;25460:1;25453:15;25489:135;25528:3;-1:-1:-1;;25549:17:1;;25546:43;;;25569:18;;:::i;:::-;-1:-1:-1;25616:1:1;25605:13;;25489:135::o;25629:112::-;25661:1;25687;25677:35;;25692:18;;:::i;:::-;-1:-1:-1;25726:9:1;;25629:112::o;25746:127::-;25807:10;25802:3;25798:20;25795:1;25788:31;25838:4;25835:1;25828:15;25862:4;25859:1;25852:15;25878:127;25939:10;25934:3;25930:20;25927:1;25920:31;25970:4;25967:1;25960:15;25994:4;25991:1;25984:15;26010:127;26071:10;26066:3;26062:20;26059:1;26052:31;26102:4;26099:1;26092:15;26126:4;26123:1;26116:15;26142:127;26203:10;26198:3;26194:20;26191:1;26184:31;26234:4;26231:1;26224:15;26258:4;26255:1;26248:15;26274:127;26335:10;26330:3;26326:20;26323:1;26316:31;26366:4;26363:1;26356:15;26390:4;26387:1;26380:15;26406:131;-1:-1:-1;;;;;26481:31:1;;26471:42;;26461:70;;26527:1;26524;26517:12;26542:131;-1:-1:-1;;;;;;26616:32:1;;26606:43;;26596:71;;26663:1;26660;26653:12
Swarm Source
ipfs://8663d18de0df363e867c32d67cb92ecd45e47130620b6696b4bcedcaf6f0e16d
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.