Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,000 RAXxIshod
Holders
996
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RAXxIshodLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Rax
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-10 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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"); (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"); (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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File src/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File src/ProxyRegistry.sol pragma solidity ^0.8.4; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; mapping(address => bool) public contracts; } // File src/Rax.sol pragma solidity ^0.8.4; // ERC721A so we can make approve function virtual error CallerNotOwner(); error OwnerAlreadySet(); error MaxMintPerTx(); error MaxSupplyReached(); error TransferWhilePaused(); error UnauthorisedOperator(); contract Rax is ERC721A { address private _owner; // baseURI with trailing slash. string public baseURI = 'https://ipfs.raxworld.io/ipfs/QmPAN1CRAV8Z9a91VNYcHPdTGwGdr94bD3Bjofx34TdR4d/'; // MAX NUMBER OF NFTs PER TRANSACTION uint8 MAX_MINT_PER_TRANSACTION = 100; // MAX NFTs available uint16 MAX_NFTs = 1000; // pauses transfers and sales // minting and burning are always allowed bool private _paused = true; // authorised Operators list address[] private authorisedOperators; // madworld marketplace proxy registry address public proxyRegistryAddress = 0xAe88F4C15897e77a07FaA15417dA6d3034F62c32; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() ERC721A('RAX x Ishod Wair', 'RAXxIshod') { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } modifier onlyOwner() { if (msg.sender != _owner) revert CallerNotOwner(); _; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function batchMint(address[] memory receivers) external onlyOwner { if (totalSupply() + receivers.length > MAX_NFTs) revert MaxSupplyReached(); if (receivers.length > MAX_MINT_PER_TRANSACTION) revert MaxMintPerTx(); for (uint8 i = 0; i < receivers.length; i++) { _safeMint(receivers[i], 1); } } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setProxyRegistryAddress(address _newProxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _newProxyRegistryAddress; } function transferOwnership(address to) external onlyOwner { if (_owner == to) revert OwnerAlreadySet(); address oldOwner = _owner; _owner = to; emit OwnershipTransferred(oldOwner, to); } /** * @dev Returns true if the contract is paused, and false otherwise. */ function isPaused() public view virtual returns (bool) { return _paused; } function setPaused(bool paused) external onlyOwner { _paused = paused; } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { super._beforeTokenTransfers(from, to, startTokenId, quantity); if (from != address(0) && to != address(0)) { if (_paused) revert TransferWhilePaused(); } } function addAuthorisedOperator(address[] calldata operators) external onlyOwner { for (uint256 i = 0; i < operators.length; i++) { authorisedOperators.push(operators[i]); } } function removeOperator(address operator) external onlyOwner { address[] memory filteredOperators; uint256 count = 0; for (uint256 i = 0; i < authorisedOperators.length; i++) { if (authorisedOperators[i] != operator) { filteredOperators[count] = authorisedOperators[i]; count++; } } authorisedOperators = filteredOperators; } function _isAuthorisedOperator(address operator) private view returns (bool) { for (uint256 i = 0; i < authorisedOperators.length; i++) { if (operator == authorisedOperators[i]) { return true; } } return false; } function setApprovalForAll(address operator, bool approved) public virtual override { if (approved) { if (!_isAuthorisedOperator(operator)) revert UnauthorisedOperator(); } super.setApprovalForAll(operator, approved); } function approve(address to, uint256 tokenId) public override { if (to != address(0)) { if (!_isAuthorisedOperator(to)) revert UnauthorisedOperator(); } super.approve(to, tokenId); } function burn(uint256 tokenId) public virtual { _burn(tokenId, true); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CallerNotOwner","type":"error"},{"inputs":[],"name":"MaxMintPerTx","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerAlreadySet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransferWhilePaused","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"UnauthorisedOperator","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"operators","type":"address[]"}],"name":"addAuthorisedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newProxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060800160405280604d815260200162003e54604d9139600990805190602001906200003592919062000272565b506064600a60006101000a81548160ff021916908360ff1602179055506103e8600a60016101000a81548161ffff021916908361ffff1602179055506001600a60036101000a81548160ff02191690831515021790555073ae88f4c15897e77a07faa15417da6d3034f62c32600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ee57600080fd5b506040518060400160405280601081526020017f5241582078204973686f642057616972000000000000000000000000000000008152506040518060400160405280600981526020017f524158784973686f64000000000000000000000000000000000000000000000081525081600290805190602001906200017392919062000272565b5080600390805190602001906200018c92919062000272565b506200019d6200026960201b60201c565b600081905550505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a362000387565b60006001905090565b828054620002809062000322565b90600052602060002090601f016020900481019282620002a45760008555620002f0565b82601f10620002bf57805160ff1916838001178555620002f0565b82800160010185558215620002f0579182015b82811115620002ef578251825591602001919060010190620002d2565b5b509050620002ff919062000303565b5090565b5b808211156200031e57600081600090555060010162000304565b5090565b600060028204905060018216806200033b57607f821691505b6020821081141562000352576200035162000358565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613abd80620003976000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063c87b56dd11610097578063d67b06c111610071578063d67b06c114610434578063df0b663714610450578063e985e9c51461046c578063f2fde38b1461049c57610173565b8063c87b56dd146103ca578063cd7c0326146103fa578063d26ea6c01461041857610173565b806370a082311461030a57806395d89b411461033a578063a22cb46514610358578063ac8a584a14610374578063b187bd2614610390578063b88d4fde146103ae57610173565b806323b872dd1161013057806323b872dd1461024c57806342842e0e1461026857806342966c681461028457806355f804b3146102a05780636352211e146102bc5780636c0360eb146102ec57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806316c38b3c1461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d9190613374565b6104b8565b60405161019f919061358b565b60405180910390f35b6101b061059a565b6040516101bd91906135a6565b60405180910390f35b6101e060048036038101906101db9190613407565b61062c565b6040516101ed9190613524565b60405180910390f35b610210600480360381019061020b9190613289565b6106a8565b005b61022c6004803603810190610227919061334b565b61072a565b005b6102366107ce565b60405161024391906135c8565b60405180910390f35b61026660048036038101906102619190613183565b6107e5565b005b610282600480360381019061027d9190613183565b6107f5565b005b61029e60048036038101906102999190613407565b610815565b005b6102ba60048036038101906102b591906133c6565b610823565b005b6102d660048036038101906102d19190613407565b6108c4565b6040516102e39190613524565b60405180910390f35b6102f46108da565b60405161030191906135a6565b60405180910390f35b610324600480360381019061031f919061311e565b610968565b60405161033191906135c8565b60405180910390f35b610342610a38565b60405161034f91906135a6565b60405180910390f35b610372600480360381019061036d919061324d565b610aca565b005b61038e6004803603810190610389919061311e565b610b1e565b005b610398610d66565b6040516103a5919061358b565b60405180910390f35b6103c860048036038101906103c391906131d2565b610d7d565b005b6103e460048036038101906103df9190613407565b610df9565b6040516103f191906135a6565b60405180910390f35b610402610e98565b60405161040f9190613524565b60405180910390f35b610432600480360381019061042d919061311e565b610ebe565b005b61044e6004803603810190610449919061330a565b610f89565b005b61046a600480360381019061046591906132c5565b611132565b005b61048660048036038101906104819190613147565b61128f565b604051610493919061358b565b60405180910390f35b6104b660048036038101906104b1919061311e565b611323565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105935750610592826114f8565b5b9050919050565b6060600280546105a990613857565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590613857565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b600061063782611562565b61066d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461071c576106e5826115b0565b61071b576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6107268282611685565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107b1576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b60006107d8611790565b6001546000540303905090565b6107f0838383611799565b505050565b61081083838360405180602001604052806000815250610d7d565b505050565b610820816001611c4f565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108aa576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600990805190602001906108c0929190612d95565b5050565b60006108cf8261203f565b600001519050919050565b600980546108e790613857565b80601f016020809104026020016040519081016040528092919081815260200182805461091390613857565b80156109605780601f1061093557610100808354040283529160200191610960565b820191906000526020600020905b81548152906001019060200180831161094357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b606060038054610a4790613857565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7390613857565b8015610ac05780601f10610a9557610100808354040283529160200191610ac0565b820191906000526020600020905b815481529060010190602001808311610aa357829003601f168201915b5050505050905090565b8015610b1057610ad9826115b0565b610b0f576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b1a82826122ce565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610d49578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d3657600b8181548110610c89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610ced577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610d32906138ba565b9250505b8080610d41906138ba565b915050610bab565b5081600b9080519060200190610d60929190612e1b565b50505050565b6000600a60039054906101000a900460ff16905090565b610d88848484611799565b610da78373ffffffffffffffffffffffffffffffffffffffff16612446565b8015610dbc5750610dba84848484612469565b155b15610df3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610e0482611562565b610e3a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e446125c9565b9050600081511415610e655760405180602001604052806000815250610e90565b80610e6f8461265b565b604051602001610e80929190613500565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611010576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff16815161102f6107ce565b61103991906136d9565b1115611071576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff16815111156110be576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff16101561112e5761111b828260ff168151811061110c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612808565b808061112690613903565b9150506110c1565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561128a57600b838383818110611202577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611217919061311e565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611282906138ba565b9150506111bc565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113aa576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611432576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161156d611790565b1115801561157c575060005482105b80156115a9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600080600090505b600b8054905081101561167a57600b81815481106115ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611667576001915050611680565b8080611672906138ba565b9150506115b8565b50600090505b919050565b6000611690826108c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611717612826565b73ffffffffffffffffffffffffffffffffffffffff1614158015611749575061174781611742612826565b61128f565b155b15611780576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178b83838361282e565b505050565b60006001905090565b60006117a48261203f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461180f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611830612826565b73ffffffffffffffffffffffffffffffffffffffff16148061185f575061185e85611859612826565b61128f565b5b806118a4575061186d612826565b73ffffffffffffffffffffffffffffffffffffffff1661188c8461062c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118dd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611944576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195185858560016128e0565b61195d6000848761282e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bdd576000548214611bdc57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c4885858560016129a9565b5050505050565b6000611c5a8361203f565b90506000816000015190508215611d3b5760008173ffffffffffffffffffffffffffffffffffffffff16611c8c612826565b73ffffffffffffffffffffffffffffffffffffffff161480611cbb5750611cba82611cb5612826565b61128f565b5b80611d005750611cc9612826565b73ffffffffffffffffffffffffffffffffffffffff16611ce88661062c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d39576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b611d498160008660016128e0565b611d556000858361282e565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fb9576000548214611fb857848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120278160008660016129a9565b60016000815480929190600101919050555050505050565b612047612ea5565b600082905080612055611790565b11158015612064575060005481105b15612297576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161229557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121795780925050506122c9565b5b60011561229457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228f5780925050506122c9565b61217a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6122d6612826565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561233b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612348612826565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123f5612826565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161243a919061358b565b60405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248f612826565b8786866040518563ffffffff1660e01b81526004016124b1949392919061353f565b602060405180830381600087803b1580156124cb57600080fd5b505af19250505080156124fc57506040513d601f19601f820116820180604052508101906124f9919061339d565b60015b612576573d806000811461252c576040519150601f19603f3d011682016040523d82523d6000602084013e612531565b606091505b5060008151141561256e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546125d890613857565b80601f016020809104026020016040519081016040528092919081815260200182805461260490613857565b80156126515780601f1061262657610100808354040283529160200191612651565b820191906000526020600020905b81548152906001019060200180831161263457829003601f168201915b5050505050905090565b606060008214156126a3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612803565b600082905060005b600082146126d55780806126be906138ba565b915050600a826126ce919061372f565b91506126ab565b60008167ffffffffffffffff811115612717577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127495781602001600182028036833780820191505090505b5090505b600085146127fc576001826127629190613760565b9150600a85612771919061392d565b603061277d91906136d9565b60f81b8183815181106127b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127f5919061372f565b945061274d565b8093505050505b919050565b6128228282604051806020016040528060008152506129af565b5050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6128ec848484846129c1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156129565750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156129a357600a60039054906101000a900460ff16156129a2576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b50505050565b6129bc83838360016129c7565b505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a34576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a6f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7c60008683876128e0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c465750612c458773ffffffffffffffffffffffffffffffffffffffff16612446565b5b15612d0c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cbb6000888480600101955088612469565b612cf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c4c578260005414612d0757600080fd5b612d78565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d0d575b816000819055505050612d8e60008683876129a9565b5050505050565b828054612da190613857565b90600052602060002090601f016020900481019282612dc35760008555612e0a565b82601f10612ddc57805160ff1916838001178555612e0a565b82800160010185558215612e0a579182015b82811115612e09578251825591602001919060010190612dee565b5b509050612e179190612ee8565b5090565b828054828255906000526020600020908101928215612e94579160200282015b82811115612e935782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e3b565b5b509050612ea19190612ee8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f01576000816000905550600101612ee9565b5090565b6000612f18612f1384613608565b6135e3565b90508083825260208201905082856020860282011115612f3757600080fd5b60005b85811015612f675781612f4d8882612fed565b845260208401935060208301925050600181019050612f3a565b5050509392505050565b6000612f84612f7f84613634565b6135e3565b905082815260208101848484011115612f9c57600080fd5b612fa7848285613815565b509392505050565b6000612fc2612fbd84613665565b6135e3565b905082815260208101848484011115612fda57600080fd5b612fe5848285613815565b509392505050565b600081359050612ffc81613a2b565b92915050565b60008083601f84011261301457600080fd5b8235905067ffffffffffffffff81111561302d57600080fd5b60208301915083602082028301111561304557600080fd5b9250929050565b600082601f83011261305d57600080fd5b813561306d848260208601612f05565b91505092915050565b60008135905061308581613a42565b92915050565b60008135905061309a81613a59565b92915050565b6000815190506130af81613a59565b92915050565b600082601f8301126130c657600080fd5b81356130d6848260208601612f71565b91505092915050565b600082601f8301126130f057600080fd5b8135613100848260208601612faf565b91505092915050565b60008135905061311881613a70565b92915050565b60006020828403121561313057600080fd5b600061313e84828501612fed565b91505092915050565b6000806040838503121561315a57600080fd5b600061316885828601612fed565b925050602061317985828601612fed565b9150509250929050565b60008060006060848603121561319857600080fd5b60006131a686828701612fed565b93505060206131b786828701612fed565b92505060406131c886828701613109565b9150509250925092565b600080600080608085870312156131e857600080fd5b60006131f687828801612fed565b945050602061320787828801612fed565b935050604061321887828801613109565b925050606085013567ffffffffffffffff81111561323557600080fd5b613241878288016130b5565b91505092959194509250565b6000806040838503121561326057600080fd5b600061326e85828601612fed565b925050602061327f85828601613076565b9150509250929050565b6000806040838503121561329c57600080fd5b60006132aa85828601612fed565b92505060206132bb85828601613109565b9150509250929050565b600080602083850312156132d857600080fd5b600083013567ffffffffffffffff8111156132f257600080fd5b6132fe85828601613002565b92509250509250929050565b60006020828403121561331c57600080fd5b600082013567ffffffffffffffff81111561333657600080fd5b6133428482850161304c565b91505092915050565b60006020828403121561335d57600080fd5b600061336b84828501613076565b91505092915050565b60006020828403121561338657600080fd5b60006133948482850161308b565b91505092915050565b6000602082840312156133af57600080fd5b60006133bd848285016130a0565b91505092915050565b6000602082840312156133d857600080fd5b600082013567ffffffffffffffff8111156133f257600080fd5b6133fe848285016130df565b91505092915050565b60006020828403121561341957600080fd5b600061342784828501613109565b91505092915050565b61343981613794565b82525050565b613448816137a6565b82525050565b600061345982613696565b61346381856136ac565b9350613473818560208601613824565b61347c81613a1a565b840191505092915050565b6000613492826136a1565b61349c81856136bd565b93506134ac818560208601613824565b6134b581613a1a565b840191505092915050565b60006134cb826136a1565b6134d581856136ce565b93506134e5818560208601613824565b80840191505092915050565b6134fa816137fe565b82525050565b600061350c82856134c0565b915061351882846134c0565b91508190509392505050565b60006020820190506135396000830184613430565b92915050565b60006080820190506135546000830187613430565b6135616020830186613430565b61356e60408301856134f1565b8181036060830152613580818461344e565b905095945050505050565b60006020820190506135a0600083018461343f565b92915050565b600060208201905081810360008301526135c08184613487565b905092915050565b60006020820190506135dd60008301846134f1565b92915050565b60006135ed6135fe565b90506135f98282613889565b919050565b6000604051905090565b600067ffffffffffffffff821115613623576136226139eb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561364f5761364e6139eb565b5b61365882613a1a565b9050602081019050919050565b600067ffffffffffffffff8211156136805761367f6139eb565b5b61368982613a1a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136e4826137fe565b91506136ef836137fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137245761372361395e565b5b828201905092915050565b600061373a826137fe565b9150613745836137fe565b9250826137555761375461398d565b5b828204905092915050565b600061376b826137fe565b9150613776836137fe565b9250828210156137895761378861395e565b5b828203905092915050565b600061379f826137de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613842578082015181840152602081019050613827565b83811115613851576000848401525b50505050565b6000600282049050600182168061386f57607f821691505b60208210811415613883576138826139bc565b5b50919050565b61389282613a1a565b810181811067ffffffffffffffff821117156138b1576138b06139eb565b5b80604052505050565b60006138c5826137fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138f8576138f761395e565b5b600182019050919050565b600061390e82613808565b915060ff8214156139225761392161395e565b5b600182019050919050565b6000613938826137fe565b9150613943836137fe565b9250826139535761395261398d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613a3481613794565b8114613a3f57600080fd5b50565b613a4b816137a6565b8114613a5657600080fd5b50565b613a62816137b2565b8114613a6d57600080fd5b50565b613a79816137fe565b8114613a8457600080fd5b5056fea2646970667358221220427b7d560962685fd149d63fea338aeaf573a4c37430c31445ec80b4d5dc986f64736f6c6343000804003368747470733a2f2f697066732e726178776f726c642e696f2f697066732f516d50414e3143524156385a39613931564e59634850645447774764723934624433426a6f6678333454645234642f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063c87b56dd11610097578063d67b06c111610071578063d67b06c114610434578063df0b663714610450578063e985e9c51461046c578063f2fde38b1461049c57610173565b8063c87b56dd146103ca578063cd7c0326146103fa578063d26ea6c01461041857610173565b806370a082311461030a57806395d89b411461033a578063a22cb46514610358578063ac8a584a14610374578063b187bd2614610390578063b88d4fde146103ae57610173565b806323b872dd1161013057806323b872dd1461024c57806342842e0e1461026857806342966c681461028457806355f804b3146102a05780636352211e146102bc5780636c0360eb146102ec57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806316c38b3c1461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d9190613374565b6104b8565b60405161019f919061358b565b60405180910390f35b6101b061059a565b6040516101bd91906135a6565b60405180910390f35b6101e060048036038101906101db9190613407565b61062c565b6040516101ed9190613524565b60405180910390f35b610210600480360381019061020b9190613289565b6106a8565b005b61022c6004803603810190610227919061334b565b61072a565b005b6102366107ce565b60405161024391906135c8565b60405180910390f35b61026660048036038101906102619190613183565b6107e5565b005b610282600480360381019061027d9190613183565b6107f5565b005b61029e60048036038101906102999190613407565b610815565b005b6102ba60048036038101906102b591906133c6565b610823565b005b6102d660048036038101906102d19190613407565b6108c4565b6040516102e39190613524565b60405180910390f35b6102f46108da565b60405161030191906135a6565b60405180910390f35b610324600480360381019061031f919061311e565b610968565b60405161033191906135c8565b60405180910390f35b610342610a38565b60405161034f91906135a6565b60405180910390f35b610372600480360381019061036d919061324d565b610aca565b005b61038e6004803603810190610389919061311e565b610b1e565b005b610398610d66565b6040516103a5919061358b565b60405180910390f35b6103c860048036038101906103c391906131d2565b610d7d565b005b6103e460048036038101906103df9190613407565b610df9565b6040516103f191906135a6565b60405180910390f35b610402610e98565b60405161040f9190613524565b60405180910390f35b610432600480360381019061042d919061311e565b610ebe565b005b61044e6004803603810190610449919061330a565b610f89565b005b61046a600480360381019061046591906132c5565b611132565b005b61048660048036038101906104819190613147565b61128f565b604051610493919061358b565b60405180910390f35b6104b660048036038101906104b1919061311e565b611323565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105935750610592826114f8565b5b9050919050565b6060600280546105a990613857565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590613857565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b600061063782611562565b61066d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461071c576106e5826115b0565b61071b576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6107268282611685565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107b1576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b60006107d8611790565b6001546000540303905090565b6107f0838383611799565b505050565b61081083838360405180602001604052806000815250610d7d565b505050565b610820816001611c4f565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108aa576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600990805190602001906108c0929190612d95565b5050565b60006108cf8261203f565b600001519050919050565b600980546108e790613857565b80601f016020809104026020016040519081016040528092919081815260200182805461091390613857565b80156109605780601f1061093557610100808354040283529160200191610960565b820191906000526020600020905b81548152906001019060200180831161094357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b606060038054610a4790613857565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7390613857565b8015610ac05780601f10610a9557610100808354040283529160200191610ac0565b820191906000526020600020905b815481529060010190602001808311610aa357829003601f168201915b5050505050905090565b8015610b1057610ad9826115b0565b610b0f576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b1a82826122ce565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610d49578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d3657600b8181548110610c89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610ced577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610d32906138ba565b9250505b8080610d41906138ba565b915050610bab565b5081600b9080519060200190610d60929190612e1b565b50505050565b6000600a60039054906101000a900460ff16905090565b610d88848484611799565b610da78373ffffffffffffffffffffffffffffffffffffffff16612446565b8015610dbc5750610dba84848484612469565b155b15610df3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610e0482611562565b610e3a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e446125c9565b9050600081511415610e655760405180602001604052806000815250610e90565b80610e6f8461265b565b604051602001610e80929190613500565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611010576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff16815161102f6107ce565b61103991906136d9565b1115611071576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff16815111156110be576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff16101561112e5761111b828260ff168151811061110c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612808565b808061112690613903565b9150506110c1565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561128a57600b838383818110611202577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611217919061311e565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611282906138ba565b9150506111bc565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113aa576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611432576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161156d611790565b1115801561157c575060005482105b80156115a9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600080600090505b600b8054905081101561167a57600b81815481106115ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611667576001915050611680565b8080611672906138ba565b9150506115b8565b50600090505b919050565b6000611690826108c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611717612826565b73ffffffffffffffffffffffffffffffffffffffff1614158015611749575061174781611742612826565b61128f565b155b15611780576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178b83838361282e565b505050565b60006001905090565b60006117a48261203f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461180f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611830612826565b73ffffffffffffffffffffffffffffffffffffffff16148061185f575061185e85611859612826565b61128f565b5b806118a4575061186d612826565b73ffffffffffffffffffffffffffffffffffffffff1661188c8461062c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118dd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611944576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195185858560016128e0565b61195d6000848761282e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bdd576000548214611bdc57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c4885858560016129a9565b5050505050565b6000611c5a8361203f565b90506000816000015190508215611d3b5760008173ffffffffffffffffffffffffffffffffffffffff16611c8c612826565b73ffffffffffffffffffffffffffffffffffffffff161480611cbb5750611cba82611cb5612826565b61128f565b5b80611d005750611cc9612826565b73ffffffffffffffffffffffffffffffffffffffff16611ce88661062c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d39576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b611d498160008660016128e0565b611d556000858361282e565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fb9576000548214611fb857848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120278160008660016129a9565b60016000815480929190600101919050555050505050565b612047612ea5565b600082905080612055611790565b11158015612064575060005481105b15612297576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161229557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121795780925050506122c9565b5b60011561229457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228f5780925050506122c9565b61217a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6122d6612826565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561233b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612348612826565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123f5612826565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161243a919061358b565b60405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248f612826565b8786866040518563ffffffff1660e01b81526004016124b1949392919061353f565b602060405180830381600087803b1580156124cb57600080fd5b505af19250505080156124fc57506040513d601f19601f820116820180604052508101906124f9919061339d565b60015b612576573d806000811461252c576040519150601f19603f3d011682016040523d82523d6000602084013e612531565b606091505b5060008151141561256e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546125d890613857565b80601f016020809104026020016040519081016040528092919081815260200182805461260490613857565b80156126515780601f1061262657610100808354040283529160200191612651565b820191906000526020600020905b81548152906001019060200180831161263457829003601f168201915b5050505050905090565b606060008214156126a3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612803565b600082905060005b600082146126d55780806126be906138ba565b915050600a826126ce919061372f565b91506126ab565b60008167ffffffffffffffff811115612717577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127495781602001600182028036833780820191505090505b5090505b600085146127fc576001826127629190613760565b9150600a85612771919061392d565b603061277d91906136d9565b60f81b8183815181106127b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127f5919061372f565b945061274d565b8093505050505b919050565b6128228282604051806020016040528060008152506129af565b5050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6128ec848484846129c1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156129565750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156129a357600a60039054906101000a900460ff16156129a2576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b50505050565b6129bc83838360016129c7565b505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a34576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a6f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7c60008683876128e0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c465750612c458773ffffffffffffffffffffffffffffffffffffffff16612446565b5b15612d0c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cbb6000888480600101955088612469565b612cf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c4c578260005414612d0757600080fd5b612d78565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d0d575b816000819055505050612d8e60008683876129a9565b5050505050565b828054612da190613857565b90600052602060002090601f016020900481019282612dc35760008555612e0a565b82601f10612ddc57805160ff1916838001178555612e0a565b82800160010185558215612e0a579182015b82811115612e09578251825591602001919060010190612dee565b5b509050612e179190612ee8565b5090565b828054828255906000526020600020908101928215612e94579160200282015b82811115612e935782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e3b565b5b509050612ea19190612ee8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f01576000816000905550600101612ee9565b5090565b6000612f18612f1384613608565b6135e3565b90508083825260208201905082856020860282011115612f3757600080fd5b60005b85811015612f675781612f4d8882612fed565b845260208401935060208301925050600181019050612f3a565b5050509392505050565b6000612f84612f7f84613634565b6135e3565b905082815260208101848484011115612f9c57600080fd5b612fa7848285613815565b509392505050565b6000612fc2612fbd84613665565b6135e3565b905082815260208101848484011115612fda57600080fd5b612fe5848285613815565b509392505050565b600081359050612ffc81613a2b565b92915050565b60008083601f84011261301457600080fd5b8235905067ffffffffffffffff81111561302d57600080fd5b60208301915083602082028301111561304557600080fd5b9250929050565b600082601f83011261305d57600080fd5b813561306d848260208601612f05565b91505092915050565b60008135905061308581613a42565b92915050565b60008135905061309a81613a59565b92915050565b6000815190506130af81613a59565b92915050565b600082601f8301126130c657600080fd5b81356130d6848260208601612f71565b91505092915050565b600082601f8301126130f057600080fd5b8135613100848260208601612faf565b91505092915050565b60008135905061311881613a70565b92915050565b60006020828403121561313057600080fd5b600061313e84828501612fed565b91505092915050565b6000806040838503121561315a57600080fd5b600061316885828601612fed565b925050602061317985828601612fed565b9150509250929050565b60008060006060848603121561319857600080fd5b60006131a686828701612fed565b93505060206131b786828701612fed565b92505060406131c886828701613109565b9150509250925092565b600080600080608085870312156131e857600080fd5b60006131f687828801612fed565b945050602061320787828801612fed565b935050604061321887828801613109565b925050606085013567ffffffffffffffff81111561323557600080fd5b613241878288016130b5565b91505092959194509250565b6000806040838503121561326057600080fd5b600061326e85828601612fed565b925050602061327f85828601613076565b9150509250929050565b6000806040838503121561329c57600080fd5b60006132aa85828601612fed565b92505060206132bb85828601613109565b9150509250929050565b600080602083850312156132d857600080fd5b600083013567ffffffffffffffff8111156132f257600080fd5b6132fe85828601613002565b92509250509250929050565b60006020828403121561331c57600080fd5b600082013567ffffffffffffffff81111561333657600080fd5b6133428482850161304c565b91505092915050565b60006020828403121561335d57600080fd5b600061336b84828501613076565b91505092915050565b60006020828403121561338657600080fd5b60006133948482850161308b565b91505092915050565b6000602082840312156133af57600080fd5b60006133bd848285016130a0565b91505092915050565b6000602082840312156133d857600080fd5b600082013567ffffffffffffffff8111156133f257600080fd5b6133fe848285016130df565b91505092915050565b60006020828403121561341957600080fd5b600061342784828501613109565b91505092915050565b61343981613794565b82525050565b613448816137a6565b82525050565b600061345982613696565b61346381856136ac565b9350613473818560208601613824565b61347c81613a1a565b840191505092915050565b6000613492826136a1565b61349c81856136bd565b93506134ac818560208601613824565b6134b581613a1a565b840191505092915050565b60006134cb826136a1565b6134d581856136ce565b93506134e5818560208601613824565b80840191505092915050565b6134fa816137fe565b82525050565b600061350c82856134c0565b915061351882846134c0565b91508190509392505050565b60006020820190506135396000830184613430565b92915050565b60006080820190506135546000830187613430565b6135616020830186613430565b61356e60408301856134f1565b8181036060830152613580818461344e565b905095945050505050565b60006020820190506135a0600083018461343f565b92915050565b600060208201905081810360008301526135c08184613487565b905092915050565b60006020820190506135dd60008301846134f1565b92915050565b60006135ed6135fe565b90506135f98282613889565b919050565b6000604051905090565b600067ffffffffffffffff821115613623576136226139eb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561364f5761364e6139eb565b5b61365882613a1a565b9050602081019050919050565b600067ffffffffffffffff8211156136805761367f6139eb565b5b61368982613a1a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136e4826137fe565b91506136ef836137fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137245761372361395e565b5b828201905092915050565b600061373a826137fe565b9150613745836137fe565b9250826137555761375461398d565b5b828204905092915050565b600061376b826137fe565b9150613776836137fe565b9250828210156137895761378861395e565b5b828203905092915050565b600061379f826137de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613842578082015181840152602081019050613827565b83811115613851576000848401525b50505050565b6000600282049050600182168061386f57607f821691505b60208210811415613883576138826139bc565b5b50919050565b61389282613a1a565b810181811067ffffffffffffffff821117156138b1576138b06139eb565b5b80604052505050565b60006138c5826137fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138f8576138f761395e565b5b600182019050919050565b600061390e82613808565b915060ff8214156139225761392161395e565b5b600182019050919050565b6000613938826137fe565b9150613943836137fe565b9250826139535761395261398d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613a3481613794565b8114613a3f57600080fd5b50565b613a4b816137a6565b8114613a5657600080fd5b50565b613a62816137b2565b8114613a6d57600080fd5b50565b613a79816137fe565b8114613a8457600080fd5b5056fea2646970667358221220427b7d560962685fd149d63fea338aeaf573a4c37430c31445ec80b4d5dc986f64736f6c63430008040033
Deployed Bytecode Sourcemap
43467:4515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24529:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27724:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29332:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47659:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45866:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23778:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30320:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30561:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47894:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45146:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27532:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43566:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24948:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27893:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47355:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46579:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45770:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30817:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28068:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44075:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45260:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44667:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46338:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30039:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45443:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24529:355;24676:4;24733:25;24718:40;;;:11;:40;;;;:105;;;;24790:33;24775:48;;;:11;:48;;;;24718:105;:158;;;;24840:36;24864:11;24840:23;:36::i;:::-;24718:158;24698:178;;24529:355;;;:::o;27724:100::-;27778:13;27811:5;27804:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27724:100;:::o;29332:245::-;29436:7;29466:16;29474:7;29466;:16::i;:::-;29461:64;;29491:34;;;;;;;;;;;;;;29461:64;29545:15;:24;29561:7;29545:24;;;;;;;;;;;;;;;;;;;;;29538:31;;29332:245;;;:::o;47659:227::-;47750:1;47736:16;;:2;:16;;;47732:110;;47774:25;47796:2;47774:21;:25::i;:::-;47769:61;;47808:22;;;;;;;;;;;;;;47769:61;47732:110;47852:26;47866:2;47870:7;47852:13;:26::i;:::-;47659:227;;:::o;45866:86::-;44499:6;;;;;;;;;;;44485:20;;:10;:20;;;44481:49;;44514:16;;;;;;;;;;;;;;44481:49;45938:6:::1;45928:7;;:16;;;;;;;;;;;;;;;;;;45866:86:::0;:::o;23778:303::-;23822:7;24047:15;:13;:15::i;:::-;24032:12;;24016:13;;:28;:46;24009:53;;23778:303;:::o;30320:170::-;30454:28;30464:4;30470:2;30474:7;30454:9;:28::i;:::-;30320:170;;;:::o;30561:185::-;30699:39;30716:4;30722:2;30726:7;30699:39;;;;;;;;;;;;:16;:39::i;:::-;30561:185;;;:::o;47894:85::-;47951:20;47957:7;47966:4;47951:5;:20::i;:::-;47894:85;:::o;45146:106::-;44499:6;;;;;;;;;;;44485:20;;:10;:20;;;44481:49;;44514:16;;;;;;;;;;;;;;44481:49;45233:11:::1;45223:7;:21;;;;;;;;;;;;:::i;:::-;;45146:106:::0;:::o;27532:125::-;27596:7;27623:21;27636:7;27623:12;:21::i;:::-;:26;;;27616:33;;27532:125;;;:::o;43566:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24948:206::-;25012:7;25053:1;25036:19;;:5;:19;;;25032:60;;;25064:28;;;;;;;;;;;;;;25032:60;25118:12;:19;25131:5;25118:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25110:36;;25103:43;;24948:206;;;:::o;27893:104::-;27949:13;27982:7;27975:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27893:104;:::o;47355:296::-;47486:8;47482:108;;;47516:31;47538:8;47516:21;:31::i;:::-;47511:67;;47556:22;;;;;;;;;;;;;;47511:67;47482:108;47600:43;47624:8;47634;47600:23;:43::i;:::-;47355:296;;:::o;46579:439::-;44499:6;;;;;;;;;;;44485:20;;:10;:20;;;44481:49;;44514:16;;;;;;;;;;;;;;44481:49;46651:34:::1;46696:13;46731:9:::0;46726:233:::1;46750:19;:26;;;;46746:1;:30;46726:233;;;46828:8;46802:34;;:19;46822:1;46802:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;46798:150;;46884:19;46904:1;46884:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46857:17;46875:5;46857:24;;;;;;;;;;;;;;;;;;;;;:49;;;;;;;;;::::0;::::1;46925:7;;;;;:::i;:::-;;;;46798:150;46778:3;;;;;:::i;:::-;;;;46726:233;;;;46993:17;46971:19;:39;;;;;;;;;;;;:::i;:::-;;44541:1;;46579:439:::0;:::o;45770:88::-;45819:4;45843:7;;;;;;;;;;;45836:14;;45770:88;:::o;30817:406::-;30984:28;30994:4;31000:2;31004:7;30984:9;:28::i;:::-;31041:15;:2;:13;;;:15::i;:::-;:89;;;;;31074:56;31105:4;31111:2;31115:7;31124:5;31074:30;:56::i;:::-;31073:57;31041:89;31023:193;;;31164:40;;;;;;;;;;;;;;31023:193;30817:406;;;;:::o;28068:415::-;28186:13;28222:16;28230:7;28222;:16::i;:::-;28217:59;;28247:29;;;;;;;;;;;;;;28217:59;28289:21;28313:10;:8;:10::i;:::-;28289:34;;28379:1;28360:7;28354:21;:26;;:121;;;;;;;;;;;;;;;;;28424:7;28433:18;:7;:16;:18::i;:::-;28407:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28354:121;28334:141;;;28068:415;;;:::o;44075:89::-;;;;;;;;;;;;;:::o;45260:175::-;44499:6;;;;;;;;;;;44485:20;;:10;:20;;;44481:49;;44514:16;;;;;;;;;;;;;;44481:49;45403:24:::1;45380:20;;:47;;;;;;;;;;;;;;;;;;45260:175:::0;:::o;44667:363::-;44499:6;;;;;;;;;;;44485:20;;:10;:20;;;44481:49;;44514:16;;;;;;;;;;;;;;44481:49;44783:8:::1;;;;;;;;;;;44748:43;;44764:9;:16;44748:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:43;44744:87;;;44813:18;;;;;;;;;;;;;;44744:87;44865:24;;;;;;;;;;;44846:43;;:9;:16;:43;44842:70;;;44898:14;;;;;;;;;;;;;;44842:70;44930:7;44925:98;44947:9;:16;44943:1;:20;;;44925:98;;;44985:26;44995:9;45005:1;44995:12;;;;;;;;;;;;;;;;;;;;;;;;45009:1;44985:9;:26::i;:::-;44965:3;;;;;:::i;:::-;;;;44925:98;;;;44667:363:::0;:::o;46338:233::-;44499:6;;;;;;;;;;;44485:20;;:10;:20;;;44481:49;;44514:16;;;;;;;;;;;;;;44481:49;46457:9:::1;46452:112;46476:9;;:16;;46472:1;:20;46452:112;;;46514:19;46539:9;;46549:1;46539:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46514:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46494:3;;;;;:::i;:::-;;;;46452:112;;;;46338:233:::0;;:::o;30039:214::-;30181:4;30210:18;:25;30229:5;30210:25;;;;;;;;;;;;;;;:35;30236:8;30210:35;;;;;;;;;;;;;;;;;;;;;;;;;30203:42;;30039:214;;;;:::o;45443:227::-;44499:6;;;;;;;;;;;44485:20;;:10;:20;;;44481:49;;44514:16;;;;;;;;;;;;;;44481:49;45526:2:::1;45516:12;;:6;;;;;;;;;;;:12;;;45512:42;;;45537:17;;;;;;;;;;;;;;45512:42;45565:16;45584:6;;;;;;;;;;;45565:25;;45610:2;45601:6;;:11;;;;;;;;;;;;;;;;;;45659:2;45628:34;;45649:8;45628:34;;;;;;;;;;;;44541:1;45443:227:::0;:::o;20112:157::-;20197:4;20236:25;20221:40;;;:11;:40;;;;20214:47;;20112:157;;;:::o;31478:213::-;31535:4;31591:7;31572:15;:13;:15::i;:::-;:26;;:66;;;;;31625:13;;31615:7;:23;31572:66;:111;;;;;31656:11;:20;31668:7;31656:20;;;;;;;;;;;:27;;;;;;;;;;;;31655:28;31572:111;31552:131;;31478:213;;;:::o;47026:321::-;47124:4;47151:9;47163:1;47151:13;;47146:169;47170:19;:26;;;;47166:1;:30;47146:169;;;47234:19;47254:1;47234:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47222:34;;:8;:34;;;47218:86;;;47284:4;47277:11;;;;;47218:86;47198:3;;;;;:::i;:::-;;;;47146:169;;;;47334:5;47327:12;;47026:321;;;;:::o;28887:379::-;28968:13;28984:24;29000:7;28984:15;:24::i;:::-;28968:40;;29029:5;29023:11;;:2;:11;;;29019:48;;;29043:24;;;;;;;;;;;;;;29019:48;29100:5;29084:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29110:37;29127:5;29134:12;:10;:12::i;:::-;29110:16;:37::i;:::-;29109:38;29084:63;29080:138;;;29171:35;;;;;;;;;;;;;;29080:138;29230:28;29239:2;29243:7;29252:5;29230:8;:28::i;:::-;28887:379;;;:::o;44558:101::-;44623:7;44650:1;44643:8;;44558:101;:::o;34808:2130::-;34923:35;34961:21;34974:7;34961:12;:21::i;:::-;34923:59;;35021:4;34999:26;;:13;:18;;;:26;;;34995:67;;35034:28;;;;;;;;;;;;;;34995:67;35075:22;35117:4;35101:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;35138:36;35155:4;35161:12;:10;:12::i;:::-;35138:16;:36::i;:::-;35101:73;:126;;;;35215:12;:10;:12::i;:::-;35191:36;;:20;35203:7;35191:11;:20::i;:::-;:36;;;35101:126;35075:153;;35246:17;35241:66;;35272:35;;;;;;;;;;;;;;35241:66;35336:1;35322:16;;:2;:16;;;35318:52;;;35347:23;;;;;;;;;;;;;;35318:52;35383:43;35405:4;35411:2;35415:7;35424:1;35383:21;:43::i;:::-;35491:35;35508:1;35512:7;35521:4;35491:8;:35::i;:::-;35852:1;35822:12;:18;35835:4;35822:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35896:1;35868:12;:16;35881:2;35868:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35914:31;35948:11;:20;35960:7;35948:20;;;;;;;;;;;35914:54;;35999:2;35983:8;:13;;;:18;;;;;;;;;;;;;;;;;;36049:15;36016:8;:23;;;:49;;;;;;;;;;;;;;;;;;36317:19;36349:1;36339:7;:11;36317:33;;36365:31;36399:11;:24;36411:11;36399:24;;;;;;;;;;;36365:58;;36467:1;36442:27;;:8;:13;;;;;;;;;;;;:27;;;36438:384;;;36652:13;;36637:11;:28;36633:174;;36706:4;36690:8;:13;;;:20;;;;;;;;;;;;;;;;;;36759:13;:28;;;36733:8;:23;;;:54;;;;;;;;;;;;;;;;;;36633:174;36438:384;34808:2130;;;36869:7;36865:2;36850:27;;36859:4;36850:27;;;;;;;;;;;;36888:42;36909:4;36915:2;36919:7;36928:1;36888:20;:42::i;:::-;34808:2130;;;;;:::o;37339:2408::-;37419:35;37457:21;37470:7;37457:12;:21::i;:::-;37419:59;;37491:12;37506:13;:18;;;37491:33;;37541:13;37537:290;;;37571:22;37613:4;37597:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;37638:36;37655:4;37661:12;:10;:12::i;:::-;37638:16;:36::i;:::-;37597:77;:134;;;;37719:12;:10;:12::i;:::-;37695:36;;:20;37707:7;37695:11;:20::i;:::-;:36;;;37597:134;37571:161;;37754:17;37749:66;;37780:35;;;;;;;;;;;;;;37749:66;37537:290;;37839:51;37861:4;37875:1;37879:7;37888:1;37839:21;:51::i;:::-;37955:35;37972:1;37976:7;37985:4;37955:8;:35::i;:::-;38286:31;38320:12;:18;38333:4;38320:18;;;;;;;;;;;;;;;38286:52;;38376:1;38353:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38420:1;38392:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38520:31;38554:11;:20;38566:7;38554:20;;;;;;;;;;;38520:54;;38605:4;38589:8;:13;;;:20;;;;;;;;;;;;;;;;;;38657:15;38624:8;:23;;;:49;;;;;;;;;;;;;;;;;;38706:4;38688:8;:15;;;:22;;;;;;;;;;;;;;;;;;38958:19;38990:1;38980:7;:11;38958:33;;39006:31;39040:11;:24;39052:11;39040:24;;;;;;;;;;;39006:58;;39108:1;39083:27;;:8;:13;;;;;;;;;;;;:27;;;39079:384;;;39293:13;;39278:11;:28;39274:174;;39347:4;39331:8;:13;;;:20;;;;;;;;;;;;;;;;;;39400:13;:28;;;39374:8;:23;;;:54;;;;;;;;;;;;;;;;;;39274:174;39079:384;37339:2408;;;;39518:7;39514:1;39491:35;;39500:4;39491:35;;;;;;;;;;;;39537:50;39558:4;39572:1;39576:7;39585:1;39537:20;:50::i;:::-;39714:12;;:14;;;;;;;;;;;;;37339:2408;;;;:::o;26329:1141::-;26418:21;;:::i;:::-;26457:12;26472:7;26457:22;;26540:4;26521:15;:13;:15::i;:::-;:23;;:47;;;;;26555:13;;26548:4;:20;26521:47;26517:886;;;26589:31;26623:11;:17;26635:4;26623:17;;;;;;;;;;;26589:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26664:9;:16;;;26659:729;;26735:1;26709:28;;:9;:14;;;:28;;;26705:101;;26773:9;26766:16;;;;;;26705:101;27108:261;27115:4;27108:261;;;27148:6;;;;;;;;27193:11;:17;27205:4;27193:17;;;;;;;;;;;27181:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27267:1;27241:28;;:9;:14;;;:28;;;27237:109;;27309:9;27302:16;;;;;;27237:109;27108:261;;;26659:729;26517:886;;27431:31;;;;;;;;;;;;;;26329:1141;;;;:::o;29649:319::-;29792:12;:10;:12::i;:::-;29780:24;;:8;:24;;;29776:54;;;29813:17;;;;;;;;;;;;;;29776:54;29888:8;29843:18;:32;29862:12;:10;:12::i;:::-;29843:32;;;;;;;;;;;;;;;:42;29876:8;29843:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29941:8;29912:48;;29927:12;:10;:12::i;:::-;29912:48;;;29951:8;29912:48;;;;;;:::i;:::-;;;;;;;;29649:319;;:::o;8944:326::-;9004:4;9261:1;9239:7;:19;;;:23;9232:30;;8944:326;;;:::o;40553:772::-;40716:4;40766:2;40750:36;;;40805:12;:10;:12::i;:::-;40836:4;40859:7;40885:5;40750:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40733:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41093:1;41076:6;:13;:18;41072:235;;;41122:40;;;;;;;;;;;;;;41072:235;41265:6;41259:13;41250:6;41246:2;41242:15;41235:38;40733:585;40971:45;;;40961:55;;;:6;:55;;;;40954:62;;;40553:772;;;;;;:::o;45038:100::-;45090:13;45123:7;45116:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45038:100;:::o;17484:723::-;17540:13;17770:1;17761:5;:10;17757:53;;;17788:10;;;;;;;;;;;;;;;;;;;;;17757:53;17820:12;17835:5;17820:20;;17851:14;17876:78;17891:1;17883:4;:9;17876:78;;17909:8;;;;;:::i;:::-;;;;17940:2;17932:10;;;;;:::i;:::-;;;17876:78;;;17964:19;17996:6;17986:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17964:39;;18014:154;18030:1;18021:5;:10;18014:154;;18058:1;18048:11;;;;;:::i;:::-;;;18125:2;18117:5;:10;;;;:::i;:::-;18104:2;:24;;;;:::i;:::-;18091:39;;18074:6;18081;18074:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18154:2;18145:11;;;;;:::i;:::-;;;18014:154;;;18192:6;18178:21;;;;;17484:723;;;;:::o;31699:104::-;31768:27;31778:2;31782:8;31768:27;;;;;;;;;;;;:9;:27::i;:::-;31699:104;;:::o;16899:98::-;16952:7;16979:10;16972:17;;16899:98;:::o;39865:196::-;40007:2;39980:15;:24;39996:7;39980:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40045:7;40041:2;40025:28;;40034:5;40025:28;;;;;;;;;;;;39865:196;;;:::o;45960:370::-;46137:61;46165:4;46171:2;46175:12;46189:8;46137:27;:61::i;:::-;46231:1;46215:18;;:4;:18;;;;:38;;;;;46251:1;46237:16;;:2;:16;;;;46215:38;46211:112;;;46274:7;;;;;;;;;;;46270:41;;;46290:21;;;;;;;;;;;;;;46270:41;46211:112;45960:370;;;;:::o;42791:158::-;;;;;:::o;32166:163::-;32289:32;32295:2;32299:8;32309:5;32316:4;32289:5;:32::i;:::-;32166:163;;;:::o;41973:159::-;;;;;:::o;32588:1966::-;32727:20;32750:13;;32727:36;;32792:1;32778:16;;:2;:16;;;32774:48;;;32803:19;;;;;;;;;;;;;;32774:48;32849:1;32837:8;:13;32833:44;;;32859:18;;;;;;;;;;;;;;32833:44;32890:61;32920:1;32924:2;32928:12;32942:8;32890:21;:61::i;:::-;33263:8;33228:12;:16;33241:2;33228:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33327:8;33287:12;:16;33300:2;33287:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33386:2;33353:11;:25;33365:12;33353:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33453:15;33403:11;:25;33415:12;33403:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33486:20;33509:12;33486:35;;33536:11;33565:8;33550:12;:23;33536:37;;33594:4;:23;;;;;33602:15;:2;:13;;;:15::i;:::-;33594:23;33590:832;;;33638:505;33694:12;33690:2;33669:38;;33686:1;33669:38;;;;;;;;;;;;33761:212;33830:1;33863:2;33896:14;;;;;;33941:5;33761:30;:212::i;:::-;33730:365;;34031:40;;;;;;;;;;;;;;33730:365;34138:3;34122:12;:19;;33638:505;;34224:12;34207:13;;:29;34203:43;;34238:8;;;34203:43;33590:832;;;34287:120;34343:14;;;;;;34339:2;34318:40;;34335:1;34318:40;;;;;;;;;;;;34402:3;34386:12;:19;;34287:120;;33590:832;34452:12;34436:13;:28;;;;32588:1966;;34486:60;34515:1;34519:2;34523:12;34537:8;34486:20;:60::i;:::-;32588:1966;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:367::-;1620:8;1630:6;1680:3;1673:4;1665:6;1661:17;1657:27;1647:2;;1698:1;1695;1688:12;1647:2;1734:6;1721:20;1711:30;;1764:18;1756:6;1753:30;1750:2;;;1796:1;1793;1786:12;1750:2;1833:4;1825:6;1821:17;1809:29;;1887:3;1879:4;1871:6;1867:17;1857:8;1853:32;1850:41;1847:2;;;1904:1;1901;1894:12;1847:2;1637:277;;;;;:::o;1937:303::-;2008:5;2057:3;2050:4;2042:6;2038:17;2034:27;2024:2;;2075:1;2072;2065:12;2024:2;2115:6;2102:20;2140:94;2230:3;2222:6;2215:4;2207:6;2203:17;2140:94;:::i;:::-;2131:103;;2014:226;;;;;:::o;2246:133::-;2289:5;2327:6;2314:20;2305:29;;2343:30;2367:5;2343:30;:::i;:::-;2295:84;;;;:::o;2385:137::-;2430:5;2468:6;2455:20;2446:29;;2484:32;2510:5;2484:32;:::i;:::-;2436:86;;;;:::o;2528:141::-;2584:5;2615:6;2609:13;2600:22;;2631:32;2657:5;2631:32;:::i;:::-;2590:79;;;;:::o;2688:271::-;2743:5;2792:3;2785:4;2777:6;2773:17;2769:27;2759:2;;2810:1;2807;2800:12;2759:2;2850:6;2837:20;2875:78;2949:3;2941:6;2934:4;2926:6;2922:17;2875:78;:::i;:::-;2866:87;;2749:210;;;;;:::o;2979:273::-;3035:5;3084:3;3077:4;3069:6;3065:17;3061:27;3051:2;;3102:1;3099;3092:12;3051:2;3142:6;3129:20;3167:79;3242:3;3234:6;3227:4;3219:6;3215:17;3167:79;:::i;:::-;3158:88;;3041:211;;;;;:::o;3258:139::-;3304:5;3342:6;3329:20;3320:29;;3358:33;3385:5;3358:33;:::i;:::-;3310:87;;;;:::o;3403:262::-;3462:6;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3527:1;3524;3517:12;3479:2;3570:1;3595:53;3640:7;3631:6;3620:9;3616:22;3595:53;:::i;:::-;3585:63;;3541:117;3469:196;;;;:::o;3671:407::-;3739:6;3747;3796:2;3784:9;3775:7;3771:23;3767:32;3764:2;;;3812:1;3809;3802:12;3764:2;3855:1;3880:53;3925:7;3916:6;3905:9;3901:22;3880:53;:::i;:::-;3870:63;;3826:117;3982:2;4008:53;4053:7;4044:6;4033:9;4029:22;4008:53;:::i;:::-;3998:63;;3953:118;3754:324;;;;;:::o;4084:552::-;4161:6;4169;4177;4226:2;4214:9;4205:7;4201:23;4197:32;4194:2;;;4242:1;4239;4232:12;4194:2;4285:1;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4256:117;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4540:2;4566:53;4611:7;4602:6;4591:9;4587:22;4566:53;:::i;:::-;4556:63;;4511:118;4184:452;;;;;:::o;4642:809::-;4737:6;4745;4753;4761;4810:3;4798:9;4789:7;4785:23;4781:33;4778:2;;;4827:1;4824;4817:12;4778:2;4870:1;4895:53;4940:7;4931:6;4920:9;4916:22;4895:53;:::i;:::-;4885:63;;4841:117;4997:2;5023:53;5068:7;5059:6;5048:9;5044:22;5023:53;:::i;:::-;5013:63;;4968:118;5125:2;5151:53;5196:7;5187:6;5176:9;5172:22;5151:53;:::i;:::-;5141:63;;5096:118;5281:2;5270:9;5266:18;5253:32;5312:18;5304:6;5301:30;5298:2;;;5344:1;5341;5334:12;5298:2;5372:62;5426:7;5417:6;5406:9;5402:22;5372:62;:::i;:::-;5362:72;;5224:220;4768:683;;;;;;;:::o;5457:401::-;5522:6;5530;5579:2;5567:9;5558:7;5554:23;5550:32;5547:2;;;5595:1;5592;5585:12;5547:2;5638:1;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5609:117;5765:2;5791:50;5833:7;5824:6;5813:9;5809:22;5791:50;:::i;:::-;5781:60;;5736:115;5537:321;;;;;:::o;5864:407::-;5932:6;5940;5989:2;5977:9;5968:7;5964:23;5960:32;5957:2;;;6005:1;6002;5995:12;5957:2;6048:1;6073:53;6118:7;6109:6;6098:9;6094:22;6073:53;:::i;:::-;6063:63;;6019:117;6175:2;6201:53;6246:7;6237:6;6226:9;6222:22;6201:53;:::i;:::-;6191:63;;6146:118;5947:324;;;;;:::o;6277:425::-;6363:6;6371;6420:2;6408:9;6399:7;6395:23;6391:32;6388:2;;;6436:1;6433;6426:12;6388:2;6507:1;6496:9;6492:17;6479:31;6537:18;6529:6;6526:30;6523:2;;;6569:1;6566;6559:12;6523:2;6605:80;6677:7;6668:6;6657:9;6653:22;6605:80;:::i;:::-;6587:98;;;;6450:245;6378:324;;;;;:::o;6708:405::-;6792:6;6841:2;6829:9;6820:7;6816:23;6812:32;6809:2;;;6857:1;6854;6847:12;6809:2;6928:1;6917:9;6913:17;6900:31;6958:18;6950:6;6947:30;6944:2;;;6990:1;6987;6980:12;6944:2;7018:78;7088:7;7079:6;7068:9;7064:22;7018:78;:::i;:::-;7008:88;;6871:235;6799:314;;;;:::o;7119:256::-;7175:6;7224:2;7212:9;7203:7;7199:23;7195:32;7192:2;;;7240:1;7237;7230:12;7192:2;7283:1;7308:50;7350:7;7341:6;7330:9;7326:22;7308:50;:::i;:::-;7298:60;;7254:114;7182:193;;;;:::o;7381:260::-;7439:6;7488:2;7476:9;7467:7;7463:23;7459:32;7456:2;;;7504:1;7501;7494:12;7456:2;7547:1;7572:52;7616:7;7607:6;7596:9;7592:22;7572:52;:::i;:::-;7562:62;;7518:116;7446:195;;;;:::o;7647:282::-;7716:6;7765:2;7753:9;7744:7;7740:23;7736:32;7733:2;;;7781:1;7778;7771:12;7733:2;7824:1;7849:63;7904:7;7895:6;7884:9;7880:22;7849:63;:::i;:::-;7839:73;;7795:127;7723:206;;;;:::o;7935:375::-;8004:6;8053:2;8041:9;8032:7;8028:23;8024:32;8021:2;;;8069:1;8066;8059:12;8021:2;8140:1;8129:9;8125:17;8112:31;8170:18;8162:6;8159:30;8156:2;;;8202:1;8199;8192:12;8156:2;8230:63;8285:7;8276:6;8265:9;8261:22;8230:63;:::i;:::-;8220:73;;8083:220;8011:299;;;;:::o;8316:262::-;8375:6;8424:2;8412:9;8403:7;8399:23;8395:32;8392:2;;;8440:1;8437;8430:12;8392:2;8483:1;8508:53;8553:7;8544:6;8533:9;8529:22;8508:53;:::i;:::-;8498:63;;8454:117;8382:196;;;;:::o;8584:118::-;8671:24;8689:5;8671:24;:::i;:::-;8666:3;8659:37;8649:53;;:::o;8708:109::-;8789:21;8804:5;8789:21;:::i;:::-;8784:3;8777:34;8767:50;;:::o;8823:360::-;8909:3;8937:38;8969:5;8937:38;:::i;:::-;8991:70;9054:6;9049:3;8991:70;:::i;:::-;8984:77;;9070:52;9115:6;9110:3;9103:4;9096:5;9092:16;9070:52;:::i;:::-;9147:29;9169:6;9147:29;:::i;:::-;9142:3;9138:39;9131:46;;8913:270;;;;;:::o;9189:364::-;9277:3;9305:39;9338:5;9305:39;:::i;:::-;9360:71;9424:6;9419:3;9360:71;:::i;:::-;9353:78;;9440:52;9485:6;9480:3;9473:4;9466:5;9462:16;9440:52;:::i;:::-;9517:29;9539:6;9517:29;:::i;:::-;9512:3;9508:39;9501:46;;9281:272;;;;;:::o;9559:377::-;9665:3;9693:39;9726:5;9693:39;:::i;:::-;9748:89;9830:6;9825:3;9748:89;:::i;:::-;9741:96;;9846:52;9891:6;9886:3;9879:4;9872:5;9868:16;9846:52;:::i;:::-;9923:6;9918:3;9914:16;9907:23;;9669:267;;;;;:::o;9942:118::-;10029:24;10047:5;10029:24;:::i;:::-;10024:3;10017:37;10007:53;;:::o;10066:435::-;10246:3;10268:95;10359:3;10350:6;10268:95;:::i;:::-;10261:102;;10380:95;10471:3;10462:6;10380:95;:::i;:::-;10373:102;;10492:3;10485:10;;10250:251;;;;;:::o;10507:222::-;10600:4;10638:2;10627:9;10623:18;10615:26;;10651:71;10719:1;10708:9;10704:17;10695:6;10651:71;:::i;:::-;10605:124;;;;:::o;10735:640::-;10930:4;10968:3;10957:9;10953:19;10945:27;;10982:71;11050:1;11039:9;11035:17;11026:6;10982:71;:::i;:::-;11063:72;11131:2;11120:9;11116:18;11107:6;11063:72;:::i;:::-;11145;11213:2;11202:9;11198:18;11189:6;11145:72;:::i;:::-;11264:9;11258:4;11254:20;11249:2;11238:9;11234:18;11227:48;11292:76;11363:4;11354:6;11292:76;:::i;:::-;11284:84;;10935:440;;;;;;;:::o;11381:210::-;11468:4;11506:2;11495:9;11491:18;11483:26;;11519:65;11581:1;11570:9;11566:17;11557:6;11519:65;:::i;:::-;11473:118;;;;:::o;11597:313::-;11710:4;11748:2;11737:9;11733:18;11725:26;;11797:9;11791:4;11787:20;11783:1;11772:9;11768:17;11761:47;11825:78;11898:4;11889:6;11825:78;:::i;:::-;11817:86;;11715:195;;;;:::o;11916:222::-;12009:4;12047:2;12036:9;12032:18;12024:26;;12060:71;12128:1;12117:9;12113:17;12104:6;12060:71;:::i;:::-;12014:124;;;;:::o;12144:129::-;12178:6;12205:20;;:::i;:::-;12195:30;;12234:33;12262:4;12254:6;12234:33;:::i;:::-;12185:88;;;:::o;12279:75::-;12312:6;12345:2;12339:9;12329:19;;12319:35;:::o;12360:311::-;12437:4;12527:18;12519:6;12516:30;12513:2;;;12549:18;;:::i;:::-;12513:2;12599:4;12591:6;12587:17;12579:25;;12659:4;12653;12649:15;12641:23;;12442:229;;;:::o;12677:307::-;12738:4;12828:18;12820:6;12817:30;12814:2;;;12850:18;;:::i;:::-;12814:2;12888:29;12910:6;12888:29;:::i;:::-;12880:37;;12972:4;12966;12962:15;12954:23;;12743:241;;;:::o;12990:308::-;13052:4;13142:18;13134:6;13131:30;13128:2;;;13164:18;;:::i;:::-;13128:2;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;13057:241;;;:::o;13304:98::-;13355:6;13389:5;13383:12;13373:22;;13362:40;;;:::o;13408:99::-;13460:6;13494:5;13488:12;13478:22;;13467:40;;;:::o;13513:168::-;13596:11;13630:6;13625:3;13618:19;13670:4;13665:3;13661:14;13646:29;;13608:73;;;;:::o;13687:169::-;13771:11;13805:6;13800:3;13793:19;13845:4;13840:3;13836:14;13821:29;;13783:73;;;;:::o;13862:148::-;13964:11;14001:3;13986:18;;13976:34;;;;:::o;14016:305::-;14056:3;14075:20;14093:1;14075:20;:::i;:::-;14070:25;;14109:20;14127:1;14109:20;:::i;:::-;14104:25;;14263:1;14195:66;14191:74;14188:1;14185:81;14182:2;;;14269:18;;:::i;:::-;14182:2;14313:1;14310;14306:9;14299:16;;14060:261;;;;:::o;14327:185::-;14367:1;14384:20;14402:1;14384:20;:::i;:::-;14379:25;;14418:20;14436:1;14418:20;:::i;:::-;14413:25;;14457:1;14447:2;;14462:18;;:::i;:::-;14447:2;14504:1;14501;14497:9;14492:14;;14369:143;;;;:::o;14518:191::-;14558:4;14578:20;14596:1;14578:20;:::i;:::-;14573:25;;14612:20;14630:1;14612:20;:::i;:::-;14607:25;;14651:1;14648;14645:8;14642:2;;;14656:18;;:::i;:::-;14642:2;14701:1;14698;14694:9;14686:17;;14563:146;;;;:::o;14715:96::-;14752:7;14781:24;14799:5;14781:24;:::i;:::-;14770:35;;14760:51;;;:::o;14817:90::-;14851:7;14894:5;14887:13;14880:21;14869:32;;14859:48;;;:::o;14913:149::-;14949:7;14989:66;14982:5;14978:78;14967:89;;14957:105;;;:::o;15068:126::-;15105:7;15145:42;15138:5;15134:54;15123:65;;15113:81;;;:::o;15200:77::-;15237:7;15266:5;15255:16;;15245:32;;;:::o;15283:86::-;15318:7;15358:4;15351:5;15347:16;15336:27;;15326:43;;;:::o;15375:154::-;15459:6;15454:3;15449;15436:30;15521:1;15512:6;15507:3;15503:16;15496:27;15426:103;;;:::o;15535:307::-;15603:1;15613:113;15627:6;15624:1;15621:13;15613:113;;;15712:1;15707:3;15703:11;15697:18;15693:1;15688:3;15684:11;15677:39;15649:2;15646:1;15642:10;15637:15;;15613:113;;;15744:6;15741:1;15738:13;15735:2;;;15824:1;15815:6;15810:3;15806:16;15799:27;15735:2;15584:258;;;;:::o;15848:320::-;15892:6;15929:1;15923:4;15919:12;15909:22;;15976:1;15970:4;15966:12;15997:18;15987:2;;16053:4;16045:6;16041:17;16031:27;;15987:2;16115;16107:6;16104:14;16084:18;16081:38;16078:2;;;16134:18;;:::i;:::-;16078:2;15899:269;;;;:::o;16174:281::-;16257:27;16279:4;16257:27;:::i;:::-;16249:6;16245:40;16387:6;16375:10;16372:22;16351:18;16339:10;16336:34;16333:62;16330:2;;;16398:18;;:::i;:::-;16330:2;16438:10;16434:2;16427:22;16217:238;;;:::o;16461:233::-;16500:3;16523:24;16541:5;16523:24;:::i;:::-;16514:33;;16569:66;16562:5;16559:77;16556:2;;;16639:18;;:::i;:::-;16556:2;16686:1;16679:5;16675:13;16668:20;;16504:190;;;:::o;16700:167::-;16737:3;16760:22;16776:5;16760:22;:::i;:::-;16751:31;;16804:4;16797:5;16794:15;16791:2;;;16812:18;;:::i;:::-;16791:2;16859:1;16852:5;16848:13;16841:20;;16741:126;;;:::o;16873:176::-;16905:1;16922:20;16940:1;16922:20;:::i;:::-;16917:25;;16956:20;16974:1;16956:20;:::i;:::-;16951:25;;16995:1;16985:2;;17000:18;;:::i;:::-;16985:2;17041:1;17038;17034:9;17029:14;;16907:142;;;;:::o;17055:180::-;17103:77;17100:1;17093:88;17200:4;17197:1;17190:15;17224:4;17221:1;17214:15;17241:180;17289:77;17286:1;17279:88;17386:4;17383:1;17376:15;17410:4;17407:1;17400:15;17427:180;17475:77;17472:1;17465:88;17572:4;17569:1;17562:15;17596:4;17593:1;17586:15;17613:180;17661:77;17658:1;17651:88;17758:4;17755:1;17748:15;17782:4;17779:1;17772:15;17799:102;17840:6;17891:2;17887:7;17882:2;17875:5;17871:14;17867:28;17857:38;;17847:54;;;:::o;17907:122::-;17980:24;17998:5;17980:24;:::i;:::-;17973:5;17970:35;17960:2;;18019:1;18016;18009:12;17960:2;17950:79;:::o;18035:116::-;18105:21;18120:5;18105:21;:::i;:::-;18098:5;18095:32;18085:2;;18141:1;18138;18131:12;18085:2;18075:76;:::o;18157:120::-;18229:23;18246:5;18229:23;:::i;:::-;18222:5;18219:34;18209:2;;18267:1;18264;18257:12;18209:2;18199:78;:::o;18283:122::-;18356:24;18374:5;18356:24;:::i;:::-;18349:5;18346:35;18336:2;;18395:1;18392;18385:12;18336:2;18326:79;:::o
Swarm Source
ipfs://427b7d560962685fd149d63fea338aeaf573a4c37430c31445ec80b4d5dc986f
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.