Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
54 GLOOT
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GLOOTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
gLoot
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-06 */ /** *Submitted for verification at Etherscan.io on 2021-08-27 */ // 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); } /** * @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; } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @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; 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"); (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible 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}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = 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 { 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` and `to` are never both zero. * * 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 {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @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(); } } contract gLoot is ERC721Enumerable, ReentrancyGuard, Ownable { string[] private slot1 = [ "🍋", // lemon "🍇", // grapes "🍑", // peach "🍓", // strawberry "🍒", // cherries "🥝", // kiwi "🍍", // pineapple "🍉", // watermelon "🥭", // mango "🍎", // apple "🍐", // pear "🔔", // bell "💰", // money bag "💎", // Gem "🍌" // banana ]; string[] private slot2 = [ "🍋", // lemon "🍇", // grapes "🍑", // peach "🍓", // strawberry "🍒", // cherries "🥝", // kiwi "🍍", // pineapple "🍉", // watermelon "🥭", // mango "🍎", // apple "🍐", // pear "🔔", // bell "💰", // money bag "💎", // Gem "🍌" // banana ]; string[] private slot3 = [ "🍋", // lemon "🍇", // grapes "🍑", // peach "🍓", // strawberry "🍒", // cherries "🥝", // kiwi "🍍", // pineapple "🍉", // watermelon "🥭", // mango "🍎", // apple "🍐", // pear "🔔", // bell "💰", // money bag "💎", // Gem "🍌" // banana ]; function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getSlot1(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "ALLYOURGAMBLEAREBELONGTOUS", slot1); } function getSlot2(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "THEVALLYESOGESALONGTHENORTHSIDEALLYOURGAMBLEAREBELONGTOUS", slot2); } function getSlot3(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "IHEARDAFRIENDSAYINGGAMBLINGISADDICTIVETHEVALLYESOGESALONGTHENORTHSIDEALLYOURGAMBLEAREBELONGTOUS", slot3); } function pluck( uint256 tokenId, string memory keyPrefix, string[] memory sourceArray ) internal pure returns (string memory) { uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId)))); string memory output = sourceArray[rand % sourceArray.length]; return output; } function tokenURI(uint256 tokenId) public view override returns (string memory) { string[8] memory parts; parts[ 0 ] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 600 600"><style>.icon{ font-size: 128px; }</style><rect width="100%" height="100%" fill="black" />'; parts[1] = '<text x="40" y="60%" class="icon">'; parts[2] = getSlot1(tokenId); parts[3] = '</text><text x="205" y="60%" class="icon">'; parts[4] = getSlot2(tokenId); parts[5] = '</text><text x="360" y="60%" class="icon">'; parts[6] = getSlot3(tokenId); parts[7] = "</text></svg>"; string memory output = string( abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7]) ); string memory _slot1 = "None"; string memory _slot2 = "None"; string memory _slot3 = "None"; // SLOT 1 if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍋"))){ _slot1 = "Lemon"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍇"))){ _slot1 = "Grapes"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍑"))){ _slot1 = "Peach"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍓"))){ _slot1 = "Strawberry"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍒"))){ _slot1 = "Cherries"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🥝"))){ _slot1 = "Kiwi"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍍"))){ _slot1 = "Pineapple"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍉"))){ _slot1 = "Watermelon"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🥭"))){ _slot1 = "Mango"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍎"))){ _slot1 = "Apple"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍐"))){ _slot1 = "Pear"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🔔"))){ _slot1 = "Bell"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("💰"))){ _slot1 = "Money Bag"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("💎"))){ _slot1 = "Gem"; } else if(keccak256(abi.encodePacked(parts[2])) == keccak256(abi.encodePacked("🍌"))){ _slot1 = "Banana"; } // SLOT 2 if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍋"))){ _slot2 = "Lemon"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍇"))){ _slot2 = "Grapes"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍑"))){ _slot2 = "Peach"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍓"))){ _slot2 = "Strawberry"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍒"))){ _slot2 = "Cherries"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🥝"))){ _slot2 = "Kiwi"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍍"))){ _slot2 = "Pineapple"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍉"))){ _slot2 = "Watermelon"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🥭"))){ _slot2 = "Mango"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍎"))){ _slot2 = "Apple"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍐"))){ _slot2 = "Pear"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🔔"))){ _slot2 = "Bell"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("💰"))){ _slot2 = "Money Bag"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("💎"))){ _slot2 = "Gem"; } else if(keccak256(abi.encodePacked(parts[4])) == keccak256(abi.encodePacked("🍌"))){ _slot2 = "Banana"; } // SLOT 3 if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍋"))){ _slot3 = "Lemon"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍇"))){ _slot3 = "Grapes"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍑"))){ _slot3 = "Peach"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍓"))){ _slot3 = "Strawberry"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍒"))){ _slot3 = "Cherries"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🥝"))){ _slot3 = "Kiwi"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍍"))){ _slot3 = "Pineapple"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍉"))){ _slot3 = "Watermelon"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🥭"))){ _slot3 = "Mango"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍎"))){ _slot3 = "Apple"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍐"))){ _slot3 = "Pear"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🔔"))){ _slot3 = "Bell"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("💰"))){ _slot3 = "Money Bag"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("💎"))){ _slot3 = "Gem"; } else if(keccak256(abi.encodePacked(parts[6])) == keccak256(abi.encodePacked("🍌"))){ _slot3 = "Banana"; } string memory attrs = string(abi.encodePacked('attributes":[{"Win" : "', strCmp(_slot1, _slot2) && strCmp(_slot2, _slot3)? "Yes" : "No" ,'"},{"trait_type":"Slot One", "value":"',_slot1,'"},{"trait_type":"Slot Two", "value":"',_slot2,'"},{"trait_type":"Slot Three", "value":"',_slot3,'"},{"trait_type":"Rarity Signature", "value":"',toString(uint256(keccak256(abi.encodePacked(_slot1, _slot2, _slot3)))),'"}]}')); string memory json = Base64.encode( bytes( string( abi.encodePacked( '{"name": "Spin #', toString(tokenId), '", "description": "Loot (for Gamblers). Free spins + gas. Have fun!", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '","',attrs ) ) ) ); output = string(abi.encodePacked("data:application/json;base64,", json)); return output; } function claim(uint256 tokenId) public nonReentrant { require(tokenId > 0 && tokenId < 8889, "Token ID invalid"); _safeMint(_msgSender(), tokenId); } function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner { require(tokenId > 8888 && tokenId < 9139, "Token ID invalid"); _safeMint(owner(), tokenId); } function strCmp(string memory a, string memory b) internal pure returns(bool){ if(keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b))){ return true; } return false; } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } constructor() ERC721("Loot (for Gamblers)", "GLOOT") Ownable() {} } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
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":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSlot1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSlot2","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSlot3","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]
Contract Creation Code
60096102608181526826233132373831393b60b81b6102805260809081526102a08281526826233132373831353b60b81b6102c05260a0526102e08281526826233132373832353b60b81b6103005260c0526103208281526826233132373832373b60b81b6103405260e0526103608281526826233132373832363b60b81b61038052610100526103a08281526826233132393337333b60b81b6103c052610120526103e08281526826233132373832313b60b81b61040052610140526104208281526826233132373831373b60b81b61044052610160526104608281526826233132393338393b60b81b61048052610180526104a08281526826233132373832323b60b81b6104c0526101a0526104e08281526826233132373832343b60b81b610500526101c0526105208281526826233132383237363b60b81b610540526101e0526105608281526826233132383137363b60b81b61058052610200526105a08281526826233132383134323b60b81b6105c052610220526106206040526105e09182526826233132373832303b60b81b6106005261024091909152620001ad90600c90600f620006b7565b50604080516102208101825260096101e082018181526826233132373831393b60b81b6102008401528252825180840184528181526826233132373831353b60b81b60208281019190915280840191909152835180850185528281526826233132373832353b60b81b8183015283850152835180850185528281526826233132373832373b60b81b818301526060840152835180850185528281526826233132373832363b60b81b818301526080840152835180850185528281526826233132393337333b60b81b8183015260a0840152835180850185528281526826233132373832313b60b81b8183015260c0840152835180850185528281526826233132373831373b60b81b8183015260e0840152835180850185528281526826233132393338393b60b81b81830152610100840152835180850185528281526826233132373832323b60b81b81830152610120840152835180850185528281526826233132373832343b60b81b81830152610140840152835180850185528281526826233132383237363b60b81b81830152610160840152835180850185528281526826233132383137363b60b81b81830152610180840152835180850185528281526826233132383134323b60b81b818301526101a084015283518085019094529083526826233132373832303b60b81b908301526101c0810191909152620003b990600d90600f620006b7565b50604080516102208101825260096101e082018181526826233132373831393b60b81b6102008401528252825180840184528181526826233132373831353b60b81b60208281019190915280840191909152835180850185528281526826233132373832353b60b81b8183015283850152835180850185528281526826233132373832373b60b81b818301526060840152835180850185528281526826233132373832363b60b81b818301526080840152835180850185528281526826233132393337333b60b81b8183015260a0840152835180850185528281526826233132373832313b60b81b8183015260c0840152835180850185528281526826233132373831373b60b81b8183015260e0840152835180850185528281526826233132393338393b60b81b81830152610100840152835180850185528281526826233132373832323b60b81b81830152610120840152835180850185528281526826233132373832343b60b81b81830152610140840152835180850185528281526826233132383237363b60b81b81830152610160840152835180850185528281526826233132383137363b60b81b81830152610180840152835180850185528281526826233132383134323b60b81b818301526101a084015283518085019094529083526826233132373832303b60b81b908301526101c0810191909152620005c590600e90600f620006b7565b50348015620005d357600080fd5b50604080518082018252601381527f4c6f6f742028666f722047616d626c657273290000000000000000000000000060208083019182528351808501909452600584526411d313d3d560da1b90840152815191929162000636916000916200071b565b5080516200064c9060019060208401906200071b565b50506001600a55506200065f3362000665565b6200085d565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000709579160200282015b82811115620007095782518051620006f89184916020909101906200071b565b5091602001919060010190620006d8565b5062000717929150620007a6565b5090565b828054620007299062000820565b90600052602060002090601f0160209004810192826200074d576000855562000798565b82601f106200076857805160ff191683800117855562000798565b8280016001018555821562000798579182015b82811115620007985782518255916020019190600101906200077b565b5062000717929150620007c7565b8082111562000717576000620007bd8282620007de565b50600101620007a6565b5b80821115620007175760008155600101620007c8565b508054620007ec9062000820565b6000825580601f10620007fd575050565b601f0160209004906000526020600020908101906200081d9190620007c7565b50565b600181811c908216806200083557607f821691505b602082108114156200085757634e487b7160e01b600052602260045260246000fd5b50919050565b613ffc806200086d6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80634f6ccce7116100c3578063a22cb4651161007c578063a22cb465146102cb578063b88d4fde146102de578063c87b56dd146102f1578063ccbbb30314610304578063e985e9c514610317578063f2fde38b1461035357600080fd5b80634f6ccce7146102715780636352211e1461028457806370a0823114610297578063715018a6146102aa5780638da5cb5b146102b257806395d89b41146102c357600080fd5b806323b872dd1161011557806323b872dd146101ff5780632f745c5914610212578063379607f51461022557806342842e0e14610238578063434f48c41461024b57806348da971d1461025e57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da578063209f16aa146101ec575b600080fd5b61017061016b366004613690565b610366565b60405190151581526020015b60405180910390f35b61018d610391565b60405161017c9190613b56565b6101ad6101a83660046136ca565b610423565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004613666565b6104bd565b005b6008545b60405190815260200161017c565b61018d6101fa3660046136ca565b6105d3565b6101d861020d366004613512565b6106c9565b6101de610220366004613666565b6106fa565b6101d86102333660046136ca565b610790565b6101d8610246366004613512565b61084a565b6101d86102593660046136ca565b610865565b61018d61026c3660046136ca565b61094d565b6101de61027f3660046136ca565b610a3a565b6101ad6102923660046136ca565b610acd565b6101de6102a53660046134bd565b610b44565b6101d8610bcb565b600b546001600160a01b03166101ad565b61018d610c01565b6101d86102d936600461362a565b610c10565b6101d86102ec36600461354e565b610cd5565b61018d6102ff3660046136ca565b610d0d565b61018d6103123660046136ca565b612691565b6101706103253660046134df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101d86103613660046134bd565b61279b565b60006001600160e01b0319821663780e9d6360e01b148061038b575061038b82612836565b92915050565b6060600080546103a090613ccf565b80601f01602080910402602001604051908101604052809291908181526020018280546103cc90613ccf565b80156104195780601f106103ee57610100808354040283529160200191610419565b820191906000526020600020905b8154815290600101906020018083116103fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104c882610acd565b9050806001600160a01b0316836001600160a01b031614156105365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610498565b336001600160a01b038216148061055257506105528133610325565b6105c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610498565b6105ce8383612886565b505050565b606061038b82604051806060016040528060398152602001613dbe60399139600d805480602002602001604051908101604052809291908181526020016000905b828210156106c057838290600052602060002001805461063390613ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90613ccf565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b505050505081526020019060010190610614565b505050506128f4565b6106d33382612962565b6106ef5760405162461bcd60e51b815260040161049890613bf0565b6105ce838383612a59565b600061070583610b44565b82106107675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610498565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156107e35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610498565b6002600a5580158015906107f857506122b981105b6108375760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610498565b610842335b82612c04565b506001600a55565b6105ce83838360405180602001604052806000815250610cd5565b6002600a5414156108b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610498565b6002600a55600b546001600160a01b031633146108e75760405162461bcd60e51b815260040161049890613bbb565b6122b8811180156108f957506123b381105b6109385760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610498565b61084261083c600b546001600160a01b031690565b606061038b826040518060800160405280605f8152602001613f68605f9139600e805480602002602001604051908101604052809291908181526020016000905b828210156106c05783829060005260206000200180546109ad90613ccf565b80601f01602080910402602001604051908101604052809291908181526020018280546109d990613ccf565b8015610a265780601f106109fb57610100808354040283529160200191610a26565b820191906000526020600020905b815481529060010190602001808311610a0957829003601f168201915b50505050508152602001906001019061098e565b6000610a4560085490565b8210610aa85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610498565b60088281548110610abb57610abb613d7b565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061038b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610498565b60006001600160a01b038216610baf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610498565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610bf55760405162461bcd60e51b815260040161049890613bbb565b610bff6000612c22565b565b6060600180546103a090613ccf565b6001600160a01b038216331415610c695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610498565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cdf3383612962565b610cfb5760405162461bcd60e51b815260040161049890613bf0565b610d0784848484612c74565b50505050565b6060610d17613479565b6040518060e0016040528060bb8152602001613e8360bb9139815260408051606081019091526022808252613e6160208301396020820152610d5883612691565b604080830191909152805160608101909152602a808252613e3760208301396060820152610d85836105d3565b60808201526040805160608101909152602a808252613f3e602083013960a0820152610db08361094d565b60c082015260408051808201909152600d81526c1e17ba32bc3a1f1e17b9bb339f60991b6020820152816007602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01519551600099610e2099989791016137b9565b60408051601f1981840301815282820182526004808452634e6f6e6560e01b60208581018290528451808601865283815280820183905285518087018752938452838201929092529351929550929091610e8a91016826233132373831393b60b81b815260090190565b60408051808303601f190181528282528051602091820120918801519192610eb392910161372b565b604051602081830303815290604052805190602001201415610ef457604051806040016040528060058152602001642632b6b7b760d91b815250925061161e565b6040516826233132373831353b60b81b602082015260290160408051808303601f190181528282528051602091820120918801519192610f3592910161372b565b604051602081830303815290604052805190602001201415610f77576040518060400160405280600681526020016547726170657360d01b815250925061161e565b6040516826233132373832353b60b81b602082015260290160408051808303601f190181528282528051602091820120918801519192610fb892910161372b565b604051602081830303815290604052805190602001201415610ff957604051806040016040528060058152602001640a0cac2c6d60db1b815250925061161e565b6040516826233132373832373b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261103a92910161372b565b604051602081830303815290604052805190602001201415611080576040518060400160405280600a8152602001695374726177626572727960b01b815250925061161e565b6040516826233132373832363b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926110c192910161372b565b6040516020818303038152906040528051906020012014156111055760405180604001604052806008815260200167436865727269657360c01b815250925061161e565b6040516826233132393337333b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261114692910161372b565b60405160208183030381529060405280519060200120141561118657604051806040016040528060048152602001634b69776960e01b815250925061161e565b6040516826233132373832313b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926111c792910161372b565b60405160208183030381529060405280519060200120141561120c576040518060400160405280600981526020016850696e656170706c6560b81b815250925061161e565b6040516826233132373831373b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261124d92910161372b565b604051602081830303815290604052805190602001201415611293576040518060400160405280600a8152602001692bb0ba32b936b2b637b760b11b815250925061161e565b6040516826233132393338393b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926112d492910161372b565b60405160208183030381529060405280519060200120141561131557604051806040016040528060058152602001644d616e676f60d81b815250925061161e565b6040516826233132373832323b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261135692910161372b565b60405160208183030381529060405280519060200120141561139757604051806040016040528060058152602001644170706c6560d81b815250925061161e565b6040516826233132373832343b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926113d892910161372b565b60405160208183030381529060405280519060200120141561141857604051806040016040528060048152602001632832b0b960e11b815250925061161e565b6040516826233132383237363b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261145992910161372b565b604051602081830303815290604052805190602001201415611499576040518060400160405280600481526020016310995b1b60e21b815250925061161e565b6040516826233132383137363b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926114da92910161372b565b60405160208183030381529060405280519060200120141561151f57604051806040016040528060098152602001684d6f6e65792042616760b81b815250925061161e565b6040516826233132383134323b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261156092910161372b565b60405160208183030381529060405280519060200120141561159f576040518060400160405280600381526020016247656d60e81b815250925061161e565b6040516826233132373832303b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926115e092910161372b565b60405160208183030381529060405280519060200120141561161e576040518060400160405280600681526020016542616e616e6160d01b81525092505b6040516826233132373831393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611660920161372b565b6040516020818303038152906040528051906020012014156116a157604051806040016040528060058152602001642632b6b7b760d91b8152509150611dd9565b6040516826233132373831353b60b81b602082015260290160408051808303601f19018152908290528051602091820120608088015190926116e3920161372b565b604051602081830303815290604052805190602001201415611725576040518060400160405280600681526020016547726170657360d01b8152509150611dd9565b6040516826233132373832353b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611767920161372b565b6040516020818303038152906040528051906020012014156117a857604051806040016040528060058152602001640a0cac2c6d60db1b8152509150611dd9565b6040516826233132373832373b60b81b602082015260290160408051808303601f19018152908290528051602091820120608088015190926117ea920161372b565b604051602081830303815290604052805190602001201415611830576040518060400160405280600a8152602001695374726177626572727960b01b8152509150611dd9565b6040516826233132373832363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611872920161372b565b6040516020818303038152906040528051906020012014156118b65760405180604001604052806008815260200167436865727269657360c01b8152509150611dd9565b6040516826233132393337333b60b81b602082015260290160408051808303601f19018152908290528051602091820120608088015190926118f8920161372b565b60405160208183030381529060405280519060200120141561193857604051806040016040528060048152602001634b69776960e01b8152509150611dd9565b6040516826233132373832313b60b81b602082015260290160408051808303601f190181529082905280516020918201206080880151909261197a920161372b565b6040516020818303038152906040528051906020012014156119bf576040518060400160405280600981526020016850696e656170706c6560b81b8152509150611dd9565b6040516826233132373831373b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611a01920161372b565b604051602081830303815290604052805190602001201415611a47576040518060400160405280600a8152602001692bb0ba32b936b2b637b760b11b8152509150611dd9565b6040516826233132393338393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611a89920161372b565b604051602081830303815290604052805190602001201415611aca57604051806040016040528060058152602001644d616e676f60d81b8152509150611dd9565b6040516826233132373832323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611b0c920161372b565b604051602081830303815290604052805190602001201415611b4d57604051806040016040528060058152602001644170706c6560d81b8152509150611dd9565b6040516826233132373832343b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611b8f920161372b565b604051602081830303815290604052805190602001201415611bcf57604051806040016040528060048152602001632832b0b960e11b8152509150611dd9565b6040516826233132383237363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611c11920161372b565b604051602081830303815290604052805190602001201415611c51576040518060400160405280600481526020016310995b1b60e21b8152509150611dd9565b6040516826233132383137363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611c93920161372b565b604051602081830303815290604052805190602001201415611cd857604051806040016040528060098152602001684d6f6e65792042616760b81b8152509150611dd9565b6040516826233132383134323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611d1a920161372b565b604051602081830303815290604052805190602001201415611d59576040518060400160405280600381526020016247656d60e81b8152509150611dd9565b6040516826233132373832303b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611d9b920161372b565b604051602081830303815290604052805190602001201415611dd9576040518060400160405280600681526020016542616e616e6160d01b81525091505b6040516826233132373831393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611e1b920161372b565b604051602081830303815290604052805190602001201415611e5957506040805180820190915260058152642632b6b7b760d91b6020820152612567565b6040516826233132373831353b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611e9b920161372b565b604051602081830303815290604052805190602001201415611eda575060408051808201909152600681526547726170657360d01b6020820152612567565b6040516826233132373832353b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611f1c920161372b565b604051602081830303815290604052805190602001201415611f5a57506040805180820190915260058152640a0cac2c6d60db1b6020820152612567565b6040516826233132373832373b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611f9c920161372b565b604051602081830303815290604052805190602001201415611fdf575060408051808201909152600a8152695374726177626572727960b01b6020820152612567565b6040516826233132373832363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092612021920161372b565b6040516020818303038152906040528051906020012014156120625750604080518082019091526008815267436865727269657360c01b6020820152612567565b6040516826233132393337333b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926120a4920161372b565b6040516020818303038152906040528051906020012014156120e157506040805180820190915260048152634b69776960e01b6020820152612567565b6040516826233132373832313b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092612123920161372b565b604051602081830303815290604052805190602001201415612165575060408051808201909152600981526850696e656170706c6560b81b6020820152612567565b6040516826233132373831373b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926121a7920161372b565b6040516020818303038152906040528051906020012014156121ea575060408051808201909152600a8152692bb0ba32b936b2b637b760b11b6020820152612567565b6040516826233132393338393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261222c920161372b565b60405160208183030381529060405280519060200120141561226a57506040805180820190915260058152644d616e676f60d81b6020820152612567565b6040516826233132373832323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926122ac920161372b565b6040516020818303038152906040528051906020012014156122ea57506040805180820190915260058152644170706c6560d81b6020820152612567565b6040516826233132373832343b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261232c920161372b565b60405160208183030381529060405280519060200120141561236957506040805180820190915260048152632832b0b960e11b6020820152612567565b6040516826233132383237363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926123ab920161372b565b6040516020818303038152906040528051906020012014156123e8575060408051808201909152600481526310995b1b60e21b6020820152612567565b6040516826233132383137363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261242a920161372b565b60405160208183030381529060405280519060200120141561246c57506040805180820190915260098152684d6f6e65792042616760b81b6020820152612567565b6040516826233132383134323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926124ae920161372b565b6040516020818303038152906040528051906020012014156124ea575060408051808201909152600381526247656d60e81b6020820152612567565b6040516826233132373832303b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261252c920161372b565b604051602081830303815290604052805190602001201415612567575060408051808201909152600681526542616e616e6160d01b60208201525b60006125738484612ca7565b801561258457506125848383612ca7565b6125a857604051806040016040528060028152602001614e6f60f01b8152506125c5565b6040518060400160405280600381526020016259657360e81b8152505b8484846125fe8888886040516020016125e093929190613776565b6040516020818303038152906040528051906020012060001c612d0e565b60405160200161261295949392919061385e565b604051602081830303815290604052905060006126616126318a612d0e565b61263a88612e0c565b8460405160200161264d93929190613a20565b604051602081830303815290604052612e0c565b90508060405160200161267491906139db565b60408051601f198184030181529190529998505050505050505050565b606061038b826040518060400160405280601a81526020017f414c4c594f555247414d424c4541524542454c4f4e47544f5553000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156106c057838290600052602060002001805461270e90613ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461273a90613ccf565b80156127875780601f1061275c57610100808354040283529160200191612787565b820191906000526020600020905b81548152906001019060200180831161276a57829003601f168201915b5050505050815260200190600101906126ef565b600b546001600160a01b031633146127c55760405162461bcd60e51b815260040161049890613bbb565b6001600160a01b03811661282a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610498565b61283381612c22565b50565b60006001600160e01b031982166380ac58cd60e01b148061286757506001600160e01b03198216635b5e139f60e01b145b8061038b57506301ffc9a760e01b6001600160e01b031983161461038b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128bb82610acd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600061292a8461290587612d0e565b604051602001612916929190613747565b604051602081830303815290604052612f72565b905060008384518361293c9190613d25565b8151811061294c5761294c613d7b565b6020026020010151905080925050509392505050565b6000818152600260205260408120546001600160a01b03166129db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610498565b60006129e683610acd565b9050806001600160a01b0316846001600160a01b03161480612a215750836001600160a01b0316612a1684610423565b6001600160a01b0316145b80612a5157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612a6c82610acd565b6001600160a01b031614612ad45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610498565b6001600160a01b038216612b365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610498565b612b41838383612fa3565b612b4c600082612886565b6001600160a01b0383166000908152600360205260408120805460019290612b75908490613c8c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612ba3908490613c41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612c1e82826040518060200160405280600081525061305b565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612c7f848484612a59565b612c8b8484848461308e565b610d075760405162461bcd60e51b815260040161049890613b69565b600081604051602001612cba919061372b565b6040516020818303038152906040528051906020012083604051602001612ce1919061372b565b604051602081830303815290604052805190602001201415612d055750600161038b565b50600092915050565b606081612d325750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612d5c5780612d4681613d0a565b9150612d559050600a83613c59565b9150612d36565b60008167ffffffffffffffff811115612d7757612d77613d91565b6040519080825280601f01601f191660200182016040528015612da1576020820181803683370190505b5090505b8415612a5157612db6600183613c8c565b9150612dc3600a86613d25565b612dce906030613c41565b60f81b818381518110612de357612de3613d7b565b60200101906001600160f81b031916908160001a905350612e05600a86613c59565b9450612da5565b805160609080612e2c575050604080516020810190915260008152919050565b60006003612e3b836002613c41565b612e459190613c59565b612e50906004613c6d565b90506000612e5f826020613c41565b67ffffffffffffffff811115612e7757612e77613d91565b6040519080825280601f01601f191660200182016040528015612ea1576020820181803683370190505b5090506000604051806060016040528060408152602001613df7604091399050600181016020830160005b86811015612f2d576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612ecc565b506003860660018114612f475760028114612f5857612f64565b613d3d60f01b600119830152612f64565b603d60f81b6000198301525b505050918152949350505050565b600081604051602001612f85919061372b565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b038316612ffe57612ff981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613021565b816001600160a01b0316836001600160a01b03161461302157613021838261319b565b6001600160a01b038216613038576105ce81613238565b826001600160a01b0316826001600160a01b0316146105ce576105ce82826132e7565b613065838361332b565b613072600084848461308e565b6105ce5760405162461bcd60e51b815260040161049890613b69565b60006001600160a01b0384163b1561319057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130d2903390899088908890600401613b19565b602060405180830381600087803b1580156130ec57600080fd5b505af192505050801561311c575060408051601f3d908101601f19168201909252613119918101906136ad565b60015b613176573d80801561314a576040519150601f19603f3d011682016040523d82523d6000602084013e61314f565b606091505b50805161316e5760405162461bcd60e51b815260040161049890613b69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a51565b506001949350505050565b600060016131a884610b44565b6131b29190613c8c565b600083815260076020526040902054909150808214613205576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061324a90600190613c8c565b6000838152600960205260408120546008805493945090928490811061327257613272613d7b565b90600052602060002001549050806008838154811061329357613293613d7b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806132cb576132cb613d65565b6001900381819060005260206000200160009055905550505050565b60006132f283610b44565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166133815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610498565b6000818152600260205260409020546001600160a01b0316156133e65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610498565b6133f260008383612fa3565b6001600160a01b038216600090815260036020526040812080546001929061341b908490613c41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061010001604052806008905b60608152602001906001900390816134895790505090565b80356001600160a01b03811681146134b857600080fd5b919050565b6000602082840312156134cf57600080fd5b6134d8826134a1565b9392505050565b600080604083850312156134f257600080fd5b6134fb836134a1565b9150613509602084016134a1565b90509250929050565b60008060006060848603121561352757600080fd5b613530846134a1565b925061353e602085016134a1565b9150604084013590509250925092565b6000806000806080858703121561356457600080fd5b61356d856134a1565b935061357b602086016134a1565b925060408501359150606085013567ffffffffffffffff8082111561359f57600080fd5b818701915087601f8301126135b357600080fd5b8135818111156135c5576135c5613d91565b604051601f8201601f19908116603f011681019083821181831017156135ed576135ed613d91565b816040528281528a602084870101111561360657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561363d57600080fd5b613646836134a1565b91506020830135801515811461365b57600080fd5b809150509250929050565b6000806040838503121561367957600080fd5b613682836134a1565b946020939093013593505050565b6000602082840312156136a257600080fd5b81356134d881613da7565b6000602082840312156136bf57600080fd5b81516134d881613da7565b6000602082840312156136dc57600080fd5b5035919050565b600081518084526136fb816020860160208601613ca3565b601f01601f19169290920160200192915050565b60008151613721818560208601613ca3565b9290920192915050565b6000825161373d818460208701613ca3565b9190910192915050565b60008351613759818460208801613ca3565b83519083019061376d818360208801613ca3565b01949350505050565b60008451613788818460208901613ca3565b84519083019061379c818360208901613ca3565b84519101906137af818360208801613ca3565b0195945050505050565b6000895160206137cc8285838f01613ca3565b8a51918401916137df8184848f01613ca3565b8a519201916137f18184848e01613ca3565b89519201916138038184848d01613ca3565b88519201916138158184848c01613ca3565b87519201916138278184848b01613ca3565b86519201916138398184848a01613ca3565b855192019161384b8184848901613ca3565b919091019b9a5050505050505050505050565b7f61747472696275746573223a5b7b2257696e22203a2022000000000000000000815260008651613896816017850160208b01613ca3565b7f227d2c7b2274726169745f74797065223a22536c6f74204f6e65222c2022766160179184019182015265363ab2911d1160d11b6037820181905287516138e481603d850160208c01613ca3565b7f227d2c7b2274726169745f74797065223a22536c6f742054776f222c20227661603d9390910192830152605d8201528551613927816063840160208a01613ca3565b7f227d2c7b2274726169745f74797065223a22536c6f74205468726565222c202260639290910191820152673b30b63ab2911d1160c11b60838201526139cf6139bf6139b9613979608b85018961370f565b7f227d2c7b2274726169745f74797065223a22526172697479205369676e61747581526d3932911610113b30b63ab2911d1160911b6020820152602e0190565b8661370f565b63227d5d7d60e01b815260040190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a1381601d850160208701613ca3565b91909101601d0192915050565b6f7b226e616d65223a20225370696e202360801b81528351600090613a4c816010850160208901613ca3565b7f222c20226465736372697074696f6e223a20224c6f6f742028666f722047616d6010918401918201527f626c657273292e2046726565207370696e73202b206761732e2048617665206660308201527f756e21222c2022696d616765223a2022646174613a696d6167652f7376672b786050820152691b5b0ed8985cd94d8d0b60b21b60708201528451613ae881607a840160208901613ca3565b6211161160e91b607a92909101918201528351613b0c81607d840160208801613ca3565b01607d0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b4c908301846136e3565b9695505050505050565b6020815260006134d860208301846136e3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613c5457613c54613d39565b500190565b600082613c6857613c68613d4f565b500490565b6000816000190483118215151615613c8757613c87613d39565b500290565b600082821015613c9e57613c9e613d39565b500390565b60005b83811015613cbe578181015183820152602001613ca6565b83811115610d075750506000910152565b600181811c90821680613ce357607f821691505b60208210811415613d0457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d1e57613d1e613d39565b5060010190565b600082613d3457613d34613d4f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461283357600080fdfe54484556414c4c5945534f474553414c4f4e475448454e4f52544853494445414c4c594f555247414d424c4541524542454c4f4e47544f55534142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d223230352220793d223630252220636c6173733d2269636f6e223e3c7465787420783d2234302220793d223630252220636c6173733d2269636f6e223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302036303020363030223e3c7374796c653e2e69636f6e7b20666f6e742d73697a653a2031323870783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c2f746578743e3c7465787420783d223336302220793d223630252220636c6173733d2269636f6e223e49484541524441465249454e44534159494e4747414d424c494e47495341444449435449564554484556414c4c5945534f474553414c4f4e475448454e4f52544853494445414c4c594f555247414d424c4541524542454c4f4e47544f5553a26469706673582212200613c68f4045b90151db3ef4852441099d5af12cfa589be35c349c872429a95c64736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80634f6ccce7116100c3578063a22cb4651161007c578063a22cb465146102cb578063b88d4fde146102de578063c87b56dd146102f1578063ccbbb30314610304578063e985e9c514610317578063f2fde38b1461035357600080fd5b80634f6ccce7146102715780636352211e1461028457806370a0823114610297578063715018a6146102aa5780638da5cb5b146102b257806395d89b41146102c357600080fd5b806323b872dd1161011557806323b872dd146101ff5780632f745c5914610212578063379607f51461022557806342842e0e14610238578063434f48c41461024b57806348da971d1461025e57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da578063209f16aa146101ec575b600080fd5b61017061016b366004613690565b610366565b60405190151581526020015b60405180910390f35b61018d610391565b60405161017c9190613b56565b6101ad6101a83660046136ca565b610423565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004613666565b6104bd565b005b6008545b60405190815260200161017c565b61018d6101fa3660046136ca565b6105d3565b6101d861020d366004613512565b6106c9565b6101de610220366004613666565b6106fa565b6101d86102333660046136ca565b610790565b6101d8610246366004613512565b61084a565b6101d86102593660046136ca565b610865565b61018d61026c3660046136ca565b61094d565b6101de61027f3660046136ca565b610a3a565b6101ad6102923660046136ca565b610acd565b6101de6102a53660046134bd565b610b44565b6101d8610bcb565b600b546001600160a01b03166101ad565b61018d610c01565b6101d86102d936600461362a565b610c10565b6101d86102ec36600461354e565b610cd5565b61018d6102ff3660046136ca565b610d0d565b61018d6103123660046136ca565b612691565b6101706103253660046134df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101d86103613660046134bd565b61279b565b60006001600160e01b0319821663780e9d6360e01b148061038b575061038b82612836565b92915050565b6060600080546103a090613ccf565b80601f01602080910402602001604051908101604052809291908181526020018280546103cc90613ccf565b80156104195780601f106103ee57610100808354040283529160200191610419565b820191906000526020600020905b8154815290600101906020018083116103fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104c882610acd565b9050806001600160a01b0316836001600160a01b031614156105365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610498565b336001600160a01b038216148061055257506105528133610325565b6105c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610498565b6105ce8383612886565b505050565b606061038b82604051806060016040528060398152602001613dbe60399139600d805480602002602001604051908101604052809291908181526020016000905b828210156106c057838290600052602060002001805461063390613ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90613ccf565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b505050505081526020019060010190610614565b505050506128f4565b6106d33382612962565b6106ef5760405162461bcd60e51b815260040161049890613bf0565b6105ce838383612a59565b600061070583610b44565b82106107675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610498565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156107e35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610498565b6002600a5580158015906107f857506122b981105b6108375760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610498565b610842335b82612c04565b506001600a55565b6105ce83838360405180602001604052806000815250610cd5565b6002600a5414156108b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610498565b6002600a55600b546001600160a01b031633146108e75760405162461bcd60e51b815260040161049890613bbb565b6122b8811180156108f957506123b381105b6109385760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610498565b61084261083c600b546001600160a01b031690565b606061038b826040518060800160405280605f8152602001613f68605f9139600e805480602002602001604051908101604052809291908181526020016000905b828210156106c05783829060005260206000200180546109ad90613ccf565b80601f01602080910402602001604051908101604052809291908181526020018280546109d990613ccf565b8015610a265780601f106109fb57610100808354040283529160200191610a26565b820191906000526020600020905b815481529060010190602001808311610a0957829003601f168201915b50505050508152602001906001019061098e565b6000610a4560085490565b8210610aa85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610498565b60088281548110610abb57610abb613d7b565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061038b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610498565b60006001600160a01b038216610baf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610498565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610bf55760405162461bcd60e51b815260040161049890613bbb565b610bff6000612c22565b565b6060600180546103a090613ccf565b6001600160a01b038216331415610c695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610498565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cdf3383612962565b610cfb5760405162461bcd60e51b815260040161049890613bf0565b610d0784848484612c74565b50505050565b6060610d17613479565b6040518060e0016040528060bb8152602001613e8360bb9139815260408051606081019091526022808252613e6160208301396020820152610d5883612691565b604080830191909152805160608101909152602a808252613e3760208301396060820152610d85836105d3565b60808201526040805160608101909152602a808252613f3e602083013960a0820152610db08361094d565b60c082015260408051808201909152600d81526c1e17ba32bc3a1f1e17b9bb339f60991b6020820152816007602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01519551600099610e2099989791016137b9565b60408051601f1981840301815282820182526004808452634e6f6e6560e01b60208581018290528451808601865283815280820183905285518087018752938452838201929092529351929550929091610e8a91016826233132373831393b60b81b815260090190565b60408051808303601f190181528282528051602091820120918801519192610eb392910161372b565b604051602081830303815290604052805190602001201415610ef457604051806040016040528060058152602001642632b6b7b760d91b815250925061161e565b6040516826233132373831353b60b81b602082015260290160408051808303601f190181528282528051602091820120918801519192610f3592910161372b565b604051602081830303815290604052805190602001201415610f77576040518060400160405280600681526020016547726170657360d01b815250925061161e565b6040516826233132373832353b60b81b602082015260290160408051808303601f190181528282528051602091820120918801519192610fb892910161372b565b604051602081830303815290604052805190602001201415610ff957604051806040016040528060058152602001640a0cac2c6d60db1b815250925061161e565b6040516826233132373832373b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261103a92910161372b565b604051602081830303815290604052805190602001201415611080576040518060400160405280600a8152602001695374726177626572727960b01b815250925061161e565b6040516826233132373832363b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926110c192910161372b565b6040516020818303038152906040528051906020012014156111055760405180604001604052806008815260200167436865727269657360c01b815250925061161e565b6040516826233132393337333b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261114692910161372b565b60405160208183030381529060405280519060200120141561118657604051806040016040528060048152602001634b69776960e01b815250925061161e565b6040516826233132373832313b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926111c792910161372b565b60405160208183030381529060405280519060200120141561120c576040518060400160405280600981526020016850696e656170706c6560b81b815250925061161e565b6040516826233132373831373b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261124d92910161372b565b604051602081830303815290604052805190602001201415611293576040518060400160405280600a8152602001692bb0ba32b936b2b637b760b11b815250925061161e565b6040516826233132393338393b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926112d492910161372b565b60405160208183030381529060405280519060200120141561131557604051806040016040528060058152602001644d616e676f60d81b815250925061161e565b6040516826233132373832323b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261135692910161372b565b60405160208183030381529060405280519060200120141561139757604051806040016040528060058152602001644170706c6560d81b815250925061161e565b6040516826233132373832343b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926113d892910161372b565b60405160208183030381529060405280519060200120141561141857604051806040016040528060048152602001632832b0b960e11b815250925061161e565b6040516826233132383237363b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261145992910161372b565b604051602081830303815290604052805190602001201415611499576040518060400160405280600481526020016310995b1b60e21b815250925061161e565b6040516826233132383137363b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926114da92910161372b565b60405160208183030381529060405280519060200120141561151f57604051806040016040528060098152602001684d6f6e65792042616760b81b815250925061161e565b6040516826233132383134323b60b81b602082015260290160408051808303601f19018152828252805160209182012091880151919261156092910161372b565b60405160208183030381529060405280519060200120141561159f576040518060400160405280600381526020016247656d60e81b815250925061161e565b6040516826233132373832303b60b81b602082015260290160408051808303601f1901815282825280516020918201209188015191926115e092910161372b565b60405160208183030381529060405280519060200120141561161e576040518060400160405280600681526020016542616e616e6160d01b81525092505b6040516826233132373831393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611660920161372b565b6040516020818303038152906040528051906020012014156116a157604051806040016040528060058152602001642632b6b7b760d91b8152509150611dd9565b6040516826233132373831353b60b81b602082015260290160408051808303601f19018152908290528051602091820120608088015190926116e3920161372b565b604051602081830303815290604052805190602001201415611725576040518060400160405280600681526020016547726170657360d01b8152509150611dd9565b6040516826233132373832353b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611767920161372b565b6040516020818303038152906040528051906020012014156117a857604051806040016040528060058152602001640a0cac2c6d60db1b8152509150611dd9565b6040516826233132373832373b60b81b602082015260290160408051808303601f19018152908290528051602091820120608088015190926117ea920161372b565b604051602081830303815290604052805190602001201415611830576040518060400160405280600a8152602001695374726177626572727960b01b8152509150611dd9565b6040516826233132373832363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611872920161372b565b6040516020818303038152906040528051906020012014156118b65760405180604001604052806008815260200167436865727269657360c01b8152509150611dd9565b6040516826233132393337333b60b81b602082015260290160408051808303601f19018152908290528051602091820120608088015190926118f8920161372b565b60405160208183030381529060405280519060200120141561193857604051806040016040528060048152602001634b69776960e01b8152509150611dd9565b6040516826233132373832313b60b81b602082015260290160408051808303601f190181529082905280516020918201206080880151909261197a920161372b565b6040516020818303038152906040528051906020012014156119bf576040518060400160405280600981526020016850696e656170706c6560b81b8152509150611dd9565b6040516826233132373831373b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611a01920161372b565b604051602081830303815290604052805190602001201415611a47576040518060400160405280600a8152602001692bb0ba32b936b2b637b760b11b8152509150611dd9565b6040516826233132393338393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611a89920161372b565b604051602081830303815290604052805190602001201415611aca57604051806040016040528060058152602001644d616e676f60d81b8152509150611dd9565b6040516826233132373832323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611b0c920161372b565b604051602081830303815290604052805190602001201415611b4d57604051806040016040528060058152602001644170706c6560d81b8152509150611dd9565b6040516826233132373832343b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611b8f920161372b565b604051602081830303815290604052805190602001201415611bcf57604051806040016040528060048152602001632832b0b960e11b8152509150611dd9565b6040516826233132383237363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611c11920161372b565b604051602081830303815290604052805190602001201415611c51576040518060400160405280600481526020016310995b1b60e21b8152509150611dd9565b6040516826233132383137363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611c93920161372b565b604051602081830303815290604052805190602001201415611cd857604051806040016040528060098152602001684d6f6e65792042616760b81b8152509150611dd9565b6040516826233132383134323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611d1a920161372b565b604051602081830303815290604052805190602001201415611d59576040518060400160405280600381526020016247656d60e81b8152509150611dd9565b6040516826233132373832303b60b81b602082015260290160408051808303601f1901815290829052805160209182012060808801519092611d9b920161372b565b604051602081830303815290604052805190602001201415611dd9576040518060400160405280600681526020016542616e616e6160d01b81525091505b6040516826233132373831393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611e1b920161372b565b604051602081830303815290604052805190602001201415611e5957506040805180820190915260058152642632b6b7b760d91b6020820152612567565b6040516826233132373831353b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611e9b920161372b565b604051602081830303815290604052805190602001201415611eda575060408051808201909152600681526547726170657360d01b6020820152612567565b6040516826233132373832353b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611f1c920161372b565b604051602081830303815290604052805190602001201415611f5a57506040805180820190915260058152640a0cac2c6d60db1b6020820152612567565b6040516826233132373832373b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092611f9c920161372b565b604051602081830303815290604052805190602001201415611fdf575060408051808201909152600a8152695374726177626572727960b01b6020820152612567565b6040516826233132373832363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092612021920161372b565b6040516020818303038152906040528051906020012014156120625750604080518082019091526008815267436865727269657360c01b6020820152612567565b6040516826233132393337333b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926120a4920161372b565b6040516020818303038152906040528051906020012014156120e157506040805180820190915260048152634b69776960e01b6020820152612567565b6040516826233132373832313b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c08801519092612123920161372b565b604051602081830303815290604052805190602001201415612165575060408051808201909152600981526850696e656170706c6560b81b6020820152612567565b6040516826233132373831373b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926121a7920161372b565b6040516020818303038152906040528051906020012014156121ea575060408051808201909152600a8152692bb0ba32b936b2b637b760b11b6020820152612567565b6040516826233132393338393b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261222c920161372b565b60405160208183030381529060405280519060200120141561226a57506040805180820190915260058152644d616e676f60d81b6020820152612567565b6040516826233132373832323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926122ac920161372b565b6040516020818303038152906040528051906020012014156122ea57506040805180820190915260058152644170706c6560d81b6020820152612567565b6040516826233132373832343b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261232c920161372b565b60405160208183030381529060405280519060200120141561236957506040805180820190915260048152632832b0b960e11b6020820152612567565b6040516826233132383237363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926123ab920161372b565b6040516020818303038152906040528051906020012014156123e8575060408051808201909152600481526310995b1b60e21b6020820152612567565b6040516826233132383137363b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261242a920161372b565b60405160208183030381529060405280519060200120141561246c57506040805180820190915260098152684d6f6e65792042616760b81b6020820152612567565b6040516826233132383134323b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c088015190926124ae920161372b565b6040516020818303038152906040528051906020012014156124ea575060408051808201909152600381526247656d60e81b6020820152612567565b6040516826233132373832303b60b81b602082015260290160408051808303601f1901815290829052805160209182012060c0880151909261252c920161372b565b604051602081830303815290604052805190602001201415612567575060408051808201909152600681526542616e616e6160d01b60208201525b60006125738484612ca7565b801561258457506125848383612ca7565b6125a857604051806040016040528060028152602001614e6f60f01b8152506125c5565b6040518060400160405280600381526020016259657360e81b8152505b8484846125fe8888886040516020016125e093929190613776565b6040516020818303038152906040528051906020012060001c612d0e565b60405160200161261295949392919061385e565b604051602081830303815290604052905060006126616126318a612d0e565b61263a88612e0c565b8460405160200161264d93929190613a20565b604051602081830303815290604052612e0c565b90508060405160200161267491906139db565b60408051601f198184030181529190529998505050505050505050565b606061038b826040518060400160405280601a81526020017f414c4c594f555247414d424c4541524542454c4f4e47544f5553000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156106c057838290600052602060002001805461270e90613ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461273a90613ccf565b80156127875780601f1061275c57610100808354040283529160200191612787565b820191906000526020600020905b81548152906001019060200180831161276a57829003601f168201915b5050505050815260200190600101906126ef565b600b546001600160a01b031633146127c55760405162461bcd60e51b815260040161049890613bbb565b6001600160a01b03811661282a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610498565b61283381612c22565b50565b60006001600160e01b031982166380ac58cd60e01b148061286757506001600160e01b03198216635b5e139f60e01b145b8061038b57506301ffc9a760e01b6001600160e01b031983161461038b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128bb82610acd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600061292a8461290587612d0e565b604051602001612916929190613747565b604051602081830303815290604052612f72565b905060008384518361293c9190613d25565b8151811061294c5761294c613d7b565b6020026020010151905080925050509392505050565b6000818152600260205260408120546001600160a01b03166129db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610498565b60006129e683610acd565b9050806001600160a01b0316846001600160a01b03161480612a215750836001600160a01b0316612a1684610423565b6001600160a01b0316145b80612a5157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612a6c82610acd565b6001600160a01b031614612ad45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610498565b6001600160a01b038216612b365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610498565b612b41838383612fa3565b612b4c600082612886565b6001600160a01b0383166000908152600360205260408120805460019290612b75908490613c8c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612ba3908490613c41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612c1e82826040518060200160405280600081525061305b565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612c7f848484612a59565b612c8b8484848461308e565b610d075760405162461bcd60e51b815260040161049890613b69565b600081604051602001612cba919061372b565b6040516020818303038152906040528051906020012083604051602001612ce1919061372b565b604051602081830303815290604052805190602001201415612d055750600161038b565b50600092915050565b606081612d325750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612d5c5780612d4681613d0a565b9150612d559050600a83613c59565b9150612d36565b60008167ffffffffffffffff811115612d7757612d77613d91565b6040519080825280601f01601f191660200182016040528015612da1576020820181803683370190505b5090505b8415612a5157612db6600183613c8c565b9150612dc3600a86613d25565b612dce906030613c41565b60f81b818381518110612de357612de3613d7b565b60200101906001600160f81b031916908160001a905350612e05600a86613c59565b9450612da5565b805160609080612e2c575050604080516020810190915260008152919050565b60006003612e3b836002613c41565b612e459190613c59565b612e50906004613c6d565b90506000612e5f826020613c41565b67ffffffffffffffff811115612e7757612e77613d91565b6040519080825280601f01601f191660200182016040528015612ea1576020820181803683370190505b5090506000604051806060016040528060408152602001613df7604091399050600181016020830160005b86811015612f2d576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612ecc565b506003860660018114612f475760028114612f5857612f64565b613d3d60f01b600119830152612f64565b603d60f81b6000198301525b505050918152949350505050565b600081604051602001612f85919061372b565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b038316612ffe57612ff981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613021565b816001600160a01b0316836001600160a01b03161461302157613021838261319b565b6001600160a01b038216613038576105ce81613238565b826001600160a01b0316826001600160a01b0316146105ce576105ce82826132e7565b613065838361332b565b613072600084848461308e565b6105ce5760405162461bcd60e51b815260040161049890613b69565b60006001600160a01b0384163b1561319057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130d2903390899088908890600401613b19565b602060405180830381600087803b1580156130ec57600080fd5b505af192505050801561311c575060408051601f3d908101601f19168201909252613119918101906136ad565b60015b613176573d80801561314a576040519150601f19603f3d011682016040523d82523d6000602084013e61314f565b606091505b50805161316e5760405162461bcd60e51b815260040161049890613b69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a51565b506001949350505050565b600060016131a884610b44565b6131b29190613c8c565b600083815260076020526040902054909150808214613205576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061324a90600190613c8c565b6000838152600960205260408120546008805493945090928490811061327257613272613d7b565b90600052602060002001549050806008838154811061329357613293613d7b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806132cb576132cb613d65565b6001900381819060005260206000200160009055905550505050565b60006132f283610b44565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166133815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610498565b6000818152600260205260409020546001600160a01b0316156133e65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610498565b6133f260008383612fa3565b6001600160a01b038216600090815260036020526040812080546001929061341b908490613c41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061010001604052806008905b60608152602001906001900390816134895790505090565b80356001600160a01b03811681146134b857600080fd5b919050565b6000602082840312156134cf57600080fd5b6134d8826134a1565b9392505050565b600080604083850312156134f257600080fd5b6134fb836134a1565b9150613509602084016134a1565b90509250929050565b60008060006060848603121561352757600080fd5b613530846134a1565b925061353e602085016134a1565b9150604084013590509250925092565b6000806000806080858703121561356457600080fd5b61356d856134a1565b935061357b602086016134a1565b925060408501359150606085013567ffffffffffffffff8082111561359f57600080fd5b818701915087601f8301126135b357600080fd5b8135818111156135c5576135c5613d91565b604051601f8201601f19908116603f011681019083821181831017156135ed576135ed613d91565b816040528281528a602084870101111561360657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561363d57600080fd5b613646836134a1565b91506020830135801515811461365b57600080fd5b809150509250929050565b6000806040838503121561367957600080fd5b613682836134a1565b946020939093013593505050565b6000602082840312156136a257600080fd5b81356134d881613da7565b6000602082840312156136bf57600080fd5b81516134d881613da7565b6000602082840312156136dc57600080fd5b5035919050565b600081518084526136fb816020860160208601613ca3565b601f01601f19169290920160200192915050565b60008151613721818560208601613ca3565b9290920192915050565b6000825161373d818460208701613ca3565b9190910192915050565b60008351613759818460208801613ca3565b83519083019061376d818360208801613ca3565b01949350505050565b60008451613788818460208901613ca3565b84519083019061379c818360208901613ca3565b84519101906137af818360208801613ca3565b0195945050505050565b6000895160206137cc8285838f01613ca3565b8a51918401916137df8184848f01613ca3565b8a519201916137f18184848e01613ca3565b89519201916138038184848d01613ca3565b88519201916138158184848c01613ca3565b87519201916138278184848b01613ca3565b86519201916138398184848a01613ca3565b855192019161384b8184848901613ca3565b919091019b9a5050505050505050505050565b7f61747472696275746573223a5b7b2257696e22203a2022000000000000000000815260008651613896816017850160208b01613ca3565b7f227d2c7b2274726169745f74797065223a22536c6f74204f6e65222c2022766160179184019182015265363ab2911d1160d11b6037820181905287516138e481603d850160208c01613ca3565b7f227d2c7b2274726169745f74797065223a22536c6f742054776f222c20227661603d9390910192830152605d8201528551613927816063840160208a01613ca3565b7f227d2c7b2274726169745f74797065223a22536c6f74205468726565222c202260639290910191820152673b30b63ab2911d1160c11b60838201526139cf6139bf6139b9613979608b85018961370f565b7f227d2c7b2274726169745f74797065223a22526172697479205369676e61747581526d3932911610113b30b63ab2911d1160911b6020820152602e0190565b8661370f565b63227d5d7d60e01b815260040190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a1381601d850160208701613ca3565b91909101601d0192915050565b6f7b226e616d65223a20225370696e202360801b81528351600090613a4c816010850160208901613ca3565b7f222c20226465736372697074696f6e223a20224c6f6f742028666f722047616d6010918401918201527f626c657273292e2046726565207370696e73202b206761732e2048617665206660308201527f756e21222c2022696d616765223a2022646174613a696d6167652f7376672b786050820152691b5b0ed8985cd94d8d0b60b21b60708201528451613ae881607a840160208901613ca3565b6211161160e91b607a92909101918201528351613b0c81607d840160208801613ca3565b01607d0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b4c908301846136e3565b9695505050505050565b6020815260006134d860208301846136e3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613c5457613c54613d39565b500190565b600082613c6857613c68613d4f565b500490565b6000816000190483118215151615613c8757613c87613d39565b500290565b600082821015613c9e57613c9e613d39565b500390565b60005b83811015613cbe578181015183820152602001613ca6565b83811115610d075750506000910152565b600181811c90821680613ce357607f821691505b60208210811415613d0457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d1e57613d1e613d39565b5060010190565b600082613d3457613d34613d4f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461283357600080fdfe54484556414c4c5945534f474553414c4f4e475448454e4f52544853494445414c4c594f555247414d424c4541524542454c4f4e47544f55534142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d223230352220793d223630252220636c6173733d2269636f6e223e3c7465787420783d2234302220793d223630252220636c6173733d2269636f6e223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302036303020363030223e3c7374796c653e2e69636f6e7b20666f6e742d73697a653a2031323870783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c2f746578743e3c7465787420783d223336302220793d223630252220636c6173733d2269636f6e223e49484541524441465249454e44534159494e4747414d424c494e47495341444449435449564554484556414c4c5945534f474553414c4f4e475448454e4f52544853494445414c4c594f555247414d424c4541524542454c4f4e47544f5553a26469706673582212200613c68f4045b90151db3ef4852441099d5af12cfa589be35c349c872429a95c64736f6c63430008060033
Deployed Bytecode Sourcemap
44450:13495:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38302:224;;;;;;:::i;:::-;;:::i;:::-;;;16081:14:1;;16074:22;16056:41;;16044:2;16029:18;38302:224:0;;;;;;;;25430:100;;;:::i;:::-;;;;;;;:::i;26989:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;15379:32:1;;;15361:51;;15349:2;15334:18;26989:221:0;15316:102:1;26512:411:0;;;;;;:::i;:::-;;:::i;:::-;;38942:113;39030:10;:17;38942:113;;;23974:25:1;;;23962:2;23947:18;38942:113:0;23929:76:1;46412:179:0;;;;;;:::i;:::-;;:::i;27879:339::-;;;;;;:::i;:::-;;:::i;38610:256::-;;;;;;:::i;:::-;;:::i;56499:172::-;;;;;;:::i;:::-;;:::i;28289:185::-;;;;;;:::i;:::-;;:::i;56683:::-;;;;;;:::i;:::-;;:::i;46603:217::-;;;;;;:::i;:::-;;:::i;39132:233::-;;;;;;:::i;:::-;;:::i;25124:239::-;;;;;;:::i;:::-;;:::i;24854:208::-;;;;;;:::i;:::-;;:::i;9890:94::-;;;:::i;9239:87::-;9312:6;;-1:-1:-1;;;;;9312:6:0;9239:87;;25599:104;;;:::i;27282:295::-;;;;;;:::i;:::-;;:::i;28545:328::-;;;;;;:::i;:::-;;:::i;47186:9305::-;;;;;;:::i;:::-;;:::i;46252:148::-;;;;;;:::i;:::-;;:::i;27648:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27769:25:0;;;27745:4;27769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27648:164;10139:192;;;;;;:::i;:::-;;:::i;38302:224::-;38404:4;-1:-1:-1;;;;;;38428:50:0;;-1:-1:-1;;;38428:50:0;;:90;;;38482:36;38506:11;38482:23;:36::i;:::-;38421:97;38302:224;-1:-1:-1;;38302:224:0:o;25430:100::-;25484:13;25517:5;25510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25430:100;:::o;26989:221::-;27065:7;30472:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30472:16:0;27085:73;;;;-1:-1:-1;;;27085:73:0;;20908:2:1;27085:73:0;;;20890:21:1;20947:2;20927:18;;;20920:30;20986:34;20966:18;;;20959:62;-1:-1:-1;;;21037:18:1;;;21030:42;21089:19;;27085:73:0;;;;;;;;;-1:-1:-1;27178:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27178:24:0;;26989:221::o;26512:411::-;26593:13;26609:23;26624:7;26609:14;:23::i;:::-;26593:39;;26657:5;-1:-1:-1;;;;;26651:11:0;:2;-1:-1:-1;;;;;26651:11:0;;;26643:57;;;;-1:-1:-1;;;26643:57:0;;22437:2:1;26643:57:0;;;22419:21:1;22476:2;22456:18;;;22449:30;22515:34;22495:18;;;22488:62;-1:-1:-1;;;22566:18:1;;;22559:31;22607:19;;26643:57:0;22409:223:1;26643:57:0;8195:10;-1:-1:-1;;;;;26735:21:0;;;;:62;;-1:-1:-1;26760:37:0;26777:5;8195:10;27648:164;:::i;26760:37::-;26713:168;;;;-1:-1:-1;;;26713:168:0;;19301:2:1;26713:168:0;;;19283:21:1;19340:2;19320:18;;;19313:30;19379:34;19359:18;;;19352:62;19450:26;19430:18;;;19423:54;19494:19;;26713:168:0;19273:246:1;26713:168:0;26894:21;26903:2;26907:7;26894:8;:21::i;:::-;26582:341;26512:411;;:::o;46412:179::-;46468:13;46501:82;46507:7;46501:82;;;;;;;;;;;;;;;;;46577:5;46501:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:82::i;27879:339::-;28074:41;8195:10;28107:7;28074:18;:41::i;:::-;28066:103;;;;-1:-1:-1;;;28066:103:0;;;;;;;:::i;:::-;28182:28;28192:4;28198:2;28202:7;28182:9;:28::i;38610:256::-;38707:7;38743:23;38760:5;38743:16;:23::i;:::-;38735:5;:31;38727:87;;;;-1:-1:-1;;;38727:87:0;;16534:2:1;38727:87:0;;;16516:21:1;16573:2;16553:18;;;16546:30;16612:34;16592:18;;;16585:62;-1:-1:-1;;;16663:18:1;;;16656:41;16714:19;;38727:87:0;16506:233:1;38727:87:0;-1:-1:-1;;;;;;38832:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38610:256::o;56499:172::-;12170:1;12766:7;;:19;;12758:63;;;;-1:-1:-1;;;12758:63:0;;23670:2:1;12758:63:0;;;23652:21:1;23709:2;23689:18;;;23682:30;23748:33;23728:18;;;23721:61;23799:18;;12758:63:0;23642:181:1;12758:63:0;12170:1;12899:7;:18;56570:11;;;;;:29:::1;;;56595:4;56585:7;:14;56570:29;56562:58;;;::::0;-1:-1:-1;;;56562:58:0;;21682:2:1;56562:58:0::1;::::0;::::1;21664:21:1::0;21721:2;21701:18;;;21694:30;-1:-1:-1;;;21740:18:1;;;21733:46;21796:18;;56562:58:0::1;21654:166:1::0;56562:58:0::1;56631:32;8195:10:::0;56641:12:::1;56655:7;56631:9;:32::i;:::-;-1:-1:-1::0;12126:1:0;13078:7;:22;56499:172::o;28289:185::-;28427:39;28444:4;28450:2;28454:7;28427:39;;;;;;;;;;;;:16;:39::i;56683:185::-;12170:1;12766:7;;:19;;12758:63;;;;-1:-1:-1;;;12758:63:0;;23670:2:1;12758:63:0;;;23652:21:1;23709:2;23689:18;;;23682:30;23748:33;23728:18;;;23721:61;23799:18;;12758:63:0;23642:181:1;12758:63:0;12170:1;12899:7;:18;9312:6;;-1:-1:-1;;;;;9312:6:0;8195:10;9459:23:::1;9451:68;;;;-1:-1:-1::0;;;9451:68:0::1;;;;;;;:::i;:::-;56779:4:::2;56769:7;:14;:32;;;;;56797:4;56787:7;:14;56769:32;56761:61;;;::::0;-1:-1:-1;;;56761:61:0;;21682:2:1;56761:61:0::2;::::0;::::2;21664:21:1::0;21721:2;21701:18;;;21694:30;-1:-1:-1;;;21740:18:1;;;21733:46;21796:18;;56761:61:0::2;21654:166:1::0;56761:61:0::2;56833:27;56843:7;9312:6:::0;;-1:-1:-1;;;;;9312:6:0;;9239:87;46603:217;46659:13;46692:120;46698:7;46692:120;;;;;;;;;;;;;;;;;46806:5;46692:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39132:233;39207:7;39243:30;39030:10;:17;;38942:113;39243:30;39235:5;:38;39227:95;;;;-1:-1:-1;;;39227:95:0;;23257:2:1;39227:95:0;;;23239:21:1;23296:2;23276:18;;;23269:30;23335:34;23315:18;;;23308:62;-1:-1:-1;;;23386:18:1;;;23379:42;23438:19;;39227:95:0;23229:234:1;39227:95:0;39340:10;39351:5;39340:17;;;;;;;;:::i;:::-;;;;;;;;;39333:24;;39132:233;;;:::o;25124:239::-;25196:7;25232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25232:16:0;25267:19;25259:73;;;;-1:-1:-1;;;25259:73:0;;20137:2:1;25259:73:0;;;20119:21:1;20176:2;20156:18;;;20149:30;20215:34;20195:18;;;20188:62;-1:-1:-1;;;20266:18:1;;;20259:39;20315:19;;25259:73:0;20109:231:1;24854:208:0;24926:7;-1:-1:-1;;;;;24954:19:0;;24946:74;;;;-1:-1:-1;;;24946:74:0;;19726:2:1;24946:74:0;;;19708:21:1;19765:2;19745:18;;;19738:30;19804:34;19784:18;;;19777:62;-1:-1:-1;;;19855:18:1;;;19848:40;19905:19;;24946:74:0;19698:232:1;24946:74:0;-1:-1:-1;;;;;;25038:16:0;;;;;:9;:16;;;;;;;24854:208::o;9890:94::-;9312:6;;-1:-1:-1;;;;;9312:6:0;8195:10;9459:23;9451:68;;;;-1:-1:-1;;;9451:68:0;;;;;;;:::i;:::-;9955:21:::1;9973:1;9955:9;:21::i;:::-;9890:94::o:0;25599:104::-;25655:13;25688:7;25681:14;;;;;:::i;27282:295::-;-1:-1:-1;;;;;27385:24:0;;8195:10;27385:24;;27377:62;;;;-1:-1:-1;;;27377:62:0;;18534:2:1;27377:62:0;;;18516:21:1;18573:2;18553:18;;;18546:30;18612:27;18592:18;;;18585:55;18657:18;;27377:62:0;18506:175:1;27377:62:0;8195:10;27452:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27452:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27452:53:0;;;;;;;;;;27521:48;;16056:41:1;;;27452:42:0;;8195:10;27521:48;;16029:18:1;27521:48:0;;;;;;;27282:295;;:::o;28545:328::-;28720:41;8195:10;28753:7;28720:18;:41::i;:::-;28712:103;;;;-1:-1:-1;;;28712:103:0;;;;;;;:::i;:::-;28826:39;28840:4;28846:2;28850:7;28859:5;28826:13;:39::i;:::-;28545:328;;;;:::o;47186:9305::-;47251:13;47277:22;;:::i;:::-;47320:224;;;;;;;;;;;;;;;;;;;47557:47;;;;;;;;;;;;;;47320:32;47557:47;;;:8;;;:47;47636:17;47645:7;47636:8;:17::i;:::-;47625:8;;;;:28;;;;47674:55;;;;;;;;;;;;;47625:8;47674:55;;;:8;;;:55;47753:17;47762:7;47753:8;:17::i;:::-;47742:8;;;:28;47783:55;;;;;;;;;;;;;;47742:8;47783:55;;;:8;;;:55;47862:17;47871:7;47862:8;:17::i;:::-;47851:8;;;:28;47892:26;;;;;;;;;;;;-1:-1:-1;;;47851:8:0;47892:26;;;47851:5;47898:1;47892:8;;;;;;;;:26;;;;47992:8;;48002;;;;48012;;;;;48022;;;;48032;;;;48042;;;;48052;;;;48062;;;;47975:96;;47931:20;;47975:96;;47992:8;48002;48062;47975:96;;:::i;:::-;;;;-1:-1:-1;;47975:96:0;;;;;;48103:29;;;;;;;;;-1:-1:-1;;;47975:96:0;48103:29;;;;;;48143;;;;;;;;;;;;;;;;48183;;;;;;;;;;;;;;;;;48316;;47975:96;;-1:-1:-1;48143:29:0;48183;;48316;;;-1:-1:-1;;;13483:24:1;;13532:1;13523:11;;13473:67;48316:29:0;;;;;;;-1:-1:-1;;48316:29:0;;;;;;48306:40;;48316:29;48306:40;;;;48292:8;;;;48306:40;;48275:26;;48292:8;48275:26;;:::i;:::-;;;;;;;;;;;;;48265:37;;;;;;:81;48262:2358;;;48376:16;;;;;;;;;;;;;-1:-1:-1;;;48376:16:0;;;;;48262:2358;;;48473:29;;-1:-1:-1;;;48473:29:0;;;7798:24:1;7838:11;;48473:29:0;;;;;;-1:-1:-1;;48473:29:0;;;;;;48463:40;;48473:29;48463:40;;;;48449:8;;;;48463:40;;48432:26;;48449:8;48432:26;;:::i;:::-;;;;;;;;;;;;;48422:37;;;;;;:81;48419:2201;;;48533:17;;;;;;;;;;;;;-1:-1:-1;;;48533:17:0;;;;;48419:2201;;;48631:29;;-1:-1:-1;;;48631:29:0;;;8854:24:1;8894:11;;48631:29:0;;;;;;-1:-1:-1;;48631:29:0;;;;;;48621:40;;48631:29;48621:40;;;;48607:8;;;;48621:40;;48590:26;;48607:8;48590:26;;:::i;:::-;;;;;;;;;;;;;48580:37;;;;;;:81;48577:2043;;;48691:16;;;;;;;;;;;;;-1:-1:-1;;;48691:16:0;;;;;48577:2043;;;48788:29;;-1:-1:-1;;;48788:29:0;;;8326:24:1;8366:11;;48788:29:0;;;;;;-1:-1:-1;;48788:29:0;;;;;;48778:40;;48788:29;48778:40;;;;48764:8;;;;48778:40;;48747:26;;48764:8;48747:26;;:::i;:::-;;;;;;;;;;;;;48737:37;;;;;;:81;48734:1886;;;48848:21;;;;;;;;;;;;;-1:-1:-1;;;48848:21:0;;;;;48734:1886;;;48950:29;;-1:-1:-1;;;48950:29:0;;;9646:24:1;9686:11;;48950:29:0;;;;;;-1:-1:-1;;48950:29:0;;;;;;48940:40;;48950:29;48940:40;;;;48926:8;;;;48940:40;;48909:26;;48926:8;48909:26;;:::i;:::-;;;;;;;;;;;;;48899:37;;;;;;:81;48896:1724;;;49010:19;;;;;;;;;;;;;-1:-1:-1;;;49010:19:0;;;;;48896:1724;;;49110:29;;-1:-1:-1;;;49110:29:0;;;15153:24:1;15193:11;;49110:29:0;;;;;;-1:-1:-1;;49110:29:0;;;;;;49100:40;;49110:29;49100:40;;;;49086:8;;;;49100:40;;49069:26;;49086:8;49069:26;;:::i;:::-;;;;;;;;;;;;;49059:37;;;;;;:81;49056:1564;;;49170:15;;;;;;;;;;;;;-1:-1:-1;;;49170:15:0;;;;;49056:1564;;;49266:29;;-1:-1:-1;;;49266:29:0;;;8062:24:1;8102:11;;49266:29:0;;;;;;-1:-1:-1;;49266:29:0;;;;;;49256:40;;49266:29;49256:40;;;;49242:8;;;;49256:40;;49225:26;;49242:8;49225:26;;:::i;:::-;;;;;;;;;;;;;49215:37;;;;;;:81;49212:1408;;;49326:20;;;;;;;;;;;;;-1:-1:-1;;;49326:20:0;;;;;49212:1408;;;49427:29;;-1:-1:-1;;;49427:29:0;;;12766:24:1;12806:11;;49427:29:0;;;;;;-1:-1:-1;;49427:29:0;;;;;;49417:40;;49427:29;49417:40;;;;49403:8;;;;49417:40;;49386:26;;49403:8;49386:26;;:::i;:::-;;;;;;;;;;;;;49376:37;;;;;;:81;49373:1247;;;49487:21;;;;;;;;;;;;;-1:-1:-1;;;49487:21:0;;;;;49373:1247;;;49589:29;;-1:-1:-1;;;49589:29:0;;;9382:24:1;9422:11;;49589:29:0;;;;;;-1:-1:-1;;49589:29:0;;;;;;49579:40;;49589:29;49579:40;;;;49565:8;;;;49579:40;;49548:26;;49565:8;49548:26;;:::i;:::-;;;;;;;;;;;;;49538:37;;;;;;:81;49535:1085;;;49649:16;;;;;;;;;;;;;-1:-1:-1;;;49649:16:0;;;;;49535:1085;;;49746:29;;-1:-1:-1;;;49746:29:0;;;10174:24:1;10214:11;;49746:29:0;;;;;;-1:-1:-1;;49746:29:0;;;;;;49736:40;;49746:29;49736:40;;;;49722:8;;;;49736:40;;49705:26;;49722:8;49705:26;;:::i;:::-;;;;;;;;;;;;;49695:37;;;;;;:81;49692:928;;;49806:16;;;;;;;;;;;;;-1:-1:-1;;;49806:16:0;;;;;49692:928;;;49903:29;;-1:-1:-1;;;49903:29:0;;;9118:24:1;9158:11;;49903:29:0;;;;;;-1:-1:-1;;49903:29:0;;;;;;49893:40;;49903:29;49893:40;;;;49879:8;;;;49893:40;;49862:26;;49879:8;49862:26;;:::i;:::-;;;;;;;;;;;;;49852:37;;;;;;:81;49849:771;;;49963:15;;;;;;;;;;;;;-1:-1:-1;;;49963:15:0;;;;;49849:771;;;50059:29;;-1:-1:-1;;;50059:29:0;;;12502:24:1;12542:11;;50059:29:0;;;;;;-1:-1:-1;;50059:29:0;;;;;;50049:40;;50059:29;50049:40;;;;50035:8;;;;50049:40;;50018:26;;50035:8;50018:26;;:::i;:::-;;;;;;;;;;;;;50008:37;;;;;;:81;50005:615;;;50119:15;;;;;;;;;;;;;-1:-1:-1;;;50119:15:0;;;;;50005:615;;;50215:29;;-1:-1:-1;;;50215:29:0;;;7534:24:1;7574:11;;50215:29:0;;;;;;-1:-1:-1;;50215:29:0;;;;;;50205:40;;50215:29;50205:40;;;;50191:8;;;;50205:40;;50174:26;;50191:8;50174:26;;:::i;:::-;;;;;;;;;;;;;50164:37;;;;;;:81;50161:459;;;50275:20;;;;;;;;;;;;;-1:-1:-1;;;50275:20:0;;;;;50161:459;;;50376:29;;-1:-1:-1;;;50376:29:0;;;9910:24:1;9950:11;;50376:29:0;;;;;;-1:-1:-1;;50376:29:0;;;;;;50366:40;;50376:29;50366:40;;;;50352:8;;;;50366:40;;50335:26;;50352:8;50335:26;;:::i;:::-;;;;;;;;;;;;;50325:37;;;;;;:81;50322:298;;;50436:14;;;;;;;;;;;;;-1:-1:-1;;;50436:14:0;;;;;50322:298;;;50531:29;;-1:-1:-1;;;50531:29:0;;;8590:24:1;8630:11;;50531:29:0;;;;;;-1:-1:-1;;50531:29:0;;;;;;50521:40;;50531:29;50521:40;;;;50507:8;;;;50521:40;;50490:26;;50507:8;50490:26;;:::i;:::-;;;;;;;;;;;;;50480:37;;;;;;:81;50477:143;;;50591:17;;;;;;;;;;;;;-1:-1:-1;;;50591:17:0;;;;;50477:143;50723:29;;-1:-1:-1;;;50723:29:0;;;13483:24:1;13523:11;;50723:29:0;;;;;;-1:-1:-1;;50723:29:0;;;;;;;50713:40;;50723:29;50713:40;;;;50699:8;;;;50713:40;;50682:26;;;;:::i;:::-;;;;;;;;;;;;;50672:37;;;;;;:81;50669:2358;;;50783:16;;;;;;;;;;;;;-1:-1:-1;;;50783:16:0;;;;;50669:2358;;;50880:29;;-1:-1:-1;;;50880:29:0;;;7798:24:1;7838:11;;50880:29:0;;;;;;-1:-1:-1;;50880:29:0;;;;;;;50870:40;;50880:29;50870:40;;;;50856:8;;;;50870:40;;50839:26;;;;:::i;:::-;;;;;;;;;;;;;50829:37;;;;;;:81;50826:2201;;;50940:17;;;;;;;;;;;;;-1:-1:-1;;;50940:17:0;;;;;50826:2201;;;51038:29;;-1:-1:-1;;;51038:29:0;;;8854:24:1;8894:11;;51038:29:0;;;;;;-1:-1:-1;;51038:29:0;;;;;;;51028:40;;51038:29;51028:40;;;;51014:8;;;;51028:40;;50997:26;;;;:::i;:::-;;;;;;;;;;;;;50987:37;;;;;;:81;50984:2043;;;51098:16;;;;;;;;;;;;;-1:-1:-1;;;51098:16:0;;;;;50984:2043;;;51195:29;;-1:-1:-1;;;51195:29:0;;;8326:24:1;8366:11;;51195:29:0;;;;;;-1:-1:-1;;51195:29:0;;;;;;;51185:40;;51195:29;51185:40;;;;51171:8;;;;51185:40;;51154:26;;;;:::i;:::-;;;;;;;;;;;;;51144:37;;;;;;:81;51141:1886;;;51255:21;;;;;;;;;;;;;-1:-1:-1;;;51255:21:0;;;;;51141:1886;;;51357:29;;-1:-1:-1;;;51357:29:0;;;9646:24:1;9686:11;;51357:29:0;;;;;;-1:-1:-1;;51357:29:0;;;;;;;51347:40;;51357:29;51347:40;;;;51333:8;;;;51347:40;;51316:26;;;;:::i;:::-;;;;;;;;;;;;;51306:37;;;;;;:81;51303:1724;;;51417:19;;;;;;;;;;;;;-1:-1:-1;;;51417:19:0;;;;;51303:1724;;;51517:29;;-1:-1:-1;;;51517:29:0;;;15153:24:1;15193:11;;51517:29:0;;;;;;-1:-1:-1;;51517:29:0;;;;;;;51507:40;;51517:29;51507:40;;;;51493:8;;;;51507:40;;51476:26;;;;:::i;:::-;;;;;;;;;;;;;51466:37;;;;;;:81;51463:1564;;;51577:15;;;;;;;;;;;;;-1:-1:-1;;;51577:15:0;;;;;51463:1564;;;51673:29;;-1:-1:-1;;;51673:29:0;;;8062:24:1;8102:11;;51673:29:0;;;;;;-1:-1:-1;;51673:29:0;;;;;;;51663:40;;51673:29;51663:40;;;;51649:8;;;;51663:40;;51632:26;;;;:::i;:::-;;;;;;;;;;;;;51622:37;;;;;;:81;51619:1408;;;51733:20;;;;;;;;;;;;;-1:-1:-1;;;51733:20:0;;;;;51619:1408;;;51834:29;;-1:-1:-1;;;51834:29:0;;;12766:24:1;12806:11;;51834:29:0;;;;;;-1:-1:-1;;51834:29:0;;;;;;;51824:40;;51834:29;51824:40;;;;51810:8;;;;51824:40;;51793:26;;;;:::i;:::-;;;;;;;;;;;;;51783:37;;;;;;:81;51780:1247;;;51894:21;;;;;;;;;;;;;-1:-1:-1;;;51894:21:0;;;;;51780:1247;;;51996:29;;-1:-1:-1;;;51996:29:0;;;9382:24:1;9422:11;;51996:29:0;;;;;;-1:-1:-1;;51996:29:0;;;;;;;51986:40;;51996:29;51986:40;;;;51972:8;;;;51986:40;;51955:26;;;;:::i;:::-;;;;;;;;;;;;;51945:37;;;;;;:81;51942:1085;;;52056:16;;;;;;;;;;;;;-1:-1:-1;;;52056:16:0;;;;;51942:1085;;;52153:29;;-1:-1:-1;;;52153:29:0;;;10174:24:1;10214:11;;52153:29:0;;;;;;-1:-1:-1;;52153:29:0;;;;;;;52143:40;;52153:29;52143:40;;;;52129:8;;;;52143:40;;52112:26;;;;:::i;:::-;;;;;;;;;;;;;52102:37;;;;;;:81;52099:928;;;52213:16;;;;;;;;;;;;;-1:-1:-1;;;52213:16:0;;;;;52099:928;;;52310:29;;-1:-1:-1;;;52310:29:0;;;9118:24:1;9158:11;;52310:29:0;;;;;;-1:-1:-1;;52310:29:0;;;;;;;52300:40;;52310:29;52300:40;;;;52286:8;;;;52300:40;;52269:26;;;;:::i;:::-;;;;;;;;;;;;;52259:37;;;;;;:81;52256:771;;;52370:15;;;;;;;;;;;;;-1:-1:-1;;;52370:15:0;;;;;52256:771;;;52466:29;;-1:-1:-1;;;52466:29:0;;;12502:24:1;12542:11;;52466:29:0;;;;;;-1:-1:-1;;52466:29:0;;;;;;;52456:40;;52466:29;52456:40;;;;52442:8;;;;52456:40;;52425:26;;;;:::i;:::-;;;;;;;;;;;;;52415:37;;;;;;:81;52412:615;;;52526:15;;;;;;;;;;;;;-1:-1:-1;;;52526:15:0;;;;;52412:615;;;52622:29;;-1:-1:-1;;;52622:29:0;;;7534:24:1;7574:11;;52622:29:0;;;;;;-1:-1:-1;;52622:29:0;;;;;;;52612:40;;52622:29;52612:40;;;;52598:8;;;;52612:40;;52581:26;;;;:::i;:::-;;;;;;;;;;;;;52571:37;;;;;;:81;52568:459;;;52682:20;;;;;;;;;;;;;-1:-1:-1;;;52682:20:0;;;;;52568:459;;;52783:29;;-1:-1:-1;;;52783:29:0;;;9910:24:1;9950:11;;52783:29:0;;;;;;-1:-1:-1;;52783:29:0;;;;;;;52773:40;;52783:29;52773:40;;;;52759:8;;;;52773:40;;52742:26;;;;:::i;:::-;;;;;;;;;;;;;52732:37;;;;;;:81;52729:298;;;52843:14;;;;;;;;;;;;;-1:-1:-1;;;52843:14:0;;;;;52729:298;;;52938:29;;-1:-1:-1;;;52938:29:0;;;8590:24:1;8630:11;;52938:29:0;;;;;;-1:-1:-1;;52938:29:0;;;;;;;52928:40;;52938:29;52928:40;;;;52914:8;;;;52928:40;;52897:26;;;;:::i;:::-;;;;;;;;;;;;;52887:37;;;;;;:81;52884:143;;;52998:17;;;;;;;;;;;;;-1:-1:-1;;;52998:17:0;;;;;52884:143;53130:29;;-1:-1:-1;;;53130:29:0;;;13483:24:1;13523:11;;53130:29:0;;;;;;-1:-1:-1;;53130:29:0;;;;;;;53120:40;;53130:29;53120:40;;;;53106:8;;;;53120:40;;53089:26;;;;:::i;:::-;;;;;;;;;;;;;53079:37;;;;;;:81;53076:2358;;;-1:-1:-1;53190:16:0;;;;;;;;;;;;-1:-1:-1;;;53190:16:0;;;;53076:2358;;;53287:29;;-1:-1:-1;;;53287:29:0;;;7798:24:1;7838:11;;53287:29:0;;;;;;-1:-1:-1;;53287:29:0;;;;;;;53277:40;;53287:29;53277:40;;;;53263:8;;;;53277:40;;53246:26;;;;:::i;:::-;;;;;;;;;;;;;53236:37;;;;;;:81;53233:2201;;;-1:-1:-1;53347:17:0;;;;;;;;;;;;-1:-1:-1;;;53347:17:0;;;;53233:2201;;;53445:29;;-1:-1:-1;;;53445:29:0;;;8854:24:1;8894:11;;53445:29:0;;;;;;-1:-1:-1;;53445:29:0;;;;;;;53435:40;;53445:29;53435:40;;;;53421:8;;;;53435:40;;53404:26;;;;:::i;:::-;;;;;;;;;;;;;53394:37;;;;;;:81;53391:2043;;;-1:-1:-1;53505:16:0;;;;;;;;;;;;-1:-1:-1;;;53505:16:0;;;;53391:2043;;;53602:29;;-1:-1:-1;;;53602:29:0;;;8326:24:1;8366:11;;53602:29:0;;;;;;-1:-1:-1;;53602:29:0;;;;;;;53592:40;;53602:29;53592:40;;;;53578:8;;;;53592:40;;53561:26;;;;:::i;:::-;;;;;;;;;;;;;53551:37;;;;;;:81;53548:1886;;;-1:-1:-1;53662:21:0;;;;;;;;;;;;-1:-1:-1;;;53662:21:0;;;;53548:1886;;;53764:29;;-1:-1:-1;;;53764:29:0;;;9646:24:1;9686:11;;53764:29:0;;;;;;-1:-1:-1;;53764:29:0;;;;;;;53754:40;;53764:29;53754:40;;;;53740:8;;;;53754:40;;53723:26;;;;:::i;:::-;;;;;;;;;;;;;53713:37;;;;;;:81;53710:1724;;;-1:-1:-1;53824:19:0;;;;;;;;;;;;-1:-1:-1;;;53824:19:0;;;;53710:1724;;;53924:29;;-1:-1:-1;;;53924:29:0;;;15153:24:1;15193:11;;53924:29:0;;;;;;-1:-1:-1;;53924:29:0;;;;;;;53914:40;;53924:29;53914:40;;;;53900:8;;;;53914:40;;53883:26;;;;:::i;:::-;;;;;;;;;;;;;53873:37;;;;;;:81;53870:1564;;;-1:-1:-1;53984:15:0;;;;;;;;;;;;-1:-1:-1;;;53984:15:0;;;;53870:1564;;;54080:29;;-1:-1:-1;;;54080:29:0;;;8062:24:1;8102:11;;54080:29:0;;;;;;-1:-1:-1;;54080:29:0;;;;;;;54070:40;;54080:29;54070:40;;;;54056:8;;;;54070:40;;54039:26;;;;:::i;:::-;;;;;;;;;;;;;54029:37;;;;;;:81;54026:1408;;;-1:-1:-1;54140:20:0;;;;;;;;;;;;-1:-1:-1;;;54140:20:0;;;;54026:1408;;;54241:29;;-1:-1:-1;;;54241:29:0;;;12766:24:1;12806:11;;54241:29:0;;;;;;-1:-1:-1;;54241:29:0;;;;;;;54231:40;;54241:29;54231:40;;;;54217:8;;;;54231:40;;54200:26;;;;:::i;:::-;;;;;;;;;;;;;54190:37;;;;;;:81;54187:1247;;;-1:-1:-1;54301:21:0;;;;;;;;;;;;-1:-1:-1;;;54301:21:0;;;;54187:1247;;;54403:29;;-1:-1:-1;;;54403:29:0;;;9382:24:1;9422:11;;54403:29:0;;;;;;-1:-1:-1;;54403:29:0;;;;;;;54393:40;;54403:29;54393:40;;;;54379:8;;;;54393:40;;54362:26;;;;:::i;:::-;;;;;;;;;;;;;54352:37;;;;;;:81;54349:1085;;;-1:-1:-1;54463:16:0;;;;;;;;;;;;-1:-1:-1;;;54463:16:0;;;;54349:1085;;;54560:29;;-1:-1:-1;;;54560:29:0;;;10174:24:1;10214:11;;54560:29:0;;;;;;-1:-1:-1;;54560:29:0;;;;;;;54550:40;;54560:29;54550:40;;;;54536:8;;;;54550:40;;54519:26;;;;:::i;:::-;;;;;;;;;;;;;54509:37;;;;;;:81;54506:928;;;-1:-1:-1;54620:16:0;;;;;;;;;;;;-1:-1:-1;;;54620:16:0;;;;54506:928;;;54717:29;;-1:-1:-1;;;54717:29:0;;;9118:24:1;9158:11;;54717:29:0;;;;;;-1:-1:-1;;54717:29:0;;;;;;;54707:40;;54717:29;54707:40;;;;54693:8;;;;54707:40;;54676:26;;;;:::i;:::-;;;;;;;;;;;;;54666:37;;;;;;:81;54663:771;;;-1:-1:-1;54777:15:0;;;;;;;;;;;;-1:-1:-1;;;54777:15:0;;;;54663:771;;;54873:29;;-1:-1:-1;;;54873:29:0;;;12502:24:1;12542:11;;54873:29:0;;;;;;-1:-1:-1;;54873:29:0;;;;;;;54863:40;;54873:29;54863:40;;;;54849:8;;;;54863:40;;54832:26;;;;:::i;:::-;;;;;;;;;;;;;54822:37;;;;;;:81;54819:615;;;-1:-1:-1;54933:15:0;;;;;;;;;;;;-1:-1:-1;;;54933:15:0;;;;54819:615;;;55029:29;;-1:-1:-1;;;55029:29:0;;;7534:24:1;7574:11;;55029:29:0;;;;;;-1:-1:-1;;55029:29:0;;;;;;;55019:40;;55029:29;55019:40;;;;55005:8;;;;55019:40;;54988:26;;;;:::i;:::-;;;;;;;;;;;;;54978:37;;;;;;:81;54975:459;;;-1:-1:-1;55089:20:0;;;;;;;;;;;;-1:-1:-1;;;55089:20:0;;;;54975:459;;;55190:29;;-1:-1:-1;;;55190:29:0;;;9910:24:1;9950:11;;55190:29:0;;;;;;-1:-1:-1;;55190:29:0;;;;;;;55180:40;;55190:29;55180:40;;;;55166:8;;;;55180:40;;55149:26;;;;:::i;:::-;;;;;;;;;;;;;55139:37;;;;;;:81;55136:298;;;-1:-1:-1;55250:14:0;;;;;;;;;;;;-1:-1:-1;;;55250:14:0;;;;55136:298;;;55345:29;;-1:-1:-1;;;55345:29:0;;;8590:24:1;8630:11;;55345:29:0;;;;;;-1:-1:-1;;55345:29:0;;;;;;;55335:40;;55345:29;55335:40;;;;55321:8;;;;55335:40;;55304:26;;;;:::i;:::-;;;;;;;;;;;;;55294:37;;;;;;:81;55291:143;;;-1:-1:-1;55405:17:0;;;;;;;;;;;;-1:-1:-1;;;55405:17:0;;;;55291:143;55454:19;55527:22;55534:6;55542;55527;:22::i;:::-;:48;;;;;55553:22;55560:6;55568;55553;:22::i;:::-;55527:62;;;;;;;;;;;;;;;-1:-1:-1;;;55527:62:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;55527:62:0;;;;55632:6;55680;55730;55786:70;55830:6;55838;55846;55813:40;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55803:51;;;;;;55795:60;;55786:8;:70::i;:::-;55483:381;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55454:411;;55886:18;55907:457;56051:17;56060:7;56051:8;:17::i;:::-;56230:28;56250:6;56230:13;:28::i;:::-;56291:5;55988:331;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55907:13;:457::i;:::-;55886:478;;56451:4;56401:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;56401:55:0;;;;;;;;;;47186:9305;-1:-1:-1;;;;;;;;;47186:9305:0:o;46252:148::-;46308:13;46341:51;46347:7;46341:51;;;;;;;;;;;;;;;;;46386:5;46341:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10139:192;9312:6;;-1:-1:-1;;;;;9312:6:0;8195:10;9459:23;9451:68;;;;-1:-1:-1;;;9451:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10228:22:0;::::1;10220:73;;;::::0;-1:-1:-1;;;10220:73:0;;17365:2:1;10220:73:0::1;::::0;::::1;17347:21:1::0;17404:2;17384:18;;;17377:30;17443:34;17423:18;;;17416:62;-1:-1:-1;;;17494:18:1;;;17487:36;17540:19;;10220:73:0::1;17337:228:1::0;10220:73:0::1;10304:19;10314:8;10304:9;:19::i;:::-;10139:192:::0;:::o;24485:305::-;24587:4;-1:-1:-1;;;;;;24624:40:0;;-1:-1:-1;;;24624:40:0;;:105;;-1:-1:-1;;;;;;;24681:48:0;;-1:-1:-1;;;24681:48:0;24624:105;:158;;;-1:-1:-1;;;;;;;;;;23203:40:0;;;24746:36;23094:157;34365:174;34440:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34440:29:0;-1:-1:-1;;;;;34440:29:0;;;;;;;;:24;;34494:23;34440:24;34494:14;:23::i;:::-;-1:-1:-1;;;;;34485:46:0;;;;;;;;;;;34365:174;;:::o;46828:350::-;46971:13;46997:12;47012:62;47043:9;47054:17;47063:7;47054:8;:17::i;:::-;47026:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47012:6;:62::i;:::-;46997:77;;47085:20;47108:11;47127;:18;47120:4;:25;;;;:::i;:::-;47108:38;;;;;;;;:::i;:::-;;;;;;;47085:61;;47164:6;47157:13;;;;46828:350;;;;;:::o;30677:348::-;30770:4;30472:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30472:16:0;30787:73;;;;-1:-1:-1;;;30787:73:0;;18888:2:1;30787:73:0;;;18870:21:1;18927:2;18907:18;;;18900:30;18966:34;18946:18;;;18939:62;-1:-1:-1;;;19017:18:1;;;19010:42;19069:19;;30787:73:0;18860:234:1;30787:73:0;30871:13;30887:23;30902:7;30887:14;:23::i;:::-;30871:39;;30940:5;-1:-1:-1;;;;;30929:16:0;:7;-1:-1:-1;;;;;30929:16:0;;:51;;;;30973:7;-1:-1:-1;;;;;30949:31:0;:20;30961:7;30949:11;:20::i;:::-;-1:-1:-1;;;;;30949:31:0;;30929:51;:87;;;-1:-1:-1;;;;;;27769:25:0;;;27745:4;27769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30984:32;30921:96;30677:348;-1:-1:-1;;;;30677:348:0:o;33669:578::-;33828:4;-1:-1:-1;;;;;33801:31:0;:23;33816:7;33801:14;:23::i;:::-;-1:-1:-1;;;;;33801:31:0;;33793:85;;;;-1:-1:-1;;;33793:85:0;;22027:2:1;33793:85:0;;;22009:21:1;22066:2;22046:18;;;22039:30;22105:34;22085:18;;;22078:62;-1:-1:-1;;;22156:18:1;;;22149:39;22205:19;;33793:85:0;21999:231:1;33793:85:0;-1:-1:-1;;;;;33897:16:0;;33889:65;;;;-1:-1:-1;;;33889:65:0;;18129:2:1;33889:65:0;;;18111:21:1;18168:2;18148:18;;;18141:30;18207:34;18187:18;;;18180:62;-1:-1:-1;;;18258:18:1;;;18251:34;18302:19;;33889:65:0;18101:226:1;33889:65:0;33967:39;33988:4;33994:2;33998:7;33967:20;:39::i;:::-;34071:29;34088:1;34092:7;34071:8;:29::i;:::-;-1:-1:-1;;;;;34113:15:0;;;;;;:9;:15;;;;;:20;;34132:1;;34113:15;:20;;34132:1;;34113:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34144:13:0;;;;;;:9;:13;;;;;:18;;34161:1;;34144:13;:18;;34161:1;;34144:18;:::i;:::-;;;;-1:-1:-1;;34173:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34173:21:0;-1:-1:-1;;;;;34173:21:0;;;;;;;;;34212:27;;34173:16;;34212:27;;;;;;;33669:578;;;:::o;31367:110::-;31443:26;31453:2;31457:7;31443:26;;;;;;;;;;;;:9;:26::i;:::-;31367:110;;:::o;10339:173::-;10414:6;;;-1:-1:-1;;;;;10431:17:0;;;-1:-1:-1;;;;;;10431:17:0;;;;;;;10464:40;;10414:6;;;10431:17;10414:6;;10464:40;;10395:16;;10464:40;10384:128;10339:173;:::o;29755:315::-;29912:28;29922:4;29928:2;29932:7;29912:9;:28::i;:::-;29959:48;29982:4;29988:2;29992:7;30001:5;29959:22;:48::i;:::-;29951:111;;;;-1:-1:-1;;;29951:111:0;;;;;;;:::i;56880:258::-;56952:4;57042:1;57025:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;57015:30;;;;;;57008:1;56991:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;56981:30;;;;;;:64;56978:120;;;-1:-1:-1;57082:4:0;57075:11;;56978:120;-1:-1:-1;57125:5:0;56880:258;;;;:::o;57146:723::-;57202:13;57423:10;57419:53;;-1:-1:-1;;57450:10:0;;;;;;;;;;;;-1:-1:-1;;;57450:10:0;;;;;57146:723::o;57419:53::-;57497:5;57482:12;57538:78;57545:9;;57538:78;;57571:8;;;;:::i;:::-;;-1:-1:-1;57594:10:0;;-1:-1:-1;57602:2:0;57594:10;;:::i;:::-;;;57538:78;;;57626:19;57658:6;57648:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57648:17:0;;57626:39;;57676:154;57683:10;;57676:154;;57710:11;57720:1;57710:11;;:::i;:::-;;-1:-1:-1;57779:10:0;57787:2;57779:5;:10;:::i;:::-;57766:24;;:2;:24;:::i;:::-;57753:39;;57736:6;57743;57736:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;57736:56:0;;;;;;;;-1:-1:-1;57807:11:0;57816:2;57807:11;;:::i;:::-;;;57676:154;;58296:1607;58394:11;;58354:13;;58420:8;58416:23;;-1:-1:-1;;58430:9:0;;;;;;;;;-1:-1:-1;58430:9:0;;;58296:1607;-1:-1:-1;58296:1607:0:o;58416:23::-;58491:18;58529:1;58518:7;:3;58524:1;58518:7;:::i;:::-;58517:13;;;;:::i;:::-;58512:19;;:1;:19;:::i;:::-;58491:40;-1:-1:-1;58589:19:0;58621:15;58491:40;58634:2;58621:15;:::i;:::-;58611:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58611:26:0;;58589:48;;58650:18;58671:5;;;;;;;;;;;;;;;;;58650:26;;58740:1;58733:5;58729:13;58785:2;58777:6;58773:15;58836:1;58804:777;58859:3;58856:1;58853:10;58804:777;;;58914:1;58957:12;;;;;58951:19;59052:4;59040:2;59036:14;;;;;59018:40;;59012:47;59161:2;59157:14;;;59153:25;;59139:40;;59133:47;59290:1;59286:13;;;59282:24;;59268:39;;59262:46;59410:16;;;;59396:31;;59390:38;59088:1;59084:11;;;59182:4;59129:58;;;59120:68;59213:11;;59258:57;;;59249:67;;;;59341:11;;59386:49;;59377:59;59465:3;59461:13;59494:22;;59564:1;59549:17;;;;58907:9;58804:777;;;58808:44;59613:1;59608:3;59604:11;59634:1;59629:84;;;;59732:1;59727:82;;;;59597:212;;59629:84;-1:-1:-1;;;;;59662:17:0;;59655:43;59629:84;;59727:82;-1:-1:-1;;;;;59760:17:0;;59753:41;59597:212;-1:-1:-1;;;59825:26:0;;;59832:6;58296:1607;-1:-1:-1;;;;58296:1607:0:o;46106:138::-;46166:7;46228:5;46211:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46211:23:0;;;;;;;;;46201:34;;46211:23;46201:34;;;;;46106:138;-1:-1:-1;;46106:138:0:o;39978:589::-;-1:-1:-1;;;;;40184:18:0;;40180:187;;40219:40;40251:7;41394:10;:17;;41367:24;;;;:15;:24;;;;;:44;;;41422:24;;;;;;;;;;;;41290:164;40219:40;40180:187;;;40289:2;-1:-1:-1;;;;;40281:10:0;:4;-1:-1:-1;;;;;40281:10:0;;40277:90;;40308:47;40341:4;40347:7;40308:32;:47::i;:::-;-1:-1:-1;;;;;40381:16:0;;40377:183;;40414:45;40451:7;40414:36;:45::i;40377:183::-;40487:4;-1:-1:-1;;;;;40481:10:0;:2;-1:-1:-1;;;;;40481:10:0;;40477:83;;40508:40;40536:2;40540:7;40508:27;:40::i;31704:321::-;31834:18;31840:2;31844:7;31834:5;:18::i;:::-;31885:54;31916:1;31920:2;31924:7;31933:5;31885:22;:54::i;:::-;31863:154;;;;-1:-1:-1;;;31863:154:0;;;;;;;:::i;35104:803::-;35259:4;-1:-1:-1;;;;;35280:13:0;;15601:20;15649:8;35276:624;;35316:72;;-1:-1:-1;;;35316:72:0;;-1:-1:-1;;;;;35316:36:0;;;;;:72;;8195:10;;35367:4;;35373:7;;35382:5;;35316:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35316:72:0;;;;;;;;-1:-1:-1;;35316:72:0;;;;;;;;;;;;:::i;:::-;;;35312:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35562:13:0;;35558:272;;35605:60;;-1:-1:-1;;;35605:60:0;;;;;;;:::i;35558:272::-;35780:6;35774:13;35765:6;35761:2;35757:15;35750:38;35312:533;-1:-1:-1;;;;;;35439:55:0;-1:-1:-1;;;35439:55:0;;-1:-1:-1;35432:62:0;;35276:624;-1:-1:-1;35884:4:0;35104:803;;;;;;:::o;42081:988::-;42347:22;42397:1;42372:22;42389:4;42372:16;:22::i;:::-;:26;;;;:::i;:::-;42409:18;42430:26;;;:17;:26;;;;;;42347:51;;-1:-1:-1;42563:28:0;;;42559:328;;-1:-1:-1;;;;;42630:18:0;;42608:19;42630:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42681:30;;;;;;:44;;;42798:30;;:17;:30;;;;;:43;;;42559:328;-1:-1:-1;42983:26:0;;;;:17;:26;;;;;;;;42976:33;;;-1:-1:-1;;;;;43027:18:0;;;;;:12;:18;;;;;:34;;;;;;;43020:41;42081:988::o;43364:1079::-;43642:10;:17;43617:22;;43642:21;;43662:1;;43642:21;:::i;:::-;43674:18;43695:24;;;:15;:24;;;;;;44068:10;:26;;43617:46;;-1:-1:-1;43695:24:0;;43617:46;;44068:26;;;;;;:::i;:::-;;;;;;;;;44046:48;;44132:11;44107:10;44118;44107:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44212:28;;;:15;:28;;;;;;;:41;;;44384:24;;;;;44377:31;44419:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43435:1008;;;43364:1079;:::o;40868:221::-;40953:14;40970:20;40987:2;40970:16;:20::i;:::-;-1:-1:-1;;;;;41001:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41046:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40868:221:0:o;32361:382::-;-1:-1:-1;;;;;32441:16:0;;32433:61;;;;-1:-1:-1;;;32433:61:0;;20547:2:1;32433:61:0;;;20529:21:1;;;20566:18;;;20559:30;20625:34;20605:18;;;20598:62;20677:18;;32433:61:0;20519:182:1;32433:61:0;30448:4;30472:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30472:16:0;:30;32505:58;;;;-1:-1:-1;;;32505:58:0;;17772:2:1;32505:58:0;;;17754:21:1;17811:2;17791:18;;;17784:30;17850;17830:18;;;17823:58;17898:18;;32505:58:0;17744:178:1;32505:58:0;32576:45;32605:1;32609:2;32613:7;32576:20;:45::i;:::-;-1:-1:-1;;;;;32634:13:0;;;;;;:9;:13;;;;;:18;;32651:1;;32634:13;:18;;32651:1;;32634:18;:::i;:::-;;;;-1:-1:-1;;32663:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32663:21:0;-1:-1:-1;;;;;32663:21:0;;;;;;;;32702:33;;32663:16;;;32702:33;;32663:16;;32702:33;32361:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:2;;;1170:1;1167;1160:12;1121:2;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:2;;;1461:1;1458;1451:12;1431:2;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:2;;1566:1;1563;1556:12;1515:2;1602;1589:16;1624:2;1620;1617:10;1614:2;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:2;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:2;;;1985:1;1982;1975:12;1936:2;2041;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;1111:1008;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:2;;;2266:1;2263;2256:12;2218:2;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:2;;2437:1;2434;2427:12;2381:2;2460:5;2450:15;;;2208:263;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:2;;;2621:1;2618;2611:12;2573:2;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2563:167:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:2;;;2862:1;2859;2852:12;2814:2;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:2;;;3123:1;3120;3113:12;3075:2;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:2;;;3367:1;3364;3357:12;3319:2;-1:-1:-1;3390:23:1;;3309:110;-1:-1:-1;3309:110:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3473:208;-1:-1:-1;;3473:208:1:o;3686:185::-;3728:3;3766:5;3760:12;3781:52;3826:6;3821:3;3814:4;3807:5;3803:16;3781:52;:::i;:::-;3849:16;;;;;3736:135;-1:-1:-1;;3736:135:1:o;4261:276::-;4392:3;4430:6;4424:13;4446:53;4492:6;4487:3;4480:4;4472:6;4468:17;4446:53;:::i;:::-;4515:16;;;;;4400:137;-1:-1:-1;;4400:137:1:o;4542:470::-;4721:3;4759:6;4753:13;4775:53;4821:6;4816:3;4809:4;4801:6;4797:17;4775:53;:::i;:::-;4891:13;;4850:16;;;;4913:57;4891:13;4850:16;4947:4;4935:17;;4913:57;:::i;:::-;4986:20;;4729:283;-1:-1:-1;;;;4729:283:1:o;5017:664::-;5244:3;5282:6;5276:13;5298:53;5344:6;5339:3;5332:4;5324:6;5320:17;5298:53;:::i;:::-;5414:13;;5373:16;;;;5436:57;5414:13;5373:16;5470:4;5458:17;;5436:57;:::i;:::-;5560:13;;5515:20;;;5582:57;5560:13;5515:20;5616:4;5604:17;;5582:57;:::i;:::-;5655:20;;5252:429;-1:-1:-1;;;;;5252:429:1:o;5686:1641::-;6153:3;6191:6;6185:13;6217:4;6230:51;6274:6;6269:3;6264:2;6256:6;6252:15;6230:51;:::i;:::-;6344:13;;6303:16;;;;6366:55;6344:13;6303:16;6388:15;;;6366:55;:::i;:::-;6488:13;;6443:20;;;6510:55;6488:13;6443:20;6532:15;;;6510:55;:::i;:::-;6632:13;;6587:20;;;6654:55;6632:13;6587:20;6676:15;;;6654:55;:::i;:::-;6776:13;;6731:20;;;6798:55;6776:13;6731:20;6820:15;;;6798:55;:::i;:::-;6920:13;;6875:20;;;6942:55;6920:13;6875:20;6964:15;;;6942:55;:::i;:::-;7064:13;;7019:20;;;7086:55;7064:13;7019:20;7108:15;;;7086:55;:::i;:::-;7208:13;;7163:20;;;7230:55;7208:13;7163:20;7252:15;;;7230:55;:::i;:::-;7301:20;;;;;6161:1166;-1:-1:-1;;;;;;;;;;;6161:1166:1:o;10236:2059::-;11195:66;11190:3;11183:79;11165:3;11291:6;11285:13;11307:62;11362:6;11357:2;11352:3;11348:12;11341:4;11333:6;11329:17;11307:62;:::i;:::-;11433:66;11428:2;11388:16;;;11420:11;;;11413:87;-1:-1:-1;;;11567:2:1;11559:11;;11552:23;;;11600:13;;11622:63;11600:13;11671:2;11663:11;;11656:4;11644:17;;11622:63;:::i;:::-;11750:66;11745:2;11704:17;;;;11737:11;;;11730:87;11841:2;11833:11;;11826:23;11874:13;;11896:63;11874:13;11945:2;11937:11;;11930:4;11918:17;;11896:63;:::i;:::-;12024:66;12019:2;11978:17;;;;12011:11;;;12004:87;-1:-1:-1;;;12115:3:1;12107:12;;12100:50;12166:123;12196:92;12222:65;12247:39;12281:3;12273:12;;12265:6;12247:39;:::i;:::-;3948:66;3936:79;;-1:-1:-1;;;4040:2:1;4031:12;;4024:62;4111:2;4102:12;;3926:194;12222:65;12214:6;12196:92;:::i;:::-;-1:-1:-1;;;4190:33:1;;4248:1;4239:11;;4180:76;12166:123;12159:130;11173:1122;-1:-1:-1;;;;;;;;11173:1122:1:o;12828:448::-;13090:31;13085:3;13078:44;13060:3;13151:6;13145:13;13167:62;13222:6;13217:2;13212:3;13208:12;13201:4;13193:6;13189:17;13167:62;:::i;:::-;13249:16;;;;13267:2;13245:25;;13068:208;-1:-1:-1;;13068:208:1:o;13545:1401::-;-1:-1:-1;;;14093:57:1;;14173:13;;14075:3;;14195:62;14173:13;14245:2;14236:12;;14229:4;14217:17;;14195:62;:::i;:::-;14321:66;14316:2;14276:16;;;14308:11;;;14301:87;14417:34;14412:2;14404:11;;14397:55;14481:66;14476:2;14468:11;;14461:87;-1:-1:-1;;;14572:3:1;14564:12;;14557:34;14616:13;;14638:64;14616:13;14687:3;14679:12;;14672:4;14660:17;;14638:64;:::i;:::-;-1:-1:-1;;;14762:3:1;14721:17;;;;14754:12;;;14747:39;14811:13;;14833:64;14811:13;14882:3;14874:12;;14867:4;14855:17;;14833:64;:::i;:::-;14917:17;14936:3;14913:27;;14083:863;-1:-1:-1;;;;;14083:863:1:o;15423:488::-;-1:-1:-1;;;;;15692:15:1;;;15674:34;;15744:15;;15739:2;15724:18;;15717:43;15791:2;15776:18;;15769:34;;;15839:3;15834:2;15819:18;;15812:31;;;15617:4;;15860:45;;15885:19;;15877:6;15860:45;:::i;:::-;15852:53;15626:285;-1:-1:-1;;;;;;15626:285:1:o;16108:219::-;16257:2;16246:9;16239:21;16220:4;16277:44;16317:2;16306:9;16302:18;16294:6;16277:44;:::i;16744:414::-;16946:2;16928:21;;;16985:2;16965:18;;;16958:30;17024:34;17019:2;17004:18;;16997:62;-1:-1:-1;;;17090:2:1;17075:18;;17068:48;17148:3;17133:19;;16918:240::o;21119:356::-;21321:2;21303:21;;;21340:18;;;21333:30;21399:34;21394:2;21379:18;;21372:62;21466:2;21451:18;;21293:182::o;22637:413::-;22839:2;22821:21;;;22878:2;22858:18;;;22851:30;22917:34;22912:2;22897:18;;22890:62;-1:-1:-1;;;22983:2:1;22968:18;;22961:47;23040:3;23025:19;;22811:239::o;24010:128::-;24050:3;24081:1;24077:6;24074:1;24071:13;24068:2;;;24087:18;;:::i;:::-;-1:-1:-1;24123:9:1;;24058:80::o;24143:120::-;24183:1;24209;24199:2;;24214:18;;:::i;:::-;-1:-1:-1;24248:9:1;;24189:74::o;24268:168::-;24308:7;24374:1;24370;24366:6;24362:14;24359:1;24356:21;24351:1;24344:9;24337:17;24333:45;24330:2;;;24381:18;;:::i;:::-;-1:-1:-1;24421:9:1;;24320:116::o;24441:125::-;24481:4;24509:1;24506;24503:8;24500:2;;;24514:18;;:::i;:::-;-1:-1:-1;24551:9:1;;24490:76::o;24571:258::-;24643:1;24653:113;24667:6;24664:1;24661:13;24653:113;;;24743:11;;;24737:18;24724:11;;;24717:39;24689:2;24682:10;24653:113;;;24784:6;24781:1;24778:13;24775:2;;;-1:-1:-1;;24819:1:1;24801:16;;24794:27;24624:205::o;24834:380::-;24913:1;24909:12;;;;24956;;;24977:2;;25031:4;25023:6;25019:17;25009:27;;24977:2;25084;25076:6;25073:14;25053:18;25050:38;25047:2;;;25130:10;25125:3;25121:20;25118:1;25111:31;25165:4;25162:1;25155:15;25193:4;25190:1;25183:15;25047:2;;24889:325;;;:::o;25219:135::-;25258:3;-1:-1:-1;;25279:17:1;;25276:2;;;25299:18;;:::i;:::-;-1:-1:-1;25346:1:1;25335:13;;25266:88::o;25359:112::-;25391:1;25417;25407:2;;25422:18;;:::i;:::-;-1:-1:-1;25456:9:1;;25397:74::o;25476:127::-;25537:10;25532:3;25528:20;25525:1;25518:31;25568:4;25565:1;25558:15;25592:4;25589:1;25582:15;25608:127;25669:10;25664:3;25660:20;25657:1;25650:31;25700:4;25697:1;25690:15;25724:4;25721:1;25714:15;25740:127;25801:10;25796:3;25792:20;25789:1;25782:31;25832:4;25829:1;25822:15;25856:4;25853:1;25846:15;25872:127;25933:10;25928:3;25924:20;25921:1;25914:31;25964:4;25961:1;25954:15;25988:4;25985:1;25978:15;26004:127;26065:10;26060:3;26056:20;26053:1;26046:31;26096:4;26093:1;26086:15;26120:4;26117:1;26110:15;26136:131;-1:-1:-1;;;;;;26210:32:1;;26200:43;;26190:2;;26257:1;26254;26247:12
Swarm Source
ipfs://0613c68f4045b90151db3ef4852441099d5af12cfa589be35c349c872429a95c
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.