ERC-721
NFT
Overview
Max Total Supply
7,777 GUNSLINGERS
Holders
3,259
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 GUNSLINGERSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GUNSLINGERS
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-07 */ // SPDX-License-Identifier: MIT 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: node_modules\openzeppelin-solidity\contracts\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: node_modules\openzeppelin-solidity\contracts\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: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-GUNSLINGERSble 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: node_modules\openzeppelin-solidity\contracts\utils\Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: node_modules\openzeppelin-solidity\contracts\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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: node_modules\openzeppelin-solidity\contracts\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: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-GUNSLINGERSble Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. 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 = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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( "ERC721: transfer to non ERC721Receiver implementer" ); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-GUNSLINGERSble Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts\lib\Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); { counter._value = value - 1; } } } // File: openzeppelin-solidity\contracts\access\Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.8.0; contract GUNSLINGERS is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; uint256 public constant GUNSLINGERS_PUBLIC = 7777; uint256 public constant GUNSLINGERS_MAX = GUNSLINGERS_PUBLIC; uint256 public constant PURCHASE_LIMIT = 7; uint256 public constant PRICE = 40_000_000_000_000_000; // 0.04 ETH uint256 public allowListMaxMint = 7; string private _contractURI = ""; string private _tokenBaseURI = ""; bool private _isActive = false; bool public isAllowListActive = false; mapping(address => bool) private _allowList; mapping(address => uint256) private _allowListClaimed; Counters.Counter private _publicGUNSLINGERS; constructor() ERC721("GUNSLINGERS", "GUNSLINGERS") {} function setActive(bool isActive) external onlyOwner { _isActive = isActive; } function setContractURI(string memory URI) external onlyOwner { _contractURI = URI; } function setBaseURI(string memory URI) external onlyOwner { _tokenBaseURI = URI; } // minting function minting(address to, uint256 numberOfTokens) external payable onlyOwner { require( _publicGUNSLINGERS.current() < GUNSLINGERS_PUBLIC, "Purchase would exceed GUNSLINGERS_PUBLIC" ); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = _publicGUNSLINGERS.current(); if (_publicGUNSLINGERS.current() < GUNSLINGERS_PUBLIC) { _publicGUNSLINGERS.increment(); _safeMint(to, tokenId); } } } function setIsAllowListActive(bool _isAllowListActive) external onlyOwner { isAllowListActive = _isAllowListActive; } function setAllowListMaxMint(uint256 maxMint) external onlyOwner { allowListMaxMint = maxMint; } function addToAllowList(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add the null address"); _allowList[addresses[i]] = true; /** * @dev We don't want to reset _allowListClaimed count * if we try to add someone more than once. */ _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0; } } function allowListClaimedBy(address owner) external view returns (uint256){ require(owner != address(0), "Zero address not on Allow List"); return _allowListClaimed[owner]; } function onAllowList(address addr) external view returns (bool) { return _allowList[addr]; } function removeFromAllowList(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add the null address"); /// @dev We don't want to reset possible _allowListClaimed numbers. _allowList[addresses[i]] = false; } } function purchaseAllowList(uint256 numberOfTokens) external payable { require( numberOfTokens <= PURCHASE_LIMIT, "Can only mint up to 1 token" ); require(isAllowListActive, "Allow List is not active"); require(_allowList[msg.sender], "You are not on the Allow List"); require( _publicGUNSLINGERS.current() < GUNSLINGERS_PUBLIC, "Purchase would exceed max" ); require(numberOfTokens <= allowListMaxMint, "Cannot purchase this many tokens"); require(_allowListClaimed[msg.sender] + numberOfTokens <= allowListMaxMint, "Purchase exceeds max allowed"); require(PRICE * numberOfTokens <= msg.value, "ETH amount is not sufficient"); require( _publicGUNSLINGERS.current() < GUNSLINGERS_PUBLIC, "Purchase would exceed GUNSLINGERS_PUBLIC" ); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = _publicGUNSLINGERS.current(); if (_publicGUNSLINGERS.current() < GUNSLINGERS_PUBLIC) { _publicGUNSLINGERS.increment(); _safeMint(msg.sender, tokenId); } } _allowList[msg.sender] = false; } function purchase(uint256 numberOfTokens) external payable { require(_isActive, "Contract is not active"); require( numberOfTokens <= PURCHASE_LIMIT, "Can only mint up to 7 tokens" ); require( _publicGUNSLINGERS.current() < GUNSLINGERS_PUBLIC, "Purchase would exceed GUNSLINGERS_PUBLIC" ); require( PRICE * numberOfTokens <= msg.value, "ETH amount is not sufficient" ); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = _publicGUNSLINGERS.current(); if (_publicGUNSLINGERS.current() < GUNSLINGERS_PUBLIC) { _publicGUNSLINGERS.increment(); _safeMint(msg.sender, tokenId); } } } function contractURI() public view returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Token does not exist"); return string(abi.encodePacked(_tokenBaseURI, tokenId.toString())); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GUNSLINGERS_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GUNSLINGERS_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"minting","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6007600b5560a06040819052600060808190526200002091600c9162000124565b506040805160208101918290526000908190526200004191600d9162000124565b50600e805461ffff191690553480156200005a57600080fd5b50604080518082018252600b8082526a47554e534c494e4745525360a81b602080840182815285518087019096529285528401528151919291620000a19160009162000124565b508051620000b790600190602084019062000124565b5050506000620000cc6200012060201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000207565b3390565b8280546200013290620001ca565b90600052602060002090601f016020900481019282620001565760008555620001a1565b82601f106200017157805160ff1916838001178555620001a1565b82800160010185558215620001a1579182015b82811115620001a157825182559160200191906001019062000184565b50620001af929150620001b3565b5090565b5b80821115620001af5760008155600101620001b4565b600281046001821680620001df57607f821691505b602082108114156200020157634e487b7160e01b600052602260045260246000fd5b50919050565b612cb180620002176000396000f3fe60806040526004361061022f5760003560e01c80637263cfe21161012e578063acec338a116100ab578063e8a3d4851161006f578063e8a3d4851461060d578063e985e9c514610622578063efef39a114610642578063f23347f514610655578063f2fde38b146106685761022f565b8063acec338a14610598578063b88d4fde146105b8578063c87b56dd146105d8578063ca28793414610583578063d75e6110146105f85761022f565b8063938e3d7b116100f2578063938e3d7b1461050e57806395d89b411461052e578063a22cb46514610543578063a51312c814610563578063aa7272fe146105835761022f565b80637263cfe21461048f5780637a6685f1146104af5780637f44ab2f146104cf5780638d859f3e146104e45780638da5cb5b146104f95761022f565b80632f745c59116101bc57806355f804b31161018057806355f804b3146103fa5780636352211e1461041a57806370a082311461043a578063715018a61461045a578063718bc4af1461046f5761022f565b80632f745c59146103655780633a065892146103855780633ccfd60b146103a557806342842e0e146103ba5780634f6ccce7146103da5761022f565b8063095ea7b311610203578063095ea7b3146102e657806318160ddd14610308578063233ebc8b1461031d57806323b872dd1461033057806329fc6bae146103505761022f565b806208ffdd1461023457806301ffc9a71461026a57806306fdde0314610297578063081812fc146102b9575b600080fd5b34801561024057600080fd5b5061025461024f366004611fc6565b610688565b6040516102619190612b13565b60405180910390f35b34801561027657600080fd5b5061028a6102853660046121a8565b6106d9565b604051610261919061237d565b3480156102a357600080fd5b506102ac610704565b6040516102619190612388565b3480156102c557600080fd5b506102d96102d4366004612226565b610796565b604051610261919061232c565b3480156102f257600080fd5b506103066103013660046120f6565b6107d9565b005b34801561031457600080fd5b50610254610871565b61030661032b3660046120f6565b610877565b34801561033c57600080fd5b5061030661034b366004612019565b610933565b34801561035c57600080fd5b5061028a61096b565b34801561037157600080fd5b506102546103803660046120f6565b610979565b34801561039157600080fd5b5061028a6103a0366004611fc6565b6109cb565b3480156103b157600080fd5b506103066109e9565b3480156103c657600080fd5b506103066103d5366004612019565b610a5b565b3480156103e657600080fd5b506102546103f5366004612226565b610a76565b34801561040657600080fd5b506103066104153660046121e0565b610ad1565b34801561042657600080fd5b506102d9610435366004612226565b610b23565b34801561044657600080fd5b50610254610455366004611fc6565b610b58565b34801561046657600080fd5b50610306610b9c565b34801561047b57600080fd5b5061030661048a36600461218e565b610c25565b34801561049b57600080fd5b506103066104aa36600461211f565b610c7e565b3480156104bb57600080fd5b506103066104ca366004612226565b610e5f565b3480156104db57600080fd5b50610254610ea3565b3480156104f057600080fd5b50610254610ea9565b34801561050557600080fd5b506102d9610eb4565b34801561051a57600080fd5b506103066105293660046121e0565b610ec3565b34801561053a57600080fd5b506102ac610f15565b34801561054f57600080fd5b5061030661055e3660046120cd565b610f24565b34801561056f57600080fd5b5061030661057e36600461211f565b610ff2565b34801561058f57600080fd5b5061025461110f565b3480156105a457600080fd5b506103066105b336600461218e565b611115565b3480156105c457600080fd5b506103066105d3366004612054565b611167565b3480156105e457600080fd5b506102ac6105f3366004612226565b6111a6565b34801561060457600080fd5b506102546111ff565b34801561061957600080fd5b506102ac611204565b34801561062e57600080fd5b5061028a61063d366004611fe7565b611213565b610306610650366004612226565b611241565b610306610663366004612226565b611331565b34801561067457600080fd5b50610306610683366004611fc6565b6114f8565b60006001600160a01b0382166106b95760405162461bcd60e51b81526004016106b0906128a4565b60405180910390fd5b506001600160a01b0381166000908152601060205260409020545b919050565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe826115b9565b92915050565b60606000805461071390612bb6565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612bb6565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a1826115f9565b6107bd5760405162461bcd60e51b81526004016106b090612823565b506000908152600460205260409020546001600160a01b031690565b60006107e482610b23565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b81526004016106b09061295b565b806001600160a01b031661082a611616565b6001600160a01b0316148061084657506108468161063d611616565b6108625760405162461bcd60e51b81526004016106b0906126ce565b61086c838361161a565b505050565b60085490565b61087f611616565b6001600160a01b0316610890610eb4565b6001600160a01b0316146108b65760405162461bcd60e51b81526004016106b09061286f565b611e616108c36011611688565b106108e05760405162461bcd60e51b81526004016106b09061264f565b60005b8181101561086c5760006108f76011611688565b9050611e616109066011611688565b101561092057610916601161168c565b61092084826116a9565b508061092b81612bf1565b9150506108e3565b61094461093e611616565b826116c3565b6109605760405162461bcd60e51b81526004016106b0906129d3565b61086c838383611748565b600e54610100900460ff1681565b600061098483610b58565b82106109a25760405162461bcd60e51b81526004016106b090612409565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03166000908152600f602052604090205460ff1690565b6109f1611616565b6001600160a01b0316610a02610eb4565b6001600160a01b031614610a285760405162461bcd60e51b81526004016106b09061286f565b6040514790339082156108fc029083906000818181858888f19350505050158015610a57573d6000803e3d6000fd5b5050565b61086c83838360405180602001604052806000815250611167565b6000610a80610871565b8210610a9e5760405162461bcd60e51b81526004016106b090612a24565b60088281548110610abf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ad9611616565b6001600160a01b0316610aea610eb4565b6001600160a01b031614610b105760405162461bcd60e51b81526004016106b09061286f565b8051610a5790600d906020840190611e96565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b81526004016106b090612775565b60006001600160a01b038216610b805760405162461bcd60e51b81526004016106b09061272b565b506001600160a01b031660009081526003602052604090205490565b610ba4611616565b6001600160a01b0316610bb5610eb4565b6001600160a01b031614610bdb5760405162461bcd60e51b81526004016106b09061286f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610c2d611616565b6001600160a01b0316610c3e610eb4565b6001600160a01b031614610c645760405162461bcd60e51b81526004016106b09061286f565b600e80549115156101000261ff0019909216919091179055565b610c86611616565b6001600160a01b0316610c97610eb4565b6001600160a01b031614610cbd5760405162461bcd60e51b81526004016106b09061286f565b60005b8181101561086c576000838383818110610cea57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610cff9190611fc6565b6001600160a01b03161415610d265760405162461bcd60e51b81526004016106b0906128db565b6001600f6000858585818110610d4c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d619190611fc6565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601081858585818110610daf57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dc49190611fc6565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610df1576000610e4c565b60106000848484818110610e1557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e2a9190611fc6565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610e5781612bf1565b915050610cc0565b610e67611616565b6001600160a01b0316610e78610eb4565b6001600160a01b031614610e9e5760405162461bcd60e51b81526004016106b09061286f565b600b55565b600b5481565b668e1bc9bf04000081565b600a546001600160a01b031690565b610ecb611616565b6001600160a01b0316610edc610eb4565b6001600160a01b031614610f025760405162461bcd60e51b81526004016106b09061286f565b8051610a5790600c906020840190611e96565b60606001805461071390612bb6565b610f2c611616565b6001600160a01b0316826001600160a01b03161415610f5d5760405162461bcd60e51b81526004016106b090612567565b8060056000610f6a611616565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fae611616565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe6919061237d565b60405180910390a35050565b610ffa611616565b6001600160a01b031661100b610eb4565b6001600160a01b0316146110315760405162461bcd60e51b81526004016106b09061286f565b60005b8181101561086c57600083838381811061105e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110739190611fc6565b6001600160a01b0316141561109a5760405162461bcd60e51b81526004016106b0906128db565b6000600f60008585858181106110c057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110d59190611fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061110781612bf1565b915050611034565b611e6181565b61111d611616565b6001600160a01b031661112e610eb4565b6001600160a01b0316146111545760405162461bcd60e51b81526004016106b09061286f565b600e805460ff1916911515919091179055565b611178611172611616565b836116c3565b6111945760405162461bcd60e51b81526004016106b0906129d3565b6111a084848484611875565b50505050565b60606111b1826115f9565b6111cd5760405162461bcd60e51b81526004016106b09061259e565b600d6111d8836118a8565b6040516020016111e9929190612286565b6040516020818303038152906040529050919050565b600781565b6060600c805461071390612bb6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e5460ff166112635760405162461bcd60e51b81526004016106b0906127f3565b60078111156112845760405162461bcd60e51b81526004016106b09061299c565b611e616112916011611688565b106112ae5760405162461bcd60e51b81526004016106b09061264f565b346112c082668e1bc9bf040000612b54565b11156112de5760405162461bcd60e51b81526004016106b0906125cc565b60005b81811015610a575760006112f56011611688565b9050611e616113046011611688565b101561131e57611314601161168c565b61131e33826116a9565b508061132981612bf1565b9150506112e1565b60078111156113525760405162461bcd60e51b81526004016106b090612697565b600e54610100900460ff166113795760405162461bcd60e51b81526004016106b09061239b565b336000908152600f602052604090205460ff166113a85760405162461bcd60e51b81526004016106b0906123d2565b611e616113b56011611688565b106113d25760405162461bcd60e51b81526004016106b090612a70565b600b548111156113f45760405162461bcd60e51b81526004016106b090612ade565b600b5433600090815260106020526040902054611412908390612b28565b11156114305760405162461bcd60e51b81526004016106b090612aa7565b3461144282668e1bc9bf040000612b54565b11156114605760405162461bcd60e51b81526004016106b0906125cc565b611e6161146d6011611688565b1061148a5760405162461bcd60e51b81526004016106b09061264f565b60005b818110156114dd5760006114a16011611688565b9050611e616114b06011611688565b10156114ca576114c0601161168c565b6114ca33826116a9565b50806114d581612bf1565b91505061148d565b5050336000908152600f60205260409020805460ff19169055565b611500611616565b6001600160a01b0316611511610eb4565b6001600160a01b0316146115375760405162461bcd60e51b81526004016106b09061286f565b6001600160a01b03811661155d5760405162461bcd60e51b81526004016106b0906124a6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806115ea57506001600160e01b03198216635b5e139f60e01b145b806106fe57506106fe826119c3565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061164f82610b23565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60018160000160008282546116a19190612b28565b909155505050565b610a578282604051806020016040528060008152506119dc565b60006116ce826115f9565b6116ea5760405162461bcd60e51b81526004016106b090612603565b60006116f583610b23565b9050806001600160a01b0316846001600160a01b031614806117305750836001600160a01b031661172584610796565b6001600160a01b0316145b8061174057506117408185611213565b949350505050565b826001600160a01b031661175b82610b23565b6001600160a01b0316146117815760405162461bcd60e51b81526004016106b090612912565b6001600160a01b0382166117a75760405162461bcd60e51b81526004016106b090612523565b6117b2838383611a0f565b6117bd60008261161a565b6001600160a01b03831660009081526003602052604081208054600192906117e6908490612b73565b90915550506001600160a01b0382166000908152600360205260408120805460019290611814908490612b28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611880848484611748565b61188c84848484611a98565b6111a05760405162461bcd60e51b81526004016106b090612454565b6060816118cd57506040805180820190915260018152600360fc1b60208201526106d4565b8160005b81156118f757806118e181612bf1565b91506118f09050600a83612b40565b91506118d1565b60008167ffffffffffffffff81111561192057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561194a576020820181803683370190505b5090505b84156117405761195f600183612b73565b915061196c600a86612c0c565b611977906030612b28565b60f81b81838151811061199a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119bc600a86612b40565b945061194e565b6001600160e01b031981166301ffc9a760e01b14919050565b6119e68383611bb3565b6119f36000848484611a98565b61086c5760405162461bcd60e51b81526004016106b090612454565b611a1a83838361086c565b6001600160a01b038316611a3657611a3181611c92565b611a59565b816001600160a01b0316836001600160a01b031614611a5957611a598382611cd6565b6001600160a01b038216611a7557611a7081611d73565b61086c565b826001600160a01b0316826001600160a01b03161461086c5761086c8282611e4c565b6000611aac846001600160a01b0316611e90565b15611ba857836001600160a01b031663150b7a02611ac8611616565b8786866040518563ffffffff1660e01b8152600401611aea9493929190612340565b602060405180830381600087803b158015611b0457600080fd5b505af1925050508015611b34575060408051601f3d908101601f19168201909252611b31918101906121c4565b60015b611b8e573d808015611b62576040519150601f19603f3d011682016040523d82523d6000602084013e611b67565b606091505b508051611b865760405162461bcd60e51b81526004016106b090612454565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611740565b506001949350505050565b6001600160a01b038216611bd95760405162461bcd60e51b81526004016106b0906127be565b611be2816115f9565b15611bff5760405162461bcd60e51b81526004016106b0906124ec565b611c0b60008383611a0f565b6001600160a01b0382166000908152600360205260408120805460019290611c34908490612b28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611ce384610b58565b611ced9190612b73565b600083815260076020526040902054909150808214611d40576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8590600190612b73565b60008381526009602052604081205460088054939450909284908110611dbb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611dea57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e5783610b58565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611ea290612bb6565b90600052602060002090601f016020900481019282611ec45760008555611f0a565b82601f10611edd57805160ff1916838001178555611f0a565b82800160010185558215611f0a579182015b82811115611f0a578251825591602001919060010190611eef565b50611f16929150611f1a565b5090565b5b80821115611f165760008155600101611f1b565b600067ffffffffffffffff80841115611f4a57611f4a612c4c565b604051601f8501601f191681016020018281118282101715611f6e57611f6e612c4c565b604052848152915081838501861015611f8657600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b803580151581146106d457600080fd5b600060208284031215611fd7578081fd5b611fe082611f9f565b9392505050565b60008060408385031215611ff9578081fd5b61200283611f9f565b915061201060208401611f9f565b90509250929050565b60008060006060848603121561202d578081fd5b61203684611f9f565b925061204460208501611f9f565b9150604084013590509250925092565b60008060008060808587031215612069578081fd5b61207285611f9f565b935061208060208601611f9f565b925060408501359150606085013567ffffffffffffffff8111156120a2578182fd5b8501601f810187136120b2578182fd5b6120c187823560208401611f2f565b91505092959194509250565b600080604083850312156120df578182fd5b6120e883611f9f565b915061201060208401611fb6565b60008060408385031215612108578182fd5b61211183611f9f565b946020939093013593505050565b60008060208385031215612131578182fd5b823567ffffffffffffffff80821115612148578384fd5b818501915085601f83011261215b578384fd5b813581811115612169578485fd5b866020808302850101111561217c578485fd5b60209290920196919550909350505050565b60006020828403121561219f578081fd5b611fe082611fb6565b6000602082840312156121b9578081fd5b8135611fe081612c62565b6000602082840312156121d5578081fd5b8151611fe081612c62565b6000602082840312156121f1578081fd5b813567ffffffffffffffff811115612207578182fd5b8201601f81018413612217578182fd5b61174084823560208401611f2f565b600060208284031215612237578081fd5b5035919050565b60008151808452612256816020860160208601612b8a565b601f01601f19169290920160200192915050565b6000815161227c818560208601612b8a565b9290920192915050565b82546000908190600281046001808316806122a257607f831692505b60208084108214156122c257634e487b7160e01b87526022600452602487fd5b8180156122d657600181146122e757612313565b60ff19861689528489019650612313565b6122f08b612b1c565b885b8681101561230b5781548b8201529085019083016122f2565b505084890196505b505050505050612323818561226a565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123739083018461223e565b9695505050505050565b901515815260200190565b600060208252611fe0602083018461223e565b60208082526018908201527f416c6c6f77204c697374206973206e6f74206163746976650000000000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526028908201527f507572636861736520776f756c64206578636565642047554e534c494e474552604082015267535f5055424c494360c01b606082015260800190565b6020808252601b908201527f43616e206f6e6c79206d696e7420757020746f203120746f6b656e0000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f43616e206f6e6c79206d696e7420757020746f203720746f6b656e7300000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526019908201527f507572636861736520776f756c6420657863656564206d617800000000000000604082015260600190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612b3b57612b3b612c20565b500190565b600082612b4f57612b4f612c36565b500490565b6000816000190483118215151615612b6e57612b6e612c20565b500290565b600082821015612b8557612b85612c20565b500390565b60005b83811015612ba5578181015183820152602001612b8d565b838111156111a05750506000910152565b600281046001821680612bca57607f821691505b60208210811415612beb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0557612c05612c20565b5060010190565b600082612c1b57612c1b612c36565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c7857600080fd5b5056fea2646970667358221220d8fe919b042a905e5f90fcf7874dc48e2dae4b9803943c3c77f1335a7d8a321164736f6c63430008000033
Deployed Bytecode
0x60806040526004361061022f5760003560e01c80637263cfe21161012e578063acec338a116100ab578063e8a3d4851161006f578063e8a3d4851461060d578063e985e9c514610622578063efef39a114610642578063f23347f514610655578063f2fde38b146106685761022f565b8063acec338a14610598578063b88d4fde146105b8578063c87b56dd146105d8578063ca28793414610583578063d75e6110146105f85761022f565b8063938e3d7b116100f2578063938e3d7b1461050e57806395d89b411461052e578063a22cb46514610543578063a51312c814610563578063aa7272fe146105835761022f565b80637263cfe21461048f5780637a6685f1146104af5780637f44ab2f146104cf5780638d859f3e146104e45780638da5cb5b146104f95761022f565b80632f745c59116101bc57806355f804b31161018057806355f804b3146103fa5780636352211e1461041a57806370a082311461043a578063715018a61461045a578063718bc4af1461046f5761022f565b80632f745c59146103655780633a065892146103855780633ccfd60b146103a557806342842e0e146103ba5780634f6ccce7146103da5761022f565b8063095ea7b311610203578063095ea7b3146102e657806318160ddd14610308578063233ebc8b1461031d57806323b872dd1461033057806329fc6bae146103505761022f565b806208ffdd1461023457806301ffc9a71461026a57806306fdde0314610297578063081812fc146102b9575b600080fd5b34801561024057600080fd5b5061025461024f366004611fc6565b610688565b6040516102619190612b13565b60405180910390f35b34801561027657600080fd5b5061028a6102853660046121a8565b6106d9565b604051610261919061237d565b3480156102a357600080fd5b506102ac610704565b6040516102619190612388565b3480156102c557600080fd5b506102d96102d4366004612226565b610796565b604051610261919061232c565b3480156102f257600080fd5b506103066103013660046120f6565b6107d9565b005b34801561031457600080fd5b50610254610871565b61030661032b3660046120f6565b610877565b34801561033c57600080fd5b5061030661034b366004612019565b610933565b34801561035c57600080fd5b5061028a61096b565b34801561037157600080fd5b506102546103803660046120f6565b610979565b34801561039157600080fd5b5061028a6103a0366004611fc6565b6109cb565b3480156103b157600080fd5b506103066109e9565b3480156103c657600080fd5b506103066103d5366004612019565b610a5b565b3480156103e657600080fd5b506102546103f5366004612226565b610a76565b34801561040657600080fd5b506103066104153660046121e0565b610ad1565b34801561042657600080fd5b506102d9610435366004612226565b610b23565b34801561044657600080fd5b50610254610455366004611fc6565b610b58565b34801561046657600080fd5b50610306610b9c565b34801561047b57600080fd5b5061030661048a36600461218e565b610c25565b34801561049b57600080fd5b506103066104aa36600461211f565b610c7e565b3480156104bb57600080fd5b506103066104ca366004612226565b610e5f565b3480156104db57600080fd5b50610254610ea3565b3480156104f057600080fd5b50610254610ea9565b34801561050557600080fd5b506102d9610eb4565b34801561051a57600080fd5b506103066105293660046121e0565b610ec3565b34801561053a57600080fd5b506102ac610f15565b34801561054f57600080fd5b5061030661055e3660046120cd565b610f24565b34801561056f57600080fd5b5061030661057e36600461211f565b610ff2565b34801561058f57600080fd5b5061025461110f565b3480156105a457600080fd5b506103066105b336600461218e565b611115565b3480156105c457600080fd5b506103066105d3366004612054565b611167565b3480156105e457600080fd5b506102ac6105f3366004612226565b6111a6565b34801561060457600080fd5b506102546111ff565b34801561061957600080fd5b506102ac611204565b34801561062e57600080fd5b5061028a61063d366004611fe7565b611213565b610306610650366004612226565b611241565b610306610663366004612226565b611331565b34801561067457600080fd5b50610306610683366004611fc6565b6114f8565b60006001600160a01b0382166106b95760405162461bcd60e51b81526004016106b0906128a4565b60405180910390fd5b506001600160a01b0381166000908152601060205260409020545b919050565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe826115b9565b92915050565b60606000805461071390612bb6565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612bb6565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a1826115f9565b6107bd5760405162461bcd60e51b81526004016106b090612823565b506000908152600460205260409020546001600160a01b031690565b60006107e482610b23565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b81526004016106b09061295b565b806001600160a01b031661082a611616565b6001600160a01b0316148061084657506108468161063d611616565b6108625760405162461bcd60e51b81526004016106b0906126ce565b61086c838361161a565b505050565b60085490565b61087f611616565b6001600160a01b0316610890610eb4565b6001600160a01b0316146108b65760405162461bcd60e51b81526004016106b09061286f565b611e616108c36011611688565b106108e05760405162461bcd60e51b81526004016106b09061264f565b60005b8181101561086c5760006108f76011611688565b9050611e616109066011611688565b101561092057610916601161168c565b61092084826116a9565b508061092b81612bf1565b9150506108e3565b61094461093e611616565b826116c3565b6109605760405162461bcd60e51b81526004016106b0906129d3565b61086c838383611748565b600e54610100900460ff1681565b600061098483610b58565b82106109a25760405162461bcd60e51b81526004016106b090612409565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03166000908152600f602052604090205460ff1690565b6109f1611616565b6001600160a01b0316610a02610eb4565b6001600160a01b031614610a285760405162461bcd60e51b81526004016106b09061286f565b6040514790339082156108fc029083906000818181858888f19350505050158015610a57573d6000803e3d6000fd5b5050565b61086c83838360405180602001604052806000815250611167565b6000610a80610871565b8210610a9e5760405162461bcd60e51b81526004016106b090612a24565b60088281548110610abf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ad9611616565b6001600160a01b0316610aea610eb4565b6001600160a01b031614610b105760405162461bcd60e51b81526004016106b09061286f565b8051610a5790600d906020840190611e96565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b81526004016106b090612775565b60006001600160a01b038216610b805760405162461bcd60e51b81526004016106b09061272b565b506001600160a01b031660009081526003602052604090205490565b610ba4611616565b6001600160a01b0316610bb5610eb4565b6001600160a01b031614610bdb5760405162461bcd60e51b81526004016106b09061286f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610c2d611616565b6001600160a01b0316610c3e610eb4565b6001600160a01b031614610c645760405162461bcd60e51b81526004016106b09061286f565b600e80549115156101000261ff0019909216919091179055565b610c86611616565b6001600160a01b0316610c97610eb4565b6001600160a01b031614610cbd5760405162461bcd60e51b81526004016106b09061286f565b60005b8181101561086c576000838383818110610cea57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610cff9190611fc6565b6001600160a01b03161415610d265760405162461bcd60e51b81526004016106b0906128db565b6001600f6000858585818110610d4c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d619190611fc6565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601081858585818110610daf57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dc49190611fc6565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610df1576000610e4c565b60106000848484818110610e1557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e2a9190611fc6565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610e5781612bf1565b915050610cc0565b610e67611616565b6001600160a01b0316610e78610eb4565b6001600160a01b031614610e9e5760405162461bcd60e51b81526004016106b09061286f565b600b55565b600b5481565b668e1bc9bf04000081565b600a546001600160a01b031690565b610ecb611616565b6001600160a01b0316610edc610eb4565b6001600160a01b031614610f025760405162461bcd60e51b81526004016106b09061286f565b8051610a5790600c906020840190611e96565b60606001805461071390612bb6565b610f2c611616565b6001600160a01b0316826001600160a01b03161415610f5d5760405162461bcd60e51b81526004016106b090612567565b8060056000610f6a611616565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fae611616565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe6919061237d565b60405180910390a35050565b610ffa611616565b6001600160a01b031661100b610eb4565b6001600160a01b0316146110315760405162461bcd60e51b81526004016106b09061286f565b60005b8181101561086c57600083838381811061105e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110739190611fc6565b6001600160a01b0316141561109a5760405162461bcd60e51b81526004016106b0906128db565b6000600f60008585858181106110c057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110d59190611fc6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061110781612bf1565b915050611034565b611e6181565b61111d611616565b6001600160a01b031661112e610eb4565b6001600160a01b0316146111545760405162461bcd60e51b81526004016106b09061286f565b600e805460ff1916911515919091179055565b611178611172611616565b836116c3565b6111945760405162461bcd60e51b81526004016106b0906129d3565b6111a084848484611875565b50505050565b60606111b1826115f9565b6111cd5760405162461bcd60e51b81526004016106b09061259e565b600d6111d8836118a8565b6040516020016111e9929190612286565b6040516020818303038152906040529050919050565b600781565b6060600c805461071390612bb6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e5460ff166112635760405162461bcd60e51b81526004016106b0906127f3565b60078111156112845760405162461bcd60e51b81526004016106b09061299c565b611e616112916011611688565b106112ae5760405162461bcd60e51b81526004016106b09061264f565b346112c082668e1bc9bf040000612b54565b11156112de5760405162461bcd60e51b81526004016106b0906125cc565b60005b81811015610a575760006112f56011611688565b9050611e616113046011611688565b101561131e57611314601161168c565b61131e33826116a9565b508061132981612bf1565b9150506112e1565b60078111156113525760405162461bcd60e51b81526004016106b090612697565b600e54610100900460ff166113795760405162461bcd60e51b81526004016106b09061239b565b336000908152600f602052604090205460ff166113a85760405162461bcd60e51b81526004016106b0906123d2565b611e616113b56011611688565b106113d25760405162461bcd60e51b81526004016106b090612a70565b600b548111156113f45760405162461bcd60e51b81526004016106b090612ade565b600b5433600090815260106020526040902054611412908390612b28565b11156114305760405162461bcd60e51b81526004016106b090612aa7565b3461144282668e1bc9bf040000612b54565b11156114605760405162461bcd60e51b81526004016106b0906125cc565b611e6161146d6011611688565b1061148a5760405162461bcd60e51b81526004016106b09061264f565b60005b818110156114dd5760006114a16011611688565b9050611e616114b06011611688565b10156114ca576114c0601161168c565b6114ca33826116a9565b50806114d581612bf1565b91505061148d565b5050336000908152600f60205260409020805460ff19169055565b611500611616565b6001600160a01b0316611511610eb4565b6001600160a01b0316146115375760405162461bcd60e51b81526004016106b09061286f565b6001600160a01b03811661155d5760405162461bcd60e51b81526004016106b0906124a6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806115ea57506001600160e01b03198216635b5e139f60e01b145b806106fe57506106fe826119c3565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061164f82610b23565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60018160000160008282546116a19190612b28565b909155505050565b610a578282604051806020016040528060008152506119dc565b60006116ce826115f9565b6116ea5760405162461bcd60e51b81526004016106b090612603565b60006116f583610b23565b9050806001600160a01b0316846001600160a01b031614806117305750836001600160a01b031661172584610796565b6001600160a01b0316145b8061174057506117408185611213565b949350505050565b826001600160a01b031661175b82610b23565b6001600160a01b0316146117815760405162461bcd60e51b81526004016106b090612912565b6001600160a01b0382166117a75760405162461bcd60e51b81526004016106b090612523565b6117b2838383611a0f565b6117bd60008261161a565b6001600160a01b03831660009081526003602052604081208054600192906117e6908490612b73565b90915550506001600160a01b0382166000908152600360205260408120805460019290611814908490612b28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611880848484611748565b61188c84848484611a98565b6111a05760405162461bcd60e51b81526004016106b090612454565b6060816118cd57506040805180820190915260018152600360fc1b60208201526106d4565b8160005b81156118f757806118e181612bf1565b91506118f09050600a83612b40565b91506118d1565b60008167ffffffffffffffff81111561192057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561194a576020820181803683370190505b5090505b84156117405761195f600183612b73565b915061196c600a86612c0c565b611977906030612b28565b60f81b81838151811061199a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119bc600a86612b40565b945061194e565b6001600160e01b031981166301ffc9a760e01b14919050565b6119e68383611bb3565b6119f36000848484611a98565b61086c5760405162461bcd60e51b81526004016106b090612454565b611a1a83838361086c565b6001600160a01b038316611a3657611a3181611c92565b611a59565b816001600160a01b0316836001600160a01b031614611a5957611a598382611cd6565b6001600160a01b038216611a7557611a7081611d73565b61086c565b826001600160a01b0316826001600160a01b03161461086c5761086c8282611e4c565b6000611aac846001600160a01b0316611e90565b15611ba857836001600160a01b031663150b7a02611ac8611616565b8786866040518563ffffffff1660e01b8152600401611aea9493929190612340565b602060405180830381600087803b158015611b0457600080fd5b505af1925050508015611b34575060408051601f3d908101601f19168201909252611b31918101906121c4565b60015b611b8e573d808015611b62576040519150601f19603f3d011682016040523d82523d6000602084013e611b67565b606091505b508051611b865760405162461bcd60e51b81526004016106b090612454565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611740565b506001949350505050565b6001600160a01b038216611bd95760405162461bcd60e51b81526004016106b0906127be565b611be2816115f9565b15611bff5760405162461bcd60e51b81526004016106b0906124ec565b611c0b60008383611a0f565b6001600160a01b0382166000908152600360205260408120805460019290611c34908490612b28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611ce384610b58565b611ced9190612b73565b600083815260076020526040902054909150808214611d40576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8590600190612b73565b60008381526009602052604081205460088054939450909284908110611dbb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611dea57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e5783610b58565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611ea290612bb6565b90600052602060002090601f016020900481019282611ec45760008555611f0a565b82601f10611edd57805160ff1916838001178555611f0a565b82800160010185558215611f0a579182015b82811115611f0a578251825591602001919060010190611eef565b50611f16929150611f1a565b5090565b5b80821115611f165760008155600101611f1b565b600067ffffffffffffffff80841115611f4a57611f4a612c4c565b604051601f8501601f191681016020018281118282101715611f6e57611f6e612c4c565b604052848152915081838501861015611f8657600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b803580151581146106d457600080fd5b600060208284031215611fd7578081fd5b611fe082611f9f565b9392505050565b60008060408385031215611ff9578081fd5b61200283611f9f565b915061201060208401611f9f565b90509250929050565b60008060006060848603121561202d578081fd5b61203684611f9f565b925061204460208501611f9f565b9150604084013590509250925092565b60008060008060808587031215612069578081fd5b61207285611f9f565b935061208060208601611f9f565b925060408501359150606085013567ffffffffffffffff8111156120a2578182fd5b8501601f810187136120b2578182fd5b6120c187823560208401611f2f565b91505092959194509250565b600080604083850312156120df578182fd5b6120e883611f9f565b915061201060208401611fb6565b60008060408385031215612108578182fd5b61211183611f9f565b946020939093013593505050565b60008060208385031215612131578182fd5b823567ffffffffffffffff80821115612148578384fd5b818501915085601f83011261215b578384fd5b813581811115612169578485fd5b866020808302850101111561217c578485fd5b60209290920196919550909350505050565b60006020828403121561219f578081fd5b611fe082611fb6565b6000602082840312156121b9578081fd5b8135611fe081612c62565b6000602082840312156121d5578081fd5b8151611fe081612c62565b6000602082840312156121f1578081fd5b813567ffffffffffffffff811115612207578182fd5b8201601f81018413612217578182fd5b61174084823560208401611f2f565b600060208284031215612237578081fd5b5035919050565b60008151808452612256816020860160208601612b8a565b601f01601f19169290920160200192915050565b6000815161227c818560208601612b8a565b9290920192915050565b82546000908190600281046001808316806122a257607f831692505b60208084108214156122c257634e487b7160e01b87526022600452602487fd5b8180156122d657600181146122e757612313565b60ff19861689528489019650612313565b6122f08b612b1c565b885b8681101561230b5781548b8201529085019083016122f2565b505084890196505b505050505050612323818561226a565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123739083018461223e565b9695505050505050565b901515815260200190565b600060208252611fe0602083018461223e565b60208082526018908201527f416c6c6f77204c697374206973206e6f74206163746976650000000000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526028908201527f507572636861736520776f756c64206578636565642047554e534c494e474552604082015267535f5055424c494360c01b606082015260800190565b6020808252601b908201527f43616e206f6e6c79206d696e7420757020746f203120746f6b656e0000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f43616e206f6e6c79206d696e7420757020746f203720746f6b656e7300000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526019908201527f507572636861736520776f756c6420657863656564206d617800000000000000604082015260600190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612b3b57612b3b612c20565b500190565b600082612b4f57612b4f612c36565b500490565b6000816000190483118215151615612b6e57612b6e612c20565b500290565b600082821015612b8557612b85612c20565b500390565b60005b83811015612ba5578181015183820152602001612b8d565b838111156111a05750506000910152565b600281046001821680612bca57607f821691505b60208210811415612beb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0557612c05612c20565b5060010190565b600082612c1b57612c1b612c36565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c7857600080fd5b5056fea2646970667358221220d8fe919b042a905e5f90fcf7874dc48e2dae4b9803943c3c77f1335a7d8a321164736f6c63430008000033
Deployed Bytecode Sourcemap
46864:5973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49440:205;;;;;;;;;;-1:-1:-1;49440:205:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36783:300;;;;;;;;;;-1:-1:-1;36783:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22897:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24479:308::-;;;;;;;;;;-1:-1:-1;24479:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24002:411::-;;;;;;;;;;-1:-1:-1;24002:411:0;;;;;:::i;:::-;;:::i;:::-;;37586:113;;;;;;;;;;;;;:::i;48002:577::-;;;;;;:::i;:::-;;:::i;25538:376::-;;;;;;;;;;-1:-1:-1;25538:376:0;;;;;:::i;:::-;;:::i;47400:37::-;;;;;;;;;;;;;:::i;37167:343::-;;;;;;;;;;-1:-1:-1;37167:343:0;;;;;:::i;:::-;;:::i;49659:108::-;;;;;;;;;;-1:-1:-1;49659:108:0;;;;;:::i;:::-;;:::i;52687:147::-;;;;;;;;;;;;;:::i;25985:185::-;;;;;;;;;;-1:-1:-1;25985:185:0;;;;;:::i;:::-;;:::i;37776:320::-;;;;;;;;;;-1:-1:-1;37776:320:0;;;;;:::i;:::-;;:::i;47882:96::-;;;;;;;;;;-1:-1:-1;47882:96:0;;;;;:::i;:::-;;:::i;22504:326::-;;;;;;;;;;-1:-1:-1;22504:326:0;;;;;:::i;:::-;;:::i;22147:295::-;;;;;;;;;;-1:-1:-1;22147:295:0;;;;;:::i;:::-;;:::i;46244:148::-;;;;;;;;;;;;;:::i;48588:133::-;;;;;;;;;;-1:-1:-1;48588:133:0;;;;;:::i;:::-;;:::i;48871:546::-;;;;;;;;;;-1:-1:-1;48871:546:0;;;;;:::i;:::-;;:::i;48743:112::-;;;;;;;;;;-1:-1:-1;48743:112:0;;;;;:::i;:::-;;:::i;47242:35::-;;;;;;;;;;;;;:::i;47169:54::-;;;;;;;;;;;;;:::i;45593:87::-;;;;;;;;;;;;;:::i;47775:99::-;;;;;;;;;;-1:-1:-1;47775:99:0;;;;;:::i;:::-;;:::i;23066:104::-;;;;;;;;;;;;;:::i;24859:327::-;;;;;;;;;;-1:-1:-1;24859:327:0;;;;;:::i;:::-;;:::i;49781:365::-;;;;;;;;;;-1:-1:-1;49781:365:0;;;;;:::i;:::-;;:::i;46997:49::-;;;;;;;;;;;;;:::i;47675:92::-;;;;;;;;;;-1:-1:-1;47675:92:0;;;;;:::i;:::-;;:::i;26241:365::-;;;;;;;;;;-1:-1:-1;26241:365:0;;;;;:::i;:::-;;:::i;52403:276::-;;;;;;;;;;-1:-1:-1;52403:276:0;;;;;:::i;:::-;;:::i;47120:42::-;;;;;;;;;;;;;:::i;52298:97::-;;;;;;;;;;;;;:::i;25257:214::-;;;;;;;;;;-1:-1:-1;25257:214:0;;;;;:::i;:::-;;:::i;51458:832::-;;;;;;:::i;:::-;;:::i;50158:1292::-;;;;;;:::i;:::-;;:::i;46547:281::-;;;;;;;;;;-1:-1:-1;46547:281:0;;;;;:::i;:::-;;:::i;49440:205::-;49506:7;-1:-1:-1;;;;;49533:19:0;;49525:62;;;;-1:-1:-1;;;49525:62:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;49611:24:0;;;;;;:17;:24;;;;;;49440:205;;;;:::o;36783:300::-;36930:4;-1:-1:-1;;;;;;36972:50:0;;-1:-1:-1;;;36972:50:0;;:103;;;37039:36;37063:11;37039:23;:36::i;:::-;36952:123;36783:300;-1:-1:-1;;36783:300:0:o;22897:100::-;22951:13;22984:5;22977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22897:100;:::o;24479:308::-;24600:7;24647:16;24655:7;24647;:16::i;:::-;24625:110;;;;-1:-1:-1;;;24625:110:0;;;;;;;:::i;:::-;-1:-1:-1;24755:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24755:24:0;;24479:308::o;24002:411::-;24083:13;24099:23;24114:7;24099:14;:23::i;:::-;24083:39;;24147:5;-1:-1:-1;;;;;24141:11:0;:2;-1:-1:-1;;;;;24141:11:0;;;24133:57;;;;-1:-1:-1;;;24133:57:0;;;;;;;:::i;:::-;24241:5;-1:-1:-1;;;;;24225:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;24225:21:0;;:62;;;;24250:37;24267:5;24274:12;:10;:12::i;24250:37::-;24203:168;;;;-1:-1:-1;;;24203:168:0;;;;;;;:::i;:::-;24384:21;24393:2;24397:7;24384:8;:21::i;:::-;24002:411;;;:::o;37586:113::-;37674:10;:17;37586:113;:::o;48002:577::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;47042:4:::1;48147:28;:18;:26;:28::i;:::-;:49;48125:139;;;;-1:-1:-1::0;;;48125:139:0::1;;;;;;;:::i;:::-;48282:9;48277:295;48301:14;48297:1;:18;48277:295;;;48337:15;48355:28;:18;:26;:28::i;:::-;48337:46;;47042:4;48404:28;:18;:26;:28::i;:::-;:49;48400:161;;;48474:30;:18;:28;:30::i;:::-;48523:22;48533:2;48537:7;48523:9;:22::i;:::-;-1:-1:-1::0;48317:3:0;::::1;::::0;::::1;:::i;:::-;;;;48277:295;;25538:376:::0;25747:41;25766:12;:10;:12::i;:::-;25780:7;25747:18;:41::i;:::-;25725:140;;;;-1:-1:-1;;;25725:140:0;;;;;;;:::i;:::-;25878:28;25888:4;25894:2;25898:7;25878:9;:28::i;47400:37::-;;;;;;;;;:::o;37167:343::-;37309:7;37364:23;37381:5;37364:16;:23::i;:::-;37356:5;:31;37334:124;;;;-1:-1:-1;;;37334:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37476:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37167:343::o;49659:108::-;-1:-1:-1;;;;;49741:16:0;49717:4;49741:16;;;:10;:16;;;;;;;;;49659:108::o;52687:147::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;52789:37:::1;::::0;52755:21:::1;::::0;52797:10:::1;::::0;52789:37;::::1;;;::::0;52755:21;;52737:15:::1;52789:37:::0;52737:15;52789:37;52755:21;52797:10;52789:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45884:1;52687:147::o:0;25985:185::-;26123:39;26140:4;26146:2;26150:7;26123:39;;;;;;;;;;;;:16;:39::i;37776:320::-;37896:7;37951:30;:28;:30::i;:::-;37943:5;:38;37921:132;;;;-1:-1:-1;;;37921:132:0;;;;;;;:::i;:::-;38071:10;38082:5;38071:17;;;;;;-1:-1:-1;;;38071:17:0;;;;;;;;;;;;;;;;;38064:24;;37776:320;;;:::o;47882:96::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;47951:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;22504:326::-:0;22621:7;22662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22662:16:0;22711:19;22689:110;;;;-1:-1:-1;;;22689:110:0;;;;;;;:::i;22147:295::-;22264:7;-1:-1:-1;;;;;22311:19:0;;22289:111;;;;-1:-1:-1;;;22289:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22418:16:0;;;;;:9;:16;;;;;;;22147:295::o;46244:148::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;46335:6:::1;::::0;46314:40:::1;::::0;46351:1:::1;::::0;-1:-1:-1;;;;;46335:6:0::1;::::0;46314:40:::1;::::0;46351:1;;46314:40:::1;46365:6;:19:::0;;-1:-1:-1;;;;;;46365:19:0::1;::::0;;46244:148::o;48588:133::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;48673:17:::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;48673:38:0;;::::1;::::0;;;::::1;::::0;;48588:133::o;48871:546::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;48960:9:::1;48955:453;48975:20:::0;;::::1;48955:453;;;49047:1;49023:9:::0;;49033:1;49023:12;;::::1;;;-1:-1:-1::0;;;49023:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49023:26:0::1;;;49015:65;;;;-1:-1:-1::0;;;49015:65:0::1;;;;;;;:::i;:::-;49146:4;49119:10;:24;49130:9;;49140:1;49130:12;;;;;-1:-1:-1::0;;;49130:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49119:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49119:24:0;;;:31;;-1:-1:-1;;49119:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;49323:17:::1;-1:-1:-1::0;49341:9:0;;49351:1;49341:12;;::::1;;;-1:-1:-1::0;;;49341:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49323:31:0::1;-1:-1:-1::0;;;;;49323:31:0::1;;;;;;;;;;;;;:35;:73;;49395:1;49323:73;;;49361:17;:31;49379:9;;49389:1;49379:12;;;;;-1:-1:-1::0;;;49379:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49361:31:0::1;-1:-1:-1::0;;;;;49361:31:0::1;;;;;;;;;;;;;49323:73;-1:-1:-1::0;48997:3:0;::::1;::::0;::::1;:::i;:::-;;;;48955:453;;48743:112:::0;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;48819:16:::1;:26:::0;48743:112::o;47242:35::-;;;;:::o;47169:54::-;47201:22;47169:54;:::o;45593:87::-;45666:6;;-1:-1:-1;;;;;45666:6:0;45593:87;:::o;47775:99::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;47848:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23066:104::-:0;23122:13;23155:7;23148:14;;;;;:::i;24859:327::-;25006:12;:10;:12::i;:::-;-1:-1:-1;;;;;24994:24:0;:8;-1:-1:-1;;;;;24994:24:0;;;24986:62;;;;-1:-1:-1;;;24986:62:0;;;;;;;:::i;:::-;25106:8;25061:18;:32;25080:12;:10;:12::i;:::-;-1:-1:-1;;;;;25061:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;25061:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;25061:53:0;;;;;;;;;;;25145:12;:10;:12::i;:::-;-1:-1:-1;;;;;25130:48:0;;25169:8;25130:48;;;;;;:::i;:::-;;;;;;;;24859:327;;:::o;49781:365::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;49875:9:::1;49870:267;49890:20:::0;;::::1;49870:267;;;49962:1;49938:9:::0;;49948:1;49938:12;;::::1;;;-1:-1:-1::0;;;49938:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49938:26:0::1;;;49930:65;;;;-1:-1:-1::0;;;49930:65:0::1;;;;;;;:::i;:::-;50120:5;50093:10;:24;50104:9;;50114:1;50104:12;;;;;-1:-1:-1::0;;;50104:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50093:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50093:24:0;:32;;-1:-1:-1;;50093:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49912:3;::::1;::::0;::::1;:::i;:::-;;;;49870:267;;46997:49:::0;47042:4;46997:49;:::o;47675:92::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;47739:9:::1;:20:::0;;-1:-1:-1;;47739:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47675:92::o;26241:365::-;26430:41;26449:12;:10;:12::i;:::-;26463:7;26430:18;:41::i;:::-;26408:140;;;;-1:-1:-1;;;26408:140:0;;;;;;;:::i;:::-;26559:39;26573:4;26579:2;26583:7;26592:5;26559:13;:39::i;:::-;26241:365;;;;:::o;52403:276::-;52512:13;52551:16;52559:7;52551;:16::i;:::-;52543:49;;;;-1:-1:-1;;;52543:49:0;;;;;;;:::i;:::-;52636:13;52651:18;:7;:16;:18::i;:::-;52619:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52605:66;;52403:276;;;:::o;47120:42::-;47161:1;47120:42;:::o;52298:97::-;52342:13;52375:12;52368:19;;;;;:::i;25257:214::-;-1:-1:-1;;;;;25428:25:0;;;25399:4;25428:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25257:214::o;51458:832::-;51536:9;;;;51528:44;;;;-1:-1:-1;;;51528:44:0;;;;;;;:::i;:::-;47161:1;51605:14;:32;;51583:110;;;;-1:-1:-1;;;51583:110:0;;;;;;;:::i;:::-;47042:4;51726:28;:18;:26;:28::i;:::-;:49;51704:139;;;;-1:-1:-1;;;51704:139:0;;;;;;;:::i;:::-;51902:9;51876:22;51884:14;47201:22;51876;:::i;:::-;:35;;51854:113;;;;-1:-1:-1;;;51854:113:0;;;;;;;:::i;:::-;51985:9;51980:303;52004:14;52000:1;:18;51980:303;;;52040:15;52058:28;:18;:26;:28::i;:::-;52040:46;;47042:4;52107:28;:18;:26;:28::i;:::-;:49;52103:169;;;52177:30;:18;:28;:30::i;:::-;52226;52236:10;52248:7;52226:9;:30::i;:::-;-1:-1:-1;52020:3:0;;;;:::i;:::-;;;;51980:303;;50158:1292;47161:1;50259:14;:32;;50237:109;;;;-1:-1:-1;;;50237:109:0;;;;;;;:::i;:::-;50375:17;;;;;;;50367:54;;;;-1:-1:-1;;;50367:54:0;;;;;;;:::i;:::-;50451:10;50440:22;;;;:10;:22;;;;;;;;50432:64;;;;-1:-1:-1;;;50432:64:0;;;;;;;:::i;:::-;47042:4;50529:28;:18;:26;:28::i;:::-;:49;50507:124;;;;-1:-1:-1;;;50507:124:0;;;;;;;:::i;:::-;50668:16;;50650:14;:34;;50642:79;;;;-1:-1:-1;;;50642:79:0;;;;;;;:::i;:::-;50790:16;;50758:10;50740:29;;;;:17;:29;;;;;;:46;;50772:14;;50740:46;:::i;:::-;:66;;50732:107;;;;-1:-1:-1;;;50732:107:0;;;;;;;:::i;:::-;50884:9;50858:22;50866:14;47201:22;50858;:::i;:::-;:35;;50850:76;;;;-1:-1:-1;;;50850:76:0;;;;;;;:::i;:::-;47042:4;50959:28;:18;:26;:28::i;:::-;:49;50937:139;;;;-1:-1:-1;;;50937:139:0;;;;;;;:::i;:::-;51092:9;51087:303;51111:14;51107:1;:18;51087:303;;;51147:15;51165:28;:18;:26;:28::i;:::-;51147:46;;47042:4;51214:28;:18;:26;:28::i;:::-;:49;51210:169;;;51284:30;:18;:28;:30::i;:::-;51333;51343:10;51355:7;51333:9;:30::i;:::-;-1:-1:-1;51127:3:0;;;;:::i;:::-;;;;51087:303;;;-1:-1:-1;;51411:10:0;51425:5;51400:22;;;:10;:22;;;;;:30;;-1:-1:-1;;51400:30:0;;;50158:1292::o;46547:281::-;45824:12;:10;:12::i;:::-;-1:-1:-1;;;;;45813:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45813:23:0;;45805:68;;;;-1:-1:-1;;;45805:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46650:22:0;::::1;46628:110;;;;-1:-1:-1::0;;;46628:110:0::1;;;;;;;:::i;:::-;46775:6;::::0;46754:38:::1;::::0;-1:-1:-1;;;;;46754:38:0;;::::1;::::0;46775:6:::1;::::0;46754:38:::1;::::0;46775:6:::1;::::0;46754:38:::1;46803:6;:17:::0;;-1:-1:-1;;;;;;46803:17:0::1;-1:-1:-1::0;;;;;46803:17:0;;;::::1;::::0;;;::::1;::::0;;46547:281::o;21728:355::-;21875:4;-1:-1:-1;;;;;;21917:40:0;;-1:-1:-1;;;21917:40:0;;:105;;-1:-1:-1;;;;;;;21974:48:0;;-1:-1:-1;;;21974:48:0;21917:105;:158;;;;22039:36;22063:11;22039:23;:36::i;28153:127::-;28218:4;28242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28242:16:0;:30;;;28153:127::o;16901:98::-;16981:10;16901:98;:::o;32276:174::-;32351:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32351:29:0;-1:-1:-1;;;;;32351:29:0;;;;;;;;:24;;32405:23;32351:24;32405:14;:23::i;:::-;-1:-1:-1;;;;;32396:46:0;;;;;;;;;;;32276:174;;:::o;43992:114::-;44084:14;;43992:114::o;44114:117::-;44211:1;44193:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;44114:117:0:o;29241:110::-;29317:26;29327:2;29331:7;29317:26;;;;;;;;;;;;:9;:26::i;28447:452::-;28576:4;28620:16;28628:7;28620;:16::i;:::-;28598:110;;;;-1:-1:-1;;;28598:110:0;;;;;;;:::i;:::-;28719:13;28735:23;28750:7;28735:14;:23::i;:::-;28719:39;;28788:5;-1:-1:-1;;;;;28777:16:0;:7;-1:-1:-1;;;;;28777:16:0;;:64;;;;28834:7;-1:-1:-1;;;;;28810:31:0;:20;28822:7;28810:11;:20::i;:::-;-1:-1:-1;;;;;28810:31:0;;28777:64;:113;;;;28858:32;28875:5;28882:7;28858:16;:32::i;:::-;28769:122;28447:452;-1:-1:-1;;;;28447:452:0:o;31543:615::-;31716:4;-1:-1:-1;;;;;31689:31:0;:23;31704:7;31689:14;:23::i;:::-;-1:-1:-1;;;;;31689:31:0;;31667:122;;;;-1:-1:-1;;;31667:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31808:16:0;;31800:65;;;;-1:-1:-1;;;31800:65:0;;;;;;;:::i;:::-;31878:39;31899:4;31905:2;31909:7;31878:20;:39::i;:::-;31982:29;31999:1;32003:7;31982:8;:29::i;:::-;-1:-1:-1;;;;;32024:15:0;;;;;;:9;:15;;;;;:20;;32043:1;;32024:15;:20;;32043:1;;32024:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32055:13:0;;;;;;:9;:13;;;;;:18;;32072:1;;32055:13;:18;;32072:1;;32055:18;:::i;:::-;;;;-1:-1:-1;;32084:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32084:21:0;-1:-1:-1;;;;;32084:21:0;;;;;;;;;32123:27;;32084:16;;32123:27;;;;;;;31543:615;;;:::o;27488:352::-;27645:28;27655:4;27661:2;27665:7;27645:9;:28::i;:::-;27706:48;27729:4;27735:2;27739:7;27748:5;27706:22;:48::i;:::-;27684:148;;;;-1:-1:-1;;;27684:148:0;;;;;;;:::i;17573:723::-;17629:13;17850:10;17846:53;;-1:-1:-1;17877:10:0;;;;;;;;;;;;-1:-1:-1;;;17877:10:0;;;;;;17846:53;17924:5;17909:12;17965:78;17972:9;;17965:78;;17998:8;;;;:::i;:::-;;-1:-1:-1;18021:10:0;;-1:-1:-1;18029:2:0;18021:10;;:::i;:::-;;;17965:78;;;18053:19;18085:6;18075:17;;;;;;-1:-1:-1;;;18075:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18075:17:0;;18053:39;;18103:154;18110:10;;18103:154;;18137:11;18147:1;18137:11;;:::i;:::-;;-1:-1:-1;18206:10:0;18214:2;18206:5;:10;:::i;:::-;18193:24;;:2;:24;:::i;:::-;18180:39;;18163:6;18170;18163:14;;;;;;-1:-1:-1;;;18163:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18163:56:0;;;;;;;;-1:-1:-1;18234:11:0;18243:2;18234:11;;:::i;:::-;;;18103:154;;20173:207;-1:-1:-1;;;;;;20332:40:0;;-1:-1:-1;;;20332:40:0;20173:207;;;:::o;29578:321::-;29708:18;29714:2;29718:7;29708:5;:18::i;:::-;29759:54;29790:1;29794:2;29798:7;29807:5;29759:22;:54::i;:::-;29737:154;;;;-1:-1:-1;;;29737:154:0;;;;;;;:::i;38709:589::-;38853:45;38880:4;38886:2;38890:7;38853:26;:45::i;:::-;-1:-1:-1;;;;;38915:18:0;;38911:187;;38950:40;38982:7;38950:31;:40::i;:::-;38911:187;;;39020:2;-1:-1:-1;;;;;39012:10:0;:4;-1:-1:-1;;;;;39012:10:0;;39008:90;;39039:47;39072:4;39078:7;39039:32;:47::i;:::-;-1:-1:-1;;;;;39112:16:0;;39108:183;;39145:45;39182:7;39145:36;:45::i;:::-;39108:183;;;39218:4;-1:-1:-1;;;;;39212:10:0;:2;-1:-1:-1;;;;;39212:10:0;;39208:83;;39239:40;39267:2;39271:7;39239:27;:40::i;33015:1053::-;33170:4;33191:15;:2;-1:-1:-1;;;;;33191:13:0;;:15::i;:::-;33187:874;;;33260:2;-1:-1:-1;;;;;33244:36:0;;33303:12;:10;:12::i;:::-;33338:4;33365:7;33395:5;33244:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33244:175:0;;;;;;;;-1:-1:-1;;33244:175:0;;;;;;;;;;;;:::i;:::-;;;33223:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33606:13:0;;33602:389;;33649:108;;-1:-1:-1;;;33649:108:0;;;;;;;:::i;33602:389::-;33941:6;33935:13;33926:6;33922:2;33918:15;33911:38;33223:783;-1:-1:-1;;;;;;33483:55:0;-1:-1:-1;;;33483:55:0;;-1:-1:-1;33476:62:0;;33187:874;-1:-1:-1;34045:4:0;33015:1053;;;;;;:::o;30235:382::-;-1:-1:-1;;;;;30315:16:0;;30307:61;;;;-1:-1:-1;;;30307:61:0;;;;;;;:::i;:::-;30388:16;30396:7;30388;:16::i;:::-;30387:17;30379:58;;;;-1:-1:-1;;;30379:58:0;;;;;;;:::i;:::-;30450:45;30479:1;30483:2;30487:7;30450:20;:45::i;:::-;-1:-1:-1;;;;;30508:13:0;;;;;;:9;:13;;;;;:18;;30525:1;;30508:13;:18;;30525:1;;30508:18;:::i;:::-;;;;-1:-1:-1;;30537:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30537:21:0;-1:-1:-1;;;;;30537:21:0;;;;;;;;30576:33;;30537:16;;;30576:33;;30537:16;;30576:33;30235:382;;:::o;40021:164::-;40125:10;:17;;40098:24;;;;:15;:24;;;;;:44;;;40153:24;;;;;;;;;;;;40021:164::o;40812:1002::-;41092:22;41142:1;41117:22;41134:4;41117:16;:22::i;:::-;:26;;;;:::i;:::-;41154:18;41175:26;;;:17;:26;;;;;;41092:51;;-1:-1:-1;41308:28:0;;;41304:328;;-1:-1:-1;;;;;41375:18:0;;41353:19;41375:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41426:30;;;;;;:44;;;41543:30;;:17;:30;;;;;:43;;;41304:328;-1:-1:-1;41728:26:0;;;;:17;:26;;;;;;;;41721:33;;;-1:-1:-1;;;;;41772:18:0;;;;;:12;:18;;;;;:34;;;;;;;41765:41;40812:1002::o;42109:1079::-;42387:10;:17;42362:22;;42387:21;;42407:1;;42387:21;:::i;:::-;42419:18;42440:24;;;:15;:24;;;;;;42813:10;:26;;42362:46;;-1:-1:-1;42440:24:0;;42362:46;;42813:26;;;;-1:-1:-1;;;42813:26:0;;;;;;;;;;;;;;;;;42791:48;;42877:11;42852:10;42863;42852:22;;;;;;-1:-1:-1;;;42852:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42957:28;;;:15;:28;;;;;;;:41;;;43129:24;;;;;43122:31;43164:10;:16;;;;;-1:-1:-1;;;43164:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42109:1079;;;;:::o;39599:221::-;39684:14;39701:20;39718:2;39701:16;:20::i;:::-;-1:-1:-1;;;;;39732:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39777:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39599:221:0:o;8300:444::-;8680:20;8728:8;;;8300:444::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;:::-;1124:41;1043:128;-1:-1:-1;;;1043:128:1:o;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:187::-;;5477:5;5471:12;5492:52;5537:6;5532:3;5525:4;5518:5;5514:16;5492:52;:::i;:::-;5560:16;;;;;5447:135;-1:-1:-1;;5447:135:1:o;5587:1181::-;5821:13;;5587:1181;;;;5894:1;5879:17;;5915:1;5951:18;;;;5978:2;;6032:4;6024:6;6020:17;6010:27;;5978:2;6058;6106;6098:6;6095:14;6075:18;6072:38;6069:2;;;-1:-1:-1;;;6133:33:1;;6189:4;6186:1;6179:15;6219:4;6140:3;6207:17;6069:2;6250:18;6277:104;;;;6395:1;6390:324;;;;6243:471;;6277:104;-1:-1:-1;;6310:24:1;;6298:37;;6355:16;;;;-1:-1:-1;6277:104:1;;6390:324;6426:39;6458:6;6426:39;:::i;:::-;6487:3;6503:165;6517:6;6514:1;6511:13;6503:165;;;6595:14;;6582:11;;;6575:35;6638:16;;;;6532:10;;6503:165;;;6507:3;;6697:6;6692:3;6688:16;6681:23;;6243:471;;;;;;;6730:32;6758:3;6750:6;6730:32;:::i;:::-;6723:39;5771:997;-1:-1:-1;;;;;5771:997:1:o;6773:203::-;-1:-1:-1;;;;;6937:32:1;;;;6919:51;;6907:2;6892:18;;6874:102::o;6981:490::-;-1:-1:-1;;;;;7250:15:1;;;7232:34;;7302:15;;7297:2;7282:18;;7275:43;7349:2;7334:18;;7327:34;;;7397:3;7392:2;7377:18;;7370:31;;;6981:490;;7418:47;;7445:19;;7437:6;7418:47;:::i;:::-;7410:55;7184:287;-1:-1:-1;;;;;;7184:287:1:o;7476:187::-;7641:14;;7634:22;7616:41;;7604:2;7589:18;;7571:92::o;7668:221::-;;7817:2;7806:9;7799:21;7837:46;7879:2;7868:9;7864:18;7856:6;7837:46;:::i;7894:348::-;8096:2;8078:21;;;8135:2;8115:18;;;8108:30;8174:26;8169:2;8154:18;;8147:54;8233:2;8218:18;;8068:174::o;8247:353::-;8449:2;8431:21;;;8488:2;8468:18;;;8461:30;8527:31;8522:2;8507:18;;8500:59;8591:2;8576:18;;8421:179::o;8605:407::-;8807:2;8789:21;;;8846:2;8826:18;;;8819:30;8885:34;8880:2;8865:18;;8858:62;-1:-1:-1;;;8951:2:1;8936:18;;8929:41;9002:3;8987:19;;8779:233::o;9017:414::-;9219:2;9201:21;;;9258:2;9238:18;;;9231:30;9297:34;9292:2;9277:18;;9270:62;-1:-1:-1;;;9363:2:1;9348:18;;9341:48;9421:3;9406:19;;9191:240::o;9436:402::-;9638:2;9620:21;;;9677:2;9657:18;;;9650:30;9716:34;9711:2;9696:18;;9689:62;-1:-1:-1;;;9782:2:1;9767:18;;9760:36;9828:3;9813:19;;9610:228::o;9843:352::-;10045:2;10027:21;;;10084:2;10064:18;;;10057:30;10123;10118:2;10103:18;;10096:58;10186:2;10171:18;;10017:178::o;10200:400::-;10402:2;10384:21;;;10441:2;10421:18;;;10414:30;10480:34;10475:2;10460:18;;10453:62;-1:-1:-1;;;10546:2:1;10531:18;;10524:34;10590:3;10575:19;;10374:226::o;10605:349::-;10807:2;10789:21;;;10846:2;10826:18;;;10819:30;10885:27;10880:2;10865:18;;10858:55;10945:2;10930:18;;10779:175::o;10959:344::-;11161:2;11143:21;;;11200:2;11180:18;;;11173:30;-1:-1:-1;;;11234:2:1;11219:18;;11212:50;11294:2;11279:18;;11133:170::o;11308:352::-;11510:2;11492:21;;;11549:2;11529:18;;;11522:30;11588;11583:2;11568:18;;11561:58;11651:2;11636:18;;11482:178::o;11665:408::-;11867:2;11849:21;;;11906:2;11886:18;;;11879:30;11945:34;11940:2;11925:18;;11918:62;-1:-1:-1;;;12011:2:1;11996:18;;11989:42;12063:3;12048:19;;11839:234::o;12078:404::-;12280:2;12262:21;;;12319:2;12299:18;;;12292:30;12358:34;12353:2;12338:18;;12331:62;-1:-1:-1;;;12424:2:1;12409:18;;12402:38;12472:3;12457:19;;12252:230::o;12487:351::-;12689:2;12671:21;;;12728:2;12708:18;;;12701:30;12767:29;12762:2;12747:18;;12740:57;12829:2;12814:18;;12661:177::o;12843:420::-;13045:2;13027:21;;;13084:2;13064:18;;;13057:30;13123:34;13118:2;13103:18;;13096:62;13194:26;13189:2;13174:18;;13167:54;13253:3;13238:19;;13017:246::o;13268:406::-;13470:2;13452:21;;;13509:2;13489:18;;;13482:30;13548:34;13543:2;13528:18;;13521:62;-1:-1:-1;;;13614:2:1;13599:18;;13592:40;13664:3;13649:19;;13442:232::o;13679:405::-;13881:2;13863:21;;;13920:2;13900:18;;;13893:30;13959:34;13954:2;13939:18;;13932:62;-1:-1:-1;;;14025:2:1;14010:18;;14003:39;14074:3;14059:19;;13853:231::o;14089:356::-;14291:2;14273:21;;;14310:18;;;14303:30;14369:34;14364:2;14349:18;;14342:62;14436:2;14421:18;;14263:182::o;14450:346::-;14652:2;14634:21;;;14691:2;14671:18;;;14664:30;-1:-1:-1;;;14725:2:1;14710:18;;14703:52;14787:2;14772:18;;14624:172::o;14801:408::-;15003:2;14985:21;;;15042:2;15022:18;;;15015:30;15081:34;15076:2;15061:18;;15054:62;-1:-1:-1;;;15147:2:1;15132:18;;15125:42;15199:3;15184:19;;14975:234::o;15214:356::-;15416:2;15398:21;;;15435:18;;;15428:30;15494:34;15489:2;15474:18;;15467:62;15561:2;15546:18;;15388:182::o;15575:354::-;15777:2;15759:21;;;15816:2;15796:18;;;15789:30;15855:32;15850:2;15835:18;;15828:60;15920:2;15905:18;;15749:180::o;15934:350::-;16136:2;16118:21;;;16175:2;16155:18;;;16148:30;16214:28;16209:2;16194:18;;16187:56;16275:2;16260:18;;16108:176::o;16289:405::-;16491:2;16473:21;;;16530:2;16510:18;;;16503:30;16569:34;16564:2;16549:18;;16542:62;-1:-1:-1;;;16635:2:1;16620:18;;16613:39;16684:3;16669:19;;16463:231::o;16699:397::-;16901:2;16883:21;;;16940:2;16920:18;;;16913:30;16979:34;16974:2;16959:18;;16952:62;-1:-1:-1;;;17045:2:1;17030:18;;17023:31;17086:3;17071:19;;16873:223::o;17101:352::-;17303:2;17285:21;;;17342:2;17322:18;;;17315:30;17381;17376:2;17361:18;;17354:58;17444:2;17429:18;;17275:178::o;17458:413::-;17660:2;17642:21;;;17699:2;17679:18;;;17672:30;17738:34;17733:2;17718:18;;17711:62;-1:-1:-1;;;17804:2:1;17789:18;;17782:47;17861:3;17846:19;;17632:239::o;17876:408::-;18078:2;18060:21;;;18117:2;18097:18;;;18090:30;18156:34;18151:2;18136:18;;18129:62;-1:-1:-1;;;18222:2:1;18207:18;;18200:42;18274:3;18259:19;;18050:234::o;18289:349::-;18491:2;18473:21;;;18530:2;18510:18;;;18503:30;18569:27;18564:2;18549:18;;18542:55;18629:2;18614:18;;18463:175::o;18643:352::-;18845:2;18827:21;;;18884:2;18864:18;;;18857:30;18923;18918:2;18903:18;;18896:58;18986:2;18971:18;;18817:178::o;19000:356::-;19202:2;19184:21;;;19221:18;;;19214:30;19280:34;19275:2;19260:18;;19253:62;19347:2;19332:18;;19174:182::o;19361:177::-;19507:25;;;19495:2;19480:18;;19462:76::o;19543:129::-;;19611:17;;;19661:4;19645:21;;;19601:71::o;19677:128::-;;19748:1;19744:6;19741:1;19738:13;19735:2;;;19754:18;;:::i;:::-;-1:-1:-1;19790:9:1;;19725:80::o;19810:120::-;;19876:1;19866:2;;19881:18;;:::i;:::-;-1:-1:-1;19915:9:1;;19856:74::o;19935:168::-;;20041:1;20037;20033:6;20029:14;20026:1;20023:21;20018:1;20011:9;20004:17;20000:45;19997:2;;;20048:18;;:::i;:::-;-1:-1:-1;20088:9:1;;19987:116::o;20108:125::-;;20176:1;20173;20170:8;20167:2;;;20181:18;;:::i;:::-;-1:-1:-1;20218:9:1;;20157:76::o;20238:258::-;20310:1;20320:113;20334:6;20331:1;20328:13;20320:113;;;20410:11;;;20404:18;20391:11;;;20384:39;20356:2;20349:10;20320:113;;;20451:6;20448:1;20445:13;20442:2;;;-1:-1:-1;;20486:1:1;20468:16;;20461:27;20291:205::o;20501:380::-;20586:1;20576:12;;20633:1;20623:12;;;20644:2;;20698:4;20690:6;20686:17;20676:27;;20644:2;20751;20743:6;20740:14;20720:18;20717:38;20714:2;;;20797:10;20792:3;20788:20;20785:1;20778:31;20832:4;20829:1;20822:15;20860:4;20857:1;20850:15;20714:2;;20556:325;;;:::o;20886:135::-;;-1:-1:-1;;20946:17:1;;20943:2;;;20966:18;;:::i;:::-;-1:-1:-1;21013:1:1;21002:13;;20933:88::o;21026:112::-;;21084:1;21074:2;;21089:18;;:::i;:::-;-1:-1:-1;21123:9:1;;21064:74::o;21143:127::-;21204:10;21199:3;21195:20;21192:1;21185:31;21235:4;21232:1;21225:15;21259:4;21256:1;21249:15;21275:127;21336:10;21331:3;21327:20;21324:1;21317:31;21367:4;21364:1;21357:15;21391:4;21388:1;21381:15;21407:127;21468:10;21463:3;21459:20;21456:1;21449:31;21499:4;21496:1;21489:15;21523:4;21520:1;21513:15;21539:133;-1:-1:-1;;;;;;21615:32:1;;21605:43;;21595:2;;21662:1;21659;21652:12;21595:2;21585:87;:::o
Swarm Source
ipfs://d8fe919b042a905e5f90fcf7874dc48e2dae4b9803943c3c77f1335a7d8a3211
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.