ETH Price: $3,385.90 (-1.43%)
Gas: 3 Gwei

Token

Fuxi (FUXI)
 

Overview

Max Total Supply

8,888 FUXI

Holders

1,841

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FUXI
0xb4673d330e879cfafbe812d3cb330d9301a97a08
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fuxi

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-17
*/

// 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 Fuxi is ERC721Enumerable, ReentrancyGuard, Ownable {
    // NFT upper limit
    uint256 public maxLimit = 8888;

    mapping (uint256 => uint256) private numbers;
 
    // background
    struct Color{
        string backGroundColor;
        string strokeWidth;
        string strokeColor;
        string fillTextColor;
        string strokeTextColor;
        string taijiColor;
        string name;
    }

    string[] private fiveElements = [
        unicode"金",
        unicode"木",
        unicode"水",
        unicode"火",
        unicode"土"
    ];

    string[] private gossip = [
        unicode"巽",
        unicode"震",
        unicode"离",
        unicode"坤",
        unicode"艮",
        unicode"乾",
        unicode"兑",
        unicode"坎"
    ];

    string[] private tenDry = [
        unicode"甲",
        unicode"乙",
        unicode"丙",
        unicode"丁",
        unicode"戊",
        unicode"己",
        unicode"庚",
        unicode"辛",
        unicode"壬",
        unicode"癸"
    ];

    string[] private earthlyBranch = [
        unicode"寅",
        unicode"卯",
        unicode"巳",
        unicode"午",
        unicode"辰",
        unicode"戌",
        unicode"丑",
        unicode"未",
        unicode"申",
        unicode"酉",
        unicode"亥",
        unicode"子"
    ];
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getFiveElements(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "FIVEELEMENTS", fiveElements);
    }
    
    function getGossip(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "GOSSIP", gossip);
    }
    
    function getTenDry(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "TENDRY", tenDry);
    }

    function geTearthlyBranch(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "EARTHLYBRANCH", earthlyBranch);
    }

    function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal view returns (string memory) {
        uint256 number = numbers[tokenId];
        require( number != 0, "tokenId is invalid");
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId+number))));
        string memory output = sourceArray[rand % sourceArray.length];
        return output;
    }

    function getBackGround(uint256 tokenId) public view returns (Color memory info){
        uint256 number = numbers[tokenId];
        require( number != 0, "tokenId is invalid");
        uint256 rand = random(string(abi.encodePacked('BACKGROUNDCOLOR', toString(tokenId+number))));
        uint256 greatness = rand % 100;   

        if (greatness <= 19) {
            info = Color({  
                backGroundColor: unicode' fill="#bc9d6e"/> ',
                strokeWidth: unicode' stroke-width="1.5" ',
                strokeColor: unicode' stroke="#000000"/> ',
                fillTextColor: unicode' fill="#000000" ',
                strokeTextColor: unicode' stroke="#000000" ',
                taijiColor: unicode' fill="#bc9d6e" ',
                name: 'yellow'
            });
        }else if (greatness >89) {  
            info = Color({
                backGroundColor:  unicode' fill="#ffffff"/> ',
                strokeWidth: unicode' stroke-width="1.5" ',
                strokeColor: unicode' stroke="#000000"/> ',
                fillTextColor: unicode' fill="#000000" ',
                strokeTextColor: unicode' stroke="#000000" ',
                taijiColor: unicode' fill="#ffffff" ',
                name: 'white'
            });       
        }else{
            info = Color({
                backGroundColor: unicode' fill="#19130a"/> ',
                strokeWidth: unicode' stroke-width="1.5" ',
                strokeColor: unicode' stroke="#dfc082"/> ', 
                fillTextColor: unicode' fill="#dfc082" ',
                strokeTextColor: unicode' stroke="#dfc082" ',
                taijiColor: unicode' fill="#dfc082" ',
                name: 'black'
            });   
        }
        
        return info;
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string[60] memory parts;
        Color memory info = getBackGround(tokenId);
        
        parts[0] = unicode'<svg viewBox="0 0 350 350" xmlns="http://www.w3.org/2000/svg">';    
        parts[1] = unicode'<g><title>background</title><rect x="-1" y="-1" width="100%" height="100%" id="canvas_background"';
        parts[2] = info.backGroundColor;
        parts[3] = unicode'<g id="canvasGrid" display="none"><rect id="svg_1" width="100%" height="100%" x="0" y="0" stroke-width="0" fill="url(#gridpattern)"/></g></g>';
        parts[4] = unicode'<g><title>Layer 1</title><g id="svg_16" stroke="null"><g id="svg_8" fill="none" fill-rule="evenodd" transform="matrix(1.0289597692403862,0,0,1.0289597692403862,79.4289146949628,44.69235436252555)"><g id="svg_9" stroke="null"><g id="svg_10" stroke="null"><circle id="svg_14" ';
        parts[5] = info.strokeWidth;
        parts[6] = unicode'cx="93.56665" cy="76.789077" r="50.25" ';
        parts[7] = info.strokeColor;
        parts[8] = unicode'<path d="m93.56665,27.03298c27.47953,0 49.7561,22.27657 49.7561,49.7561c0,27.20474 -21.83326,49.31005 -48.93329,49.74943l-0.38557,0.0029c13.53805,-0.23331 24.44081,-11.28056 24.44081,-24.87428c0,-13.73977 -11.13828,-24.87805 -24.87805,-24.87805l-0.4114,-0.00333c-13.55002,-0.2197 -24.46665,-11.27235 -24.46665,-24.87472c0,-13.60237 10.91663,-24.65502 24.46665,-24.87471l0.4114,-0.00334zm0,12.43903c-6.86988,0 -12.43902,5.56914 -12.43902,12.43902c0,6.86988 5.56914,12.43903 12.43902,12.43903c6.86988,0 12.43902,-5.56915 12.43902,-12.43903c0,-6.86988 -5.56914,-12.43902 -12.43902,-12.43902z" id="svg_13" ';
        parts[9] = info.taijiColor;
        parts[10] = unicode'stroke="null"/><path d="m93.09825,27.0373c-13.52362,0.24972 -24.40965,11.29044 -24.40965,24.87373c0,13.60237 10.91663,24.65502 24.46665,24.87472l0.4114,0.00333c13.73977,0 24.87805,11.13828 24.87805,24.87805c0,13.60237 -10.91663,24.65502 -24.46665,24.87471l-0.4114,0.00334c-27.47953,0 -49.7561,-22.27657 -49.7561,-49.7561c0,-27.20474 21.83326,-49.31005 48.93329,-49.74943l0.35441,-0.00235zm0.4684,62.18704c-6.86988,0 -12.43902,5.56914 -12.43902,12.43902c0,6.86989 5.56914,12.43903 12.43902,12.43903c6.86988,0 12.43902,-5.56914 12.43902,-12.43903c0,-6.86988 -5.56914,-12.43902 -12.43902,-12.43902z" id="svg_12" fill="#000000" stroke="null"/><circle id="svg_11" ';
        parts[11] = info.taijiColor;
        parts[12] = unicode'cx="93.56665" cy="101.663361" r="12.439024" stroke="null"/><circle id="椭圆形" fill="#000000" cx="93.56665" cy="51.924022" r="12.439024" stroke="null"/></g></g></g></g>';
        parts[13] = unicode'<text letter-spacing="1px" style="cursor: move;" ';
        parts[14] = info.fillTextColor;
        parts[15] = unicode'stroke="#000" stroke-width="0" x="24" y="33" id="svg_17" font-size="14" font-family="宋体" text-anchor="start" xml:space="preserve">#</text><line fill="none" ';
        parts[16] = info.strokeTextColor;
        parts[17] = unicode'stroke-width="0.5" x1="87" y1="224" x2="87" y2="299" id="svg_20" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><line fill="none" ';
        parts[18] = info.strokeTextColor;
        parts[19] = unicode'stroke-width="0.5" x1="135" y1="224" x2="135" y2="299" id="svg_2" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><line fill="none" ';
        parts[20] = info.strokeTextColor;
        parts[21] = unicode'stroke-width="0.5" x1="183" y1="224" x2="183" y2="299" id="svg_3" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><line fill="none" ';
        parts[22] = info.strokeTextColor;
        parts[23] = unicode'stroke-width="0.5" x1="231" y1="224" x2="231" y2="299" id="svg_4" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><text font-weight="normal" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_6" y="226.500001" x="98" stroke-width="0" ';
        parts[24] = info.strokeTextColor;
        parts[25] = info.fillTextColor;
        parts[26] = unicode'>五行</text><text font-weight="normal" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_7" y="226.259257" x="146" stroke-width="0" ';
        parts[27] = info.strokeTextColor;
        parts[28] = info.fillTextColor;
        parts[29] = unicode'>八卦</text><text style="cursor: move;" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_15" y="227" x="192.875001" stroke-width="0" ';
        parts[30] = info.strokeTextColor;
        parts[31] = info.fillTextColor;
        parts[32] = unicode'>天干</text><text style="cursor: move;" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_19" y="227.249995" x="241.951429" stroke-width="0" ';
        parts[33] = info.strokeTextColor;
        parts[34] = info.fillTextColor;
        parts[35] = unicode'>地支</text><text ';
        parts[36] = info.fillTextColor;
        parts[37] = unicode' stroke="#000" stroke-width="0" x="33.812748" y="33" id="svg_21" font-size="14" font-family="宋体" text-anchor="start" xml:space="preserve">';
        parts[38] = toString(tokenId);
        parts[39] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_22" y="271.062036" x="104.875" stroke-width="0" ';
        parts[40] = info.strokeTextColor;
        parts[41] = info.fillTextColor;
        parts[42] = unicode'>';
        parts[43] = getFiveElements(tokenId);
        parts[44] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_23" y="271.062036" x="153.037991" stroke-width="0" ';
        parts[45] = info.strokeTextColor;
        parts[46] = info.fillTextColor;
        parts[47] = unicode'>';
        parts[48] = getGossip(tokenId);
        parts[49] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_24" y="271.062036" x="201" stroke-width="0" ';
        parts[50] = info.strokeTextColor;
        parts[51] = info.fillTextColor;
        parts[52] = unicode'>';
        parts[53] = getTenDry(tokenId);
        parts[54] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_25" y="271.062036" x="249.355301" stroke-width="0" ';
        parts[55] = info.strokeTextColor;
        parts[56] = info.fillTextColor;
        parts[57] = unicode'>';
        parts[58] = geTearthlyBranch(tokenId);
        parts[59] = '</text></g></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7],parts[8]));
        output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14],parts[15],parts[16]));
        output = string(abi.encodePacked(output, parts[17], parts[18], parts[19], parts[20], parts[21],parts[22],parts[23],parts[24]));
        output = string(abi.encodePacked(output, parts[25], parts[26], parts[27], parts[28], parts[29],parts[30],parts[31],parts[32]));
        output = string(abi.encodePacked(output, parts[33], parts[34], parts[35], parts[36], parts[37], parts[38],parts[39],parts[40]));
        output = string(abi.encodePacked(output, parts[41], parts[42], parts[43], parts[44], parts[45], parts[46],parts[47],parts[48]));
        output = string(abi.encodePacked(output, parts[49], parts[50], parts[51], parts[52], parts[53], parts[54],parts[55],parts[56]));
        output = string(abi.encodePacked(output, parts[57], parts[58], parts[59]));
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Fuxi #', toString(tokenId), '", "description": "Fuxi was the creator of gossip. Fuxi\'s First Era created 8,888 NFTs, ranging from #1 to #8888. You can randomly make a gossip NFT based on the address code, and then start divination, battle and other gameplay.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));
        return output;
    }

    function claim() public nonReentrant {
        uint256 tokenId = totalSupply()+1;
        require(tokenId <= maxLimit, "The upper limit of token ID is 8888");
        numbers[tokenId] = block.timestamp;
        _safeMint(_msgSender(), tokenId);
    }
    
    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("Fuxi", "FUXI") 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

Contract ABI

[{"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":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"geTearthlyBranch","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBackGround","outputs":[{"components":[{"internalType":"string","name":"backGroundColor","type":"string"},{"internalType":"string","name":"strokeWidth","type":"string"},{"internalType":"string","name":"strokeColor","type":"string"},{"internalType":"string","name":"fillTextColor","type":"string"},{"internalType":"string","name":"strokeTextColor","type":"string"},{"internalType":"string","name":"taijiColor","type":"string"},{"internalType":"string","name":"name","type":"string"}],"internalType":"struct Fuxi.Color","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFiveElements","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGossip","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTenDry","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":"maxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"}]

6122b8600c55600361012081815262e9879160e81b610140526080908152610160828152621cd39560eb1b6101805260a0526101a08281526239ac2d60ea1b6101c05260c0526101e082815262e781ab60e81b6102005260e05261026060405261022091825262e59c9f60e81b61024052610100919091526200008790600e906005620004f7565b5060408051610140810182526003610100820181815262e5b7bd60e81b61012084015282528251808401845281815262e99c8760e81b602082810191909152808401919091528351808501855282815262e7a6bb60e81b8183015283850152835180850185528281526239676960ea1b81830152606084015283518085018552828152627444d760e91b8183015260808401528351808501855282815262725cdf60e91b8183015260a08401528351808501855282815262e5859160e81b8183015260c084015283518085019094529083526272cec760e91b9083015260e08101919091526200017c90600f9060086200055b565b506040805161018081018252600361014082018181526273ca5960e91b61016084015282528251808401845281815262e4b99960e81b602082810191909152808401919091528351808501855282815262e4b89960e81b81830152838501528351808501855282815262e4b88160e81b818301526060840152835180850185528281526273444560e91b8183015260808401528351808501855282815262e5b7b160e81b8183015260a0840152835180850185528281526272dd4d60e91b8183015260c08401528351808501855282815262e8be9b60e81b8183015260e084015283518085018552828152623968eb60ea1b818301526101008401528351808501909452908352621cf33760eb1b90830152610120810191909152620002a790601090600a620005ad565b50604080516101c0810182526003610180820181815262e5af8560e81b6101a084015282528251808401845281815262e58daf60e81b602082810191909152808401919091528351808501855282815262e5b7b360e81b818301528385015283518085018552828152621cb1b160eb1b81830152606084015283518085018552828152620e8beb60ec1b818301526080840152835180850185528281526239a22360ea1b8183015260a08401528351808501855282815262e4b89160e81b8183015260c08401528351808501855282815262734e5560e91b8183015260e08401528351808501855282815262e794b360e81b818301526101008401528351808501855282815262e9858960e81b818301526101208401528351808501855282815262e4baa560e81b818301526101408401528351808501909452908352620e5ad960ec1b908301526101608101919091526200040890601190600c620005ff565b503480156200041657600080fd5b50604051806040016040528060048152602001634675786960e01b815250604051806040016040528060048152602001634655584960e01b81525081600090805190602001906200046992919062000651565b5080516200047f90600190602084019062000651565b50506001600a55506200049b62000495620004a1565b620004a5565b62000796565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000549579160200282015b828111156200054957825180516200053891849160209091019062000651565b509160200191906001019062000518565b5062000557929150620006dc565b5090565b82805482825590600052602060002090810192821562000549579160200282015b828111156200054957825180516200059c91849160209091019062000651565b50916020019190600101906200057c565b82805482825590600052602060002090810192821562000549579160200282015b82811115620005495782518051620005ee91849160209091019062000651565b5091602001919060010190620005ce565b82805482825590600052602060002090810192821562000549579160200282015b828111156200054957825180516200064091849160209091019062000651565b509160200191906001019062000620565b8280546200065f9062000759565b90600052602060002090601f016020900481019282620006835760008555620006ce565b82601f106200069e57805160ff1916838001178555620006ce565b82800160010185558215620006ce579182015b82811115620006ce578251825591602001919060010190620006b1565b5062000557929150620006fd565b8082111562000557576000620006f3828262000714565b50600101620006dc565b5b80821115620005575760008155600101620006fe565b508054620007229062000759565b6000825580601f1062000736575062000756565b601f016020900490600052602060002090810190620007569190620006fd565b50565b6002810460018216806200076e57607f821691505b602082108114156200079057634e487b7160e01b600052602260045260246000fd5b50919050565b6145eb80620007a66000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063b88d4fde11610097578063dc1cfce611610071578063dc1cfce614610327578063e6d9b7ad1461033a578063e985e9c51461035a578063f2fde38b1461036d5761018e565b8063b88d4fde146102ee578063c79bc98114610301578063c87b56dd146103145761018e565b80636352211e1461029d57806370a08231146102b0578063715018a6146102c35780638da5cb5b146102cb57806395d89b41146102d3578063a22cb465146102db5761018e565b80631a861d261161014b57806342842e0e1161012557806342842e0e1461025c578063428f55201461026f5780634e71d92d146102825780634f6ccce71461028a5761018e565b80631a861d261461022e57806323b872dd146102365780632f745c59146102495761018e565b8063016769cd1461019357806301ffc9a7146101bc57806306fdde03146101dc578063081812fc146101e4578063095ea7b31461020457806318160ddd14610219575b600080fd5b6101a66101a1366004612767565b610380565b6040516101b39190612ba5565b60405180910390f35b6101cf6101ca36600461272f565b610484565b6040516101b39190612b9a565b6101a66104a9565b6101f76101f2366004612767565b61053b565b6040516101b39190612b49565b610217610212366004612706565b610587565b005b61022161061f565b6040516101b391906131d9565b610221610625565b6102176102443660046125c5565b61062b565b610221610257366004612706565b610663565b61021761026a3660046125c5565b6106b5565b6101a661027d366004612767565b6106d0565b6102176107ca565b610221610298366004612767565b610855565b6101f76102ab366004612767565b6108b0565b6102216102be366004612572565b6108e5565b610217610929565b6101f7610974565b6101a6610983565b6102176102e93660046126cc565b610992565b6102176102fc366004612600565b610a60565b6101a661030f366004612767565b610a9f565b6101a6610322366004612767565b610b98565b6101a6610335366004612767565b611384565b61034d610348366004612767565b611477565b6040516101b3919061310c565b6101cf610368366004612593565b611906565b61021761037b366004612572565b611934565b606061047c82604051806040016040528060068152602001650474f535349560d41b815250600f805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546103e690613270565b80601f016020809104026020016040519081016040528092919081815260200182805461041290613270565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050815260200190600101906103c7565b505050506119a5565b90505b919050565b60006001600160e01b0319821663780e9d6360e01b148061047c575061047c82611a3f565b6060600080546104b890613270565b80601f01602080910402602001604051908101604052809291908181526020018280546104e490613270565b80156105315780601f1061050657610100808354040283529160200191610531565b820191906000526020600020905b81548152906001019060200180831161051457829003601f168201915b5050505050905090565b600061054682611a7f565b61056b5760405162461bcd60e51b815260040161056290612f01565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610592826108b0565b9050806001600160a01b0316836001600160a01b031614156105c65760405162461bcd60e51b815260040161056290612fcb565b806001600160a01b03166105d8611a9c565b6001600160a01b031614806105f457506105f481610368611a9c565b6106105760405162461bcd60e51b815260040161056290612ddc565b61061a8383611aa0565b505050565b60085490565b600c5481565b61063c610636611a9c565b82611b0e565b6106585760405162461bcd60e51b81526004016105629061300c565b61061a838383611b93565b600061066e836108e5565b821061068c5760405162461bcd60e51b815260040161056290612bb8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61061a83838360405180602001604052806000815250610a60565b606061047c826040518060400160405280600d81526020016c08a82a4a89098b284a4829c869609b1b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561047357838290600052602060002001805461073d90613270565b80601f016020809104026020016040519081016040528092919081815260200182805461076990613270565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b50505050508152602001906001019061071e565b6002600a5414156107ed5760405162461bcd60e51b8152600401610562906130a9565b6002600a5560006107fc61061f565b6108079060016131e2565b9050600c5481111561082b5760405162461bcd60e51b815260040161056290612d4d565b6000818152600d6020526040902042905561084d610847611a9c565b82611cc0565b506001600a55565b600061085f61061f565b821061087d5760405162461bcd60e51b81526004016105629061305d565b6008828154811061089e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061047c5760405162461bcd60e51b815260040161056290612e83565b60006001600160a01b03821661090d5760405162461bcd60e51b815260040161056290612e39565b506001600160a01b031660009081526003602052604090205490565b610931611a9c565b6001600160a01b0316610942610974565b6001600160a01b0316146109685760405162461bcd60e51b815260040161056290612f4d565b6109726000611cde565b565b600b546001600160a01b031690565b6060600180546104b890613270565b61099a611a9c565b6001600160a01b0316826001600160a01b031614156109cb5760405162461bcd60e51b815260040161056290612d16565b80600560006109d8611a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a1c611a9c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a549190612b9a565b60405180910390a35050565b610a71610a6b611a9c565b83611b0e565b610a8d5760405162461bcd60e51b81526004016105629061300c565b610a9984848484611d30565b50505050565b606061047c826040518060400160405280600c81526020016b46495645454c454d454e545360a01b815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610473578382906000526020600020018054610b0b90613270565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613270565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b505050505081526020019060010190610aec565b6060610ba26124f6565b6000610bad84611477565b90506040518060600160405280603e815260200161444e603e913982526040805160a081019091526061808252613de460208301398260016020020152805182600260200201819052506040518060c00160405280608d815260200161448c608d913960608301526040805161014081019091526101128082526135b76020830139608083015260208181015160a0840152604080516060810190915260278082529091613b0f9083013960c083015260408181015160e08401528051610280810190915261025a8082526136c9602083013961010083015260a0810151610120830152604080516102c08101909152610293808252614082602083013961014083015260a08101516101608301526040805160e0810190915260ab8082526143a3602083013961018083015260408051606081019091526031808252613c1260208301396101a083015260608101516101c08301526040805160c0810190915260a0808252613fe260208301396101e083015260808101516102008301526040805160c08101909152609c808252613b36602083013961022083015260808101516102408301526040805160c08101909152609d808252613a72602083013961026083015260808101516102808301526040805160c08101909152609d80825261451960208301396102a083015260808101516102c083015260408051610180810190915261014f80825261392360208301396102e08301526080810151610300830152606081015161032083015260408051610100810190915260d380825261340f60208301396103408301526080810151610360830152606081015161038083015260408051610100810190915260d58082526134e260208301396103a083015260808101516103c083015260608101516103e083015260408051610100810190915260dc80825261333360208301396104008301526080810151610420830152606081015161044083015260408051808201909152601481527301f72ce58734a579e17ba32bc3a1f1e3a32bc3a160651b60208201528260236020020152606081015182602460200201819052506040518060c00160405280608e8152602001614315608e91396104a0830152610ee784611d63565b6104c083015260408051610100810190915260cf808252613d1560208301396104e0830152608081015161050083015260608101516105208301526040805180820190915260018152601f60f91b6020820152610540830152610f4984610a9f565b61056083015260408051610100810190915260d2808252613c43602083013961058083015260808101516105a083015260608101516105c08301526040805180820190915260018152601f60f91b60208201526105e0830152610fab84610380565b61060083015260408051610100810190915260cb808252613e456020830139610620830152608081015161064083015260608101516106608301526040805180820190915260018152601f60f91b602082015261068083015261100d84611384565b6106a083015260408051610100810190915260d2808252613f1060208301396106c083015260808101516106e083015260608101516107008301526040805180820190915260018152601f60f91b602082015261072083015261106f846106d0565b61074083015260408051808201825260118152701e17ba32bc3a1f1e17b39f1e17b9bb339f60791b602080830191909152610760850191909152835181850151838601516060870151608088015160a089015160c08a015160e08b01516101008c0151995160009a6110e39a909101612877565b60408051808303601f19018152908290526101208501516101408601516101608701516101808801516101a08901516101c08a01516101e08b01516102008c0151979950611136988a9890602001612877565b60408051808303601f19018152908290526102208501516102408601516102608701516102808801516102a08901516102c08a01516102e08b01516103008c0151979950611189988a9890602001612877565b60408051601f19818403018152908290526103208501516103408601516103608701516103808801516103a08901516103c08a01516103e08b01516104008c01519799506111dc988a9890602001612877565b60408051808303601f19018152908290526104208501516104408601516104608701516104808801516104a08901516104c08a01516104e08b01516105008c015197995061122f988a9890602001612877565b60408051808303601f19018152908290526105208501516105408601516105608701516105808801516105a08901516105c08a01516105e08b01516106008c0151979950611282988a9890602001612877565b60408051808303601f19018152908290526106208501516106408601516106608701516106808801516106a08901516106c08a01516106e08b01516107008c01519799506112d5988a9890602001612877565b60408051808303601f190181529082905261072085015161074086015161076087015192945061130a93859390602001612820565b6040516020818303038152906040529050600061135761132987611d63565b61133284611e7e565b604051602001611343929190612938565b604051602081830303815290604052611e7e565b90508060405160200161136a9190612b04565b60408051808303601f190181529190529695505050505050565b606061047c826040518060400160405280600681526020016554454e44525960d01b8152506010805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546113ea90613270565b80601f016020809104026020016040519081016040528092919081815260200182805461141690613270565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b5050505050815260200190600101906113cb565b61147f61251e565b6000828152600d6020526040902054806114ab5760405162461bcd60e51b8152600401610562906130e0565b60006114e66114c26114bd84876131e2565b611d63565b6040516020016114d29190612acd565b604051602081830303815290604052611ff2565b905060006114f56064836132c6565b905060138111611653576040518060e00160405280604051806040016040528060128152602001710103334b6361e9111b1319cb21b3291179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b1319cb21b3291160851b81525081526020016040518060400160405280600681526020016579656c6c6f7760d01b81525081525093506118fe565b60598111156117af576040518060e00160405280604051806040016040528060128152602001710103334b6361e9111b3333333333311179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b3333333333311160851b815250815260200160405180604001604052806005815260200164776869746560d81b81525081525093506118fe565b6040518060e00160405280604051806040016040528060128152602001710103334b6361e9111989c9899983091179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e9111b23331981c1911179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e9111b23331981c1911160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b815250815260200160405180604001604052806005815260200164626c61636b60d81b81525081525093505b505050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61193c611a9c565b6001600160a01b031661194d610974565b6001600160a01b0316146119735760405162461bcd60e51b815260040161056290612f4d565b6001600160a01b0381166119995760405162461bcd60e51b815260040161056290612c55565b6119a281611cde565b50565b6000838152600d6020526040902054606090806119d45760405162461bcd60e51b8152600401610562906130e0565b60006119f8856119e76114bd858a6131e2565b6040516020016114d29291906127f1565b9050600084855183611a0a91906132c6565b81518110611a2857634e487b7160e01b600052603260045260246000fd5b602002602001015190508093505050509392505050565b60006001600160e01b031982166380ac58cd60e01b1480611a7057506001600160e01b03198216635b5e139f60e01b145b8061047c575061047c82612023565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ad5826108b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1982611a7f565b611b355760405162461bcd60e51b815260040161056290612d90565b6000611b40836108b0565b9050806001600160a01b0316846001600160a01b03161480611b7b5750836001600160a01b0316611b708461053b565b6001600160a01b0316145b80611b8b5750611b8b8185611906565b949350505050565b826001600160a01b0316611ba6826108b0565b6001600160a01b031614611bcc5760405162461bcd60e51b815260040161056290612f82565b6001600160a01b038216611bf25760405162461bcd60e51b815260040161056290612cd2565b611bfd83838361203c565b611c08600082611aa0565b6001600160a01b0383166000908152600360205260408120805460019290611c3190849061322d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c5f9084906131e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611cda8282604051806020016040528060008152506120c5565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d3b848484611b93565b611d47848484846120f8565b610a995760405162461bcd60e51b815260040161056290612c03565b606081611d8857506040805180820190915260018152600360fc1b602082015261047f565b8160005b8115611db25780611d9c816132ab565b9150611dab9050600a836131fa565b9150611d8c565b60008167ffffffffffffffff811115611ddb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e05576020820181803683370190505b5090505b8415611b8b57611e1a60018361322d565b9150611e27600a866132c6565b611e329060306131e2565b60f81b818381518110611e5557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e77600a866131fa565b9450611e09565b805160609080611e9e57505060408051602081019091526000815261047f565b60006003611ead8360026131e2565b611eb791906131fa565b611ec290600461320e565b90506000611ed18260206131e2565b67ffffffffffffffff811115611ef757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f21576020820181803683370190505b5090506000604051806060016040528060408152602001613bd2604091399050600181016020830160005b86811015611fad576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611f4c565b506003860660018114611fc75760028114611fd857611fe4565b613d3d60f01b600119830152611fe4565b603d60f81b6000198301525b505050918152949350505050565b60008160405160200161200591906127d5565b60408051601f19818403018152919052805160209091012092915050565b6001600160e01b031981166301ffc9a760e01b14919050565b61204783838361061a565b6001600160a01b0383166120635761205e81612213565b612086565b816001600160a01b0316836001600160a01b031614612086576120868382612257565b6001600160a01b0382166120a25761209d816122f4565b61061a565b826001600160a01b0316826001600160a01b03161461061a5761061a82826123cd565b6120cf8383612411565b6120dc60008484846120f8565b61061a5760405162461bcd60e51b815260040161056290612c03565b600061210c846001600160a01b03166124f0565b1561220857836001600160a01b031663150b7a02612128611a9c565b8786866040518563ffffffff1660e01b815260040161214a9493929190612b5d565b602060405180830381600087803b15801561216457600080fd5b505af1925050508015612194575060408051601f3d908101601f191682019092526121919181019061274b565b60015b6121ee573d8080156121c2576040519150601f19603f3d011682016040523d82523d6000602084013e6121c7565b606091505b5080516121e65760405162461bcd60e51b815260040161056290612c03565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8b565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612264846108e5565b61226e919061322d565b6000838152600760205260409020549091508082146122c1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123069060019061322d565b6000838152600960205260408120546008805493945090928490811061233c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061236b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123b157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006123d8836108e5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124375760405162461bcd60e51b815260040161056290612ecc565b61244081611a7f565b1561245d5760405162461bcd60e51b815260040161056290612c9b565b6124696000838361203c565b6001600160a01b03821660009081526003602052604081208054600192906124929084906131e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b604051806107800160405280603c905b60608152602001906001900390816125065790505090565b6040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b80356001600160a01b038116811461047f57600080fd5b600060208284031215612583578081fd5b61258c8261255b565b9392505050565b600080604083850312156125a5578081fd5b6125ae8361255b565b91506125bc6020840161255b565b90509250929050565b6000806000606084860312156125d9578081fd5b6125e28461255b565b92506125f06020850161255b565b9150604084013590509250925092565b60008060008060808587031215612615578081fd5b61261e8561255b565b9350602061262d81870161255b565b935060408601359250606086013567ffffffffffffffff80821115612650578384fd5b818801915088601f830112612663578384fd5b81358181111561267557612675613306565b604051601f8201601f191681018501838111828210171561269857612698613306565b60405281815283820185018b10156126ae578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156126de578182fd5b6126e78361255b565b9150602083013580151581146126fb578182fd5b809150509250929050565b60008060408385031215612718578182fd5b6127218361255b565b946020939093013593505050565b600060208284031215612740578081fd5b813561258c8161331c565b60006020828403121561275c578081fd5b815161258c8161331c565b600060208284031215612778578081fd5b5035919050565b60008151808452612797816020860160208601613244565b601f01601f19169290920160200192915050565b600081516127bd818560208601613244565b9290920192915050565b61227d60f01b815260020190565b600082516127e7818460208701613244565b9190910192915050565b60008351612803818460208801613244565b835190830190612817818360208801613244565b01949350505050565b60008551612832818460208a01613244565b855190830190612846818360208a01613244565b8551910190612859818360208901613244565b845191019061286c818360208801613244565b019695505050505050565b60008a51612889818460208f01613244565b8a5161289b8183860160208f01613244565b8a5191840101906128b0818360208e01613244565b89516128c28183850160208e01613244565b89519290910101906128d8818360208c01613244565b87516128ea8183850160208c01613244565b8751929091010190612900818360208a01613244565b85516129128183850160208a01613244565b8551929091010190612928818360208801613244565b019b9a5050505050505050505050565b6f7b226e616d65223a202246757869202360801b81528251600090612964816010850160208801613244565b7f222c20226465736372697074696f6e223a2022467578692077617320746865206010918401918201527f63726561746f72206f6620676f737369702e204675786927732046697273742060308201527f457261206372656174656420382c383838204e4654732c2072616e67696e672060508201527f66726f6d20233120746f2023383838382e20596f752063616e2072616e646f6d60708201527f6c79206d616b65206120676f73736970204e4654206261736564206f6e20746860908201527f65206164647265737320636f64652c20616e64207468656e207374617274206460b08201527f6976696e6174696f6e2c20626174746c6520616e64206f746865722067616d6560d08201527f706c61792e222c2022696d616765223a2022646174613a696d6167652f73766760f08201526b0ade1b5b0ed8985cd94d8d0b60a21b610110820152612ac4612abf61011c8301866127ab565b6127c7565b95945050505050565b60006e2120a1a5a3a927aaa72221a7a627a960891b82528251612af781600f850160208701613244565b91909101600f0192915050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251612b3c81601d850160208701613244565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b909083018461277f565b9695505050505050565b901515815260200190565b60006020825261258c602083018461277f565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526023908201527f546865207570706572206c696d6974206f6620746f6b656e204944206973203860408201526207070760eb1b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601290820152711d1bdad95b9259081a5cc81a5b9d985b1a5960721b604082015260600190565b600060208252825160e0602084015261312961010084018261277f565b90506020840151601f1980858403016040860152613147838361277f565b92506040860151915080858403016060860152613164838361277f565b92506060860151915080858403016080860152613181838361277f565b925060808601519150808584030160a086015261319e838361277f565b925060a08601519150808584030160c08601526131bb838361277f565b925060c08601519150808584030160e086015250612ac4828261277f565b90815260200190565b600082198211156131f5576131f56132da565b500190565b600082613209576132096132f0565b500490565b6000816000190483118215151615613228576132286132da565b500290565b60008282101561323f5761323f6132da565b500390565b60005b8381101561325f578181015183820152602001613247565b83811115610a995750506000910152565b60028104600182168061328457607f821691505b602082108114156132a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132bf576132bf6132da565b5060010190565b6000826132d5576132d56132f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119a257600080fdfe3ee5a4a9e5b9b23c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31392220793d223232372e3234393939352220783d223234312e39353134323922207374726f6b652d77696474683d223022203ee4ba94e8a18c3c2f746578743e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f372220793d223232362e3235393235372220783d2231343622207374726f6b652d77696474683d223022203ee585abe58da63c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31352220793d223232372220783d223139322e38373530303122207374726f6b652d77696474683d223022203c673e3c7469746c653e4c6179657220313c2f7469746c653e3c672069643d227376675f313622207374726f6b653d226e756c6c223e3c672069643d227376675f38222066696c6c3d226e6f6e65222066696c6c2d72756c653d226576656e6f646422207472616e73666f726d3d226d617472697828312e303238393539373639323430333836322c302c302c312e303238393539373639323430333836322c37392e343238393134363934393632382c34342e363932333534333632353235353529223e3c672069643d227376675f3922207374726f6b653d226e756c6c223e3c672069643d227376675f313022207374726f6b653d226e756c6c223e3c636972636c652069643d227376675f313422203c7061746820643d226d39332e35363636352c32372e30333239386332372e34373935332c302034392e373536312c32322e32373635372034392e373536312c34392e3735363163302c32372e3230343734202d32312e38333332362c34392e3331303035202d34382e39333332392c34392e37343934336c2d302e33383535372c302e303032396331332e35333830352c2d302e32333333312032342e34343038312c2d31312e32383035362032342e34343038312c2d32342e383734323863302c2d31332e3733393737202d31312e31333832382c2d32342e3837383035202d32342e38373830352c2d32342e38373830356c2d302e343131342c2d302e3030333333632d31332e35353030322c2d302e32313937202d32342e34363636352c2d31312e3237323335202d32342e34363636352c2d32342e383734373263302c2d31332e36303233372031302e39313636332c2d32342e36353530322032342e34363636352c2d32342e38373437316c302e343131342c2d302e30303333347a6d302c31322e3433393033632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383820352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931352031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f313322207374726f6b652d77696474683d22302e35222078313d22323331222079313d22323234222078323d22323331222079323d22323939222069643d227376675f3422207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f362220793d223232362e3530303030312220783d22393822207374726f6b652d77696474683d223022207374726f6b652d77696474683d22302e35222078313d22313335222079313d22323234222078323d22313335222079323d22323939222069643d227376675f3222207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e65222063783d2239332e3536363635222063793d2237362e3738393037372220723d2235302e323522207374726f6b652d77696474683d22302e35222078313d223837222079313d22323234222078323d223837222079323d22323939222069643d227376675f323022207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e6522204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c74657874206c65747465722d73706163696e673d2231707822207374796c653d22637572736f723a206d6f76653b22203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32332220793d223237312e3036323033362220783d223135332e30333739393122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32322220793d223237312e3036323033362220783d223130342e38373522207374726f6b652d77696474683d223022203c673e3c7469746c653e6261636b67726f756e643c2f7469746c653e3c7265637420783d222d312220793d222d31222077696474683d223130302522206865696768743d2231303025222069643d2263616e7661735f6261636b67726f756e64223c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32342220793d223237312e3036323033362220783d2232303122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32352220793d223237312e3036323033362220783d223234392e33353533303122207374726f6b652d77696474683d223022207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2232342220793d223333222069643d227376675f31372220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e233c2f746578743e3c6c696e652066696c6c3d226e6f6e6522207374726f6b653d226e756c6c222f3e3c7061746820643d226d39332e30393832352c32372e30333733632d31332e35323336322c302e3234393732202d32342e34303936352c31312e3239303434202d32342e34303936352c32342e383733373363302c31332e36303233372031302e39313636332c32342e36353530322032342e34363636352c32342e38373437326c302e343131342c302e30303333336331332e37333937372c302032342e38373830352c31312e31333832382032342e38373830352c32342e383738303563302c31332e3630323337202d31302e39313636332c32342e3635353032202d32342e34363636352c32342e38373437316c2d302e343131342c302e3030333334632d32372e34373935332c30202d34392e373536312c2d32322e3237363537202d34392e373536312c2d34392e3735363163302c2d32372e32303437342032312e38333332362c2d34392e33313030352034382e39333332392c2d34392e37343934336c302e33353434312c2d302e30303233357a6d302e343638342c36322e3138373034632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383920352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931342031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f3132222066696c6c3d222330303030303022207374726f6b653d226e756c6c222f3e3c636972636c652069643d227376675f31312220207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2233332e3831323734382220793d223333222069643d227376675f32312220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e63783d2239332e3536363635222063793d223130312e3636333336312220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c636972636c652069643d22e6a4ade59c86e5bda2222066696c6c3d2223303030303030222063783d2239332e3536363635222063793d2235312e3932343032322220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c2f673e3c2f673e3c2f673e3c2f673e3c7376672076696577426f783d2230203020333530203335302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c672069643d2263616e766173477269642220646973706c61793d226e6f6e65223e3c726563742069643d227376675f31222077696474683d223130302522206865696768743d22313030252220783d22302220793d223022207374726f6b652d77696474683d2230222066696c6c3d2275726c2823677269647061747465726e29222f3e3c2f673e3c2f673e7374726f6b652d77696474683d22302e35222078313d22313833222079313d22323234222078323d22313833222079323d22323939222069643d227376675f3322207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e652220a264697066735822122084569ce20ba3341fb3d811237740bcb0c475677392b45afb4af78d73af01329164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063b88d4fde11610097578063dc1cfce611610071578063dc1cfce614610327578063e6d9b7ad1461033a578063e985e9c51461035a578063f2fde38b1461036d5761018e565b8063b88d4fde146102ee578063c79bc98114610301578063c87b56dd146103145761018e565b80636352211e1461029d57806370a08231146102b0578063715018a6146102c35780638da5cb5b146102cb57806395d89b41146102d3578063a22cb465146102db5761018e565b80631a861d261161014b57806342842e0e1161012557806342842e0e1461025c578063428f55201461026f5780634e71d92d146102825780634f6ccce71461028a5761018e565b80631a861d261461022e57806323b872dd146102365780632f745c59146102495761018e565b8063016769cd1461019357806301ffc9a7146101bc57806306fdde03146101dc578063081812fc146101e4578063095ea7b31461020457806318160ddd14610219575b600080fd5b6101a66101a1366004612767565b610380565b6040516101b39190612ba5565b60405180910390f35b6101cf6101ca36600461272f565b610484565b6040516101b39190612b9a565b6101a66104a9565b6101f76101f2366004612767565b61053b565b6040516101b39190612b49565b610217610212366004612706565b610587565b005b61022161061f565b6040516101b391906131d9565b610221610625565b6102176102443660046125c5565b61062b565b610221610257366004612706565b610663565b61021761026a3660046125c5565b6106b5565b6101a661027d366004612767565b6106d0565b6102176107ca565b610221610298366004612767565b610855565b6101f76102ab366004612767565b6108b0565b6102216102be366004612572565b6108e5565b610217610929565b6101f7610974565b6101a6610983565b6102176102e93660046126cc565b610992565b6102176102fc366004612600565b610a60565b6101a661030f366004612767565b610a9f565b6101a6610322366004612767565b610b98565b6101a6610335366004612767565b611384565b61034d610348366004612767565b611477565b6040516101b3919061310c565b6101cf610368366004612593565b611906565b61021761037b366004612572565b611934565b606061047c82604051806040016040528060068152602001650474f535349560d41b815250600f805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546103e690613270565b80601f016020809104026020016040519081016040528092919081815260200182805461041290613270565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050815260200190600101906103c7565b505050506119a5565b90505b919050565b60006001600160e01b0319821663780e9d6360e01b148061047c575061047c82611a3f565b6060600080546104b890613270565b80601f01602080910402602001604051908101604052809291908181526020018280546104e490613270565b80156105315780601f1061050657610100808354040283529160200191610531565b820191906000526020600020905b81548152906001019060200180831161051457829003601f168201915b5050505050905090565b600061054682611a7f565b61056b5760405162461bcd60e51b815260040161056290612f01565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610592826108b0565b9050806001600160a01b0316836001600160a01b031614156105c65760405162461bcd60e51b815260040161056290612fcb565b806001600160a01b03166105d8611a9c565b6001600160a01b031614806105f457506105f481610368611a9c565b6106105760405162461bcd60e51b815260040161056290612ddc565b61061a8383611aa0565b505050565b60085490565b600c5481565b61063c610636611a9c565b82611b0e565b6106585760405162461bcd60e51b81526004016105629061300c565b61061a838383611b93565b600061066e836108e5565b821061068c5760405162461bcd60e51b815260040161056290612bb8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61061a83838360405180602001604052806000815250610a60565b606061047c826040518060400160405280600d81526020016c08a82a4a89098b284a4829c869609b1b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561047357838290600052602060002001805461073d90613270565b80601f016020809104026020016040519081016040528092919081815260200182805461076990613270565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b50505050508152602001906001019061071e565b6002600a5414156107ed5760405162461bcd60e51b8152600401610562906130a9565b6002600a5560006107fc61061f565b6108079060016131e2565b9050600c5481111561082b5760405162461bcd60e51b815260040161056290612d4d565b6000818152600d6020526040902042905561084d610847611a9c565b82611cc0565b506001600a55565b600061085f61061f565b821061087d5760405162461bcd60e51b81526004016105629061305d565b6008828154811061089e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061047c5760405162461bcd60e51b815260040161056290612e83565b60006001600160a01b03821661090d5760405162461bcd60e51b815260040161056290612e39565b506001600160a01b031660009081526003602052604090205490565b610931611a9c565b6001600160a01b0316610942610974565b6001600160a01b0316146109685760405162461bcd60e51b815260040161056290612f4d565b6109726000611cde565b565b600b546001600160a01b031690565b6060600180546104b890613270565b61099a611a9c565b6001600160a01b0316826001600160a01b031614156109cb5760405162461bcd60e51b815260040161056290612d16565b80600560006109d8611a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a1c611a9c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a549190612b9a565b60405180910390a35050565b610a71610a6b611a9c565b83611b0e565b610a8d5760405162461bcd60e51b81526004016105629061300c565b610a9984848484611d30565b50505050565b606061047c826040518060400160405280600c81526020016b46495645454c454d454e545360a01b815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610473578382906000526020600020018054610b0b90613270565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613270565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b505050505081526020019060010190610aec565b6060610ba26124f6565b6000610bad84611477565b90506040518060600160405280603e815260200161444e603e913982526040805160a081019091526061808252613de460208301398260016020020152805182600260200201819052506040518060c00160405280608d815260200161448c608d913960608301526040805161014081019091526101128082526135b76020830139608083015260208181015160a0840152604080516060810190915260278082529091613b0f9083013960c083015260408181015160e08401528051610280810190915261025a8082526136c9602083013961010083015260a0810151610120830152604080516102c08101909152610293808252614082602083013961014083015260a08101516101608301526040805160e0810190915260ab8082526143a3602083013961018083015260408051606081019091526031808252613c1260208301396101a083015260608101516101c08301526040805160c0810190915260a0808252613fe260208301396101e083015260808101516102008301526040805160c08101909152609c808252613b36602083013961022083015260808101516102408301526040805160c08101909152609d808252613a72602083013961026083015260808101516102808301526040805160c08101909152609d80825261451960208301396102a083015260808101516102c083015260408051610180810190915261014f80825261392360208301396102e08301526080810151610300830152606081015161032083015260408051610100810190915260d380825261340f60208301396103408301526080810151610360830152606081015161038083015260408051610100810190915260d58082526134e260208301396103a083015260808101516103c083015260608101516103e083015260408051610100810190915260dc80825261333360208301396104008301526080810151610420830152606081015161044083015260408051808201909152601481527301f72ce58734a579e17ba32bc3a1f1e3a32bc3a160651b60208201528260236020020152606081015182602460200201819052506040518060c00160405280608e8152602001614315608e91396104a0830152610ee784611d63565b6104c083015260408051610100810190915260cf808252613d1560208301396104e0830152608081015161050083015260608101516105208301526040805180820190915260018152601f60f91b6020820152610540830152610f4984610a9f565b61056083015260408051610100810190915260d2808252613c43602083013961058083015260808101516105a083015260608101516105c08301526040805180820190915260018152601f60f91b60208201526105e0830152610fab84610380565b61060083015260408051610100810190915260cb808252613e456020830139610620830152608081015161064083015260608101516106608301526040805180820190915260018152601f60f91b602082015261068083015261100d84611384565b6106a083015260408051610100810190915260d2808252613f1060208301396106c083015260808101516106e083015260608101516107008301526040805180820190915260018152601f60f91b602082015261072083015261106f846106d0565b61074083015260408051808201825260118152701e17ba32bc3a1f1e17b39f1e17b9bb339f60791b602080830191909152610760850191909152835181850151838601516060870151608088015160a089015160c08a015160e08b01516101008c0151995160009a6110e39a909101612877565b60408051808303601f19018152908290526101208501516101408601516101608701516101808801516101a08901516101c08a01516101e08b01516102008c0151979950611136988a9890602001612877565b60408051808303601f19018152908290526102208501516102408601516102608701516102808801516102a08901516102c08a01516102e08b01516103008c0151979950611189988a9890602001612877565b60408051601f19818403018152908290526103208501516103408601516103608701516103808801516103a08901516103c08a01516103e08b01516104008c01519799506111dc988a9890602001612877565b60408051808303601f19018152908290526104208501516104408601516104608701516104808801516104a08901516104c08a01516104e08b01516105008c015197995061122f988a9890602001612877565b60408051808303601f19018152908290526105208501516105408601516105608701516105808801516105a08901516105c08a01516105e08b01516106008c0151979950611282988a9890602001612877565b60408051808303601f19018152908290526106208501516106408601516106608701516106808801516106a08901516106c08a01516106e08b01516107008c01519799506112d5988a9890602001612877565b60408051808303601f190181529082905261072085015161074086015161076087015192945061130a93859390602001612820565b6040516020818303038152906040529050600061135761132987611d63565b61133284611e7e565b604051602001611343929190612938565b604051602081830303815290604052611e7e565b90508060405160200161136a9190612b04565b60408051808303601f190181529190529695505050505050565b606061047c826040518060400160405280600681526020016554454e44525960d01b8152506010805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546113ea90613270565b80601f016020809104026020016040519081016040528092919081815260200182805461141690613270565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b5050505050815260200190600101906113cb565b61147f61251e565b6000828152600d6020526040902054806114ab5760405162461bcd60e51b8152600401610562906130e0565b60006114e66114c26114bd84876131e2565b611d63565b6040516020016114d29190612acd565b604051602081830303815290604052611ff2565b905060006114f56064836132c6565b905060138111611653576040518060e00160405280604051806040016040528060128152602001710103334b6361e9111b1319cb21b3291179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b1319cb21b3291160851b81525081526020016040518060400160405280600681526020016579656c6c6f7760d01b81525081525093506118fe565b60598111156117af576040518060e00160405280604051806040016040528060128152602001710103334b6361e9111b3333333333311179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b3333333333311160851b815250815260200160405180604001604052806005815260200164776869746560d81b81525081525093506118fe565b6040518060e00160405280604051806040016040528060128152602001710103334b6361e9111989c9899983091179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e9111b23331981c1911179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e9111b23331981c1911160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b815250815260200160405180604001604052806005815260200164626c61636b60d81b81525081525093505b505050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61193c611a9c565b6001600160a01b031661194d610974565b6001600160a01b0316146119735760405162461bcd60e51b815260040161056290612f4d565b6001600160a01b0381166119995760405162461bcd60e51b815260040161056290612c55565b6119a281611cde565b50565b6000838152600d6020526040902054606090806119d45760405162461bcd60e51b8152600401610562906130e0565b60006119f8856119e76114bd858a6131e2565b6040516020016114d29291906127f1565b9050600084855183611a0a91906132c6565b81518110611a2857634e487b7160e01b600052603260045260246000fd5b602002602001015190508093505050509392505050565b60006001600160e01b031982166380ac58cd60e01b1480611a7057506001600160e01b03198216635b5e139f60e01b145b8061047c575061047c82612023565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ad5826108b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1982611a7f565b611b355760405162461bcd60e51b815260040161056290612d90565b6000611b40836108b0565b9050806001600160a01b0316846001600160a01b03161480611b7b5750836001600160a01b0316611b708461053b565b6001600160a01b0316145b80611b8b5750611b8b8185611906565b949350505050565b826001600160a01b0316611ba6826108b0565b6001600160a01b031614611bcc5760405162461bcd60e51b815260040161056290612f82565b6001600160a01b038216611bf25760405162461bcd60e51b815260040161056290612cd2565b611bfd83838361203c565b611c08600082611aa0565b6001600160a01b0383166000908152600360205260408120805460019290611c3190849061322d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c5f9084906131e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611cda8282604051806020016040528060008152506120c5565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d3b848484611b93565b611d47848484846120f8565b610a995760405162461bcd60e51b815260040161056290612c03565b606081611d8857506040805180820190915260018152600360fc1b602082015261047f565b8160005b8115611db25780611d9c816132ab565b9150611dab9050600a836131fa565b9150611d8c565b60008167ffffffffffffffff811115611ddb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e05576020820181803683370190505b5090505b8415611b8b57611e1a60018361322d565b9150611e27600a866132c6565b611e329060306131e2565b60f81b818381518110611e5557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e77600a866131fa565b9450611e09565b805160609080611e9e57505060408051602081019091526000815261047f565b60006003611ead8360026131e2565b611eb791906131fa565b611ec290600461320e565b90506000611ed18260206131e2565b67ffffffffffffffff811115611ef757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f21576020820181803683370190505b5090506000604051806060016040528060408152602001613bd2604091399050600181016020830160005b86811015611fad576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611f4c565b506003860660018114611fc75760028114611fd857611fe4565b613d3d60f01b600119830152611fe4565b603d60f81b6000198301525b505050918152949350505050565b60008160405160200161200591906127d5565b60408051601f19818403018152919052805160209091012092915050565b6001600160e01b031981166301ffc9a760e01b14919050565b61204783838361061a565b6001600160a01b0383166120635761205e81612213565b612086565b816001600160a01b0316836001600160a01b031614612086576120868382612257565b6001600160a01b0382166120a25761209d816122f4565b61061a565b826001600160a01b0316826001600160a01b03161461061a5761061a82826123cd565b6120cf8383612411565b6120dc60008484846120f8565b61061a5760405162461bcd60e51b815260040161056290612c03565b600061210c846001600160a01b03166124f0565b1561220857836001600160a01b031663150b7a02612128611a9c565b8786866040518563ffffffff1660e01b815260040161214a9493929190612b5d565b602060405180830381600087803b15801561216457600080fd5b505af1925050508015612194575060408051601f3d908101601f191682019092526121919181019061274b565b60015b6121ee573d8080156121c2576040519150601f19603f3d011682016040523d82523d6000602084013e6121c7565b606091505b5080516121e65760405162461bcd60e51b815260040161056290612c03565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8b565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612264846108e5565b61226e919061322d565b6000838152600760205260409020549091508082146122c1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123069060019061322d565b6000838152600960205260408120546008805493945090928490811061233c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061236b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123b157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006123d8836108e5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124375760405162461bcd60e51b815260040161056290612ecc565b61244081611a7f565b1561245d5760405162461bcd60e51b815260040161056290612c9b565b6124696000838361203c565b6001600160a01b03821660009081526003602052604081208054600192906124929084906131e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b604051806107800160405280603c905b60608152602001906001900390816125065790505090565b6040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b80356001600160a01b038116811461047f57600080fd5b600060208284031215612583578081fd5b61258c8261255b565b9392505050565b600080604083850312156125a5578081fd5b6125ae8361255b565b91506125bc6020840161255b565b90509250929050565b6000806000606084860312156125d9578081fd5b6125e28461255b565b92506125f06020850161255b565b9150604084013590509250925092565b60008060008060808587031215612615578081fd5b61261e8561255b565b9350602061262d81870161255b565b935060408601359250606086013567ffffffffffffffff80821115612650578384fd5b818801915088601f830112612663578384fd5b81358181111561267557612675613306565b604051601f8201601f191681018501838111828210171561269857612698613306565b60405281815283820185018b10156126ae578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156126de578182fd5b6126e78361255b565b9150602083013580151581146126fb578182fd5b809150509250929050565b60008060408385031215612718578182fd5b6127218361255b565b946020939093013593505050565b600060208284031215612740578081fd5b813561258c8161331c565b60006020828403121561275c578081fd5b815161258c8161331c565b600060208284031215612778578081fd5b5035919050565b60008151808452612797816020860160208601613244565b601f01601f19169290920160200192915050565b600081516127bd818560208601613244565b9290920192915050565b61227d60f01b815260020190565b600082516127e7818460208701613244565b9190910192915050565b60008351612803818460208801613244565b835190830190612817818360208801613244565b01949350505050565b60008551612832818460208a01613244565b855190830190612846818360208a01613244565b8551910190612859818360208901613244565b845191019061286c818360208801613244565b019695505050505050565b60008a51612889818460208f01613244565b8a5161289b8183860160208f01613244565b8a5191840101906128b0818360208e01613244565b89516128c28183850160208e01613244565b89519290910101906128d8818360208c01613244565b87516128ea8183850160208c01613244565b8751929091010190612900818360208a01613244565b85516129128183850160208a01613244565b8551929091010190612928818360208801613244565b019b9a5050505050505050505050565b6f7b226e616d65223a202246757869202360801b81528251600090612964816010850160208801613244565b7f222c20226465736372697074696f6e223a2022467578692077617320746865206010918401918201527f63726561746f72206f6620676f737369702e204675786927732046697273742060308201527f457261206372656174656420382c383838204e4654732c2072616e67696e672060508201527f66726f6d20233120746f2023383838382e20596f752063616e2072616e646f6d60708201527f6c79206d616b65206120676f73736970204e4654206261736564206f6e20746860908201527f65206164647265737320636f64652c20616e64207468656e207374617274206460b08201527f6976696e6174696f6e2c20626174746c6520616e64206f746865722067616d6560d08201527f706c61792e222c2022696d616765223a2022646174613a696d6167652f73766760f08201526b0ade1b5b0ed8985cd94d8d0b60a21b610110820152612ac4612abf61011c8301866127ab565b6127c7565b95945050505050565b60006e2120a1a5a3a927aaa72221a7a627a960891b82528251612af781600f850160208701613244565b91909101600f0192915050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251612b3c81601d850160208701613244565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b909083018461277f565b9695505050505050565b901515815260200190565b60006020825261258c602083018461277f565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526023908201527f546865207570706572206c696d6974206f6620746f6b656e204944206973203860408201526207070760eb1b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601290820152711d1bdad95b9259081a5cc81a5b9d985b1a5960721b604082015260600190565b600060208252825160e0602084015261312961010084018261277f565b90506020840151601f1980858403016040860152613147838361277f565b92506040860151915080858403016060860152613164838361277f565b92506060860151915080858403016080860152613181838361277f565b925060808601519150808584030160a086015261319e838361277f565b925060a08601519150808584030160c08601526131bb838361277f565b925060c08601519150808584030160e086015250612ac4828261277f565b90815260200190565b600082198211156131f5576131f56132da565b500190565b600082613209576132096132f0565b500490565b6000816000190483118215151615613228576132286132da565b500290565b60008282101561323f5761323f6132da565b500390565b60005b8381101561325f578181015183820152602001613247565b83811115610a995750506000910152565b60028104600182168061328457607f821691505b602082108114156132a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132bf576132bf6132da565b5060010190565b6000826132d5576132d56132f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119a257600080fdfe3ee5a4a9e5b9b23c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31392220793d223232372e3234393939352220783d223234312e39353134323922207374726f6b652d77696474683d223022203ee4ba94e8a18c3c2f746578743e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f372220793d223232362e3235393235372220783d2231343622207374726f6b652d77696474683d223022203ee585abe58da63c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31352220793d223232372220783d223139322e38373530303122207374726f6b652d77696474683d223022203c673e3c7469746c653e4c6179657220313c2f7469746c653e3c672069643d227376675f313622207374726f6b653d226e756c6c223e3c672069643d227376675f38222066696c6c3d226e6f6e65222066696c6c2d72756c653d226576656e6f646422207472616e73666f726d3d226d617472697828312e303238393539373639323430333836322c302c302c312e303238393539373639323430333836322c37392e343238393134363934393632382c34342e363932333534333632353235353529223e3c672069643d227376675f3922207374726f6b653d226e756c6c223e3c672069643d227376675f313022207374726f6b653d226e756c6c223e3c636972636c652069643d227376675f313422203c7061746820643d226d39332e35363636352c32372e30333239386332372e34373935332c302034392e373536312c32322e32373635372034392e373536312c34392e3735363163302c32372e3230343734202d32312e38333332362c34392e3331303035202d34382e39333332392c34392e37343934336c2d302e33383535372c302e303032396331332e35333830352c2d302e32333333312032342e34343038312c2d31312e32383035362032342e34343038312c2d32342e383734323863302c2d31332e3733393737202d31312e31333832382c2d32342e3837383035202d32342e38373830352c2d32342e38373830356c2d302e343131342c2d302e3030333333632d31332e35353030322c2d302e32313937202d32342e34363636352c2d31312e3237323335202d32342e34363636352c2d32342e383734373263302c2d31332e36303233372031302e39313636332c2d32342e36353530322032342e34363636352c2d32342e38373437316c302e343131342c2d302e30303333347a6d302c31322e3433393033632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383820352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931352031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f313322207374726f6b652d77696474683d22302e35222078313d22323331222079313d22323234222078323d22323331222079323d22323939222069643d227376675f3422207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f362220793d223232362e3530303030312220783d22393822207374726f6b652d77696474683d223022207374726f6b652d77696474683d22302e35222078313d22313335222079313d22323234222078323d22313335222079323d22323939222069643d227376675f3222207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e65222063783d2239332e3536363635222063793d2237362e3738393037372220723d2235302e323522207374726f6b652d77696474683d22302e35222078313d223837222079313d22323234222078323d223837222079323d22323939222069643d227376675f323022207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e6522204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c74657874206c65747465722d73706163696e673d2231707822207374796c653d22637572736f723a206d6f76653b22203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32332220793d223237312e3036323033362220783d223135332e30333739393122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32322220793d223237312e3036323033362220783d223130342e38373522207374726f6b652d77696474683d223022203c673e3c7469746c653e6261636b67726f756e643c2f7469746c653e3c7265637420783d222d312220793d222d31222077696474683d223130302522206865696768743d2231303025222069643d2263616e7661735f6261636b67726f756e64223c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32342220793d223237312e3036323033362220783d2232303122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32352220793d223237312e3036323033362220783d223234392e33353533303122207374726f6b652d77696474683d223022207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2232342220793d223333222069643d227376675f31372220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e233c2f746578743e3c6c696e652066696c6c3d226e6f6e6522207374726f6b653d226e756c6c222f3e3c7061746820643d226d39332e30393832352c32372e30333733632d31332e35323336322c302e3234393732202d32342e34303936352c31312e3239303434202d32342e34303936352c32342e383733373363302c31332e36303233372031302e39313636332c32342e36353530322032342e34363636352c32342e38373437326c302e343131342c302e30303333336331332e37333937372c302032342e38373830352c31312e31333832382032342e38373830352c32342e383738303563302c31332e3630323337202d31302e39313636332c32342e3635353032202d32342e34363636352c32342e38373437316c2d302e343131342c302e3030333334632d32372e34373935332c30202d34392e373536312c2d32322e3237363537202d34392e373536312c2d34392e3735363163302c2d32372e32303437342032312e38333332362c2d34392e33313030352034382e39333332392c2d34392e37343934336c302e33353434312c2d302e30303233357a6d302e343638342c36322e3138373034632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383920352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931342031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f3132222066696c6c3d222330303030303022207374726f6b653d226e756c6c222f3e3c636972636c652069643d227376675f31312220207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2233332e3831323734382220793d223333222069643d227376675f32312220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e63783d2239332e3536363635222063793d223130312e3636333336312220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c636972636c652069643d22e6a4ade59c86e5bda2222066696c6c3d2223303030303030222063783d2239332e3536363635222063793d2235312e3932343032322220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c2f673e3c2f673e3c2f673e3c2f673e3c7376672076696577426f783d2230203020333530203335302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c672069643d2263616e766173477269642220646973706c61793d226e6f6e65223e3c726563742069643d227376675f31222077696474683d223130302522206865696768743d22313030252220783d22302220793d223022207374726f6b652d77696474683d2230222066696c6c3d2275726c2823677269647061747465726e29222f3e3c2f673e3c2f673e7374726f6b652d77696474683d22302e35222078313d22313833222079313d22323234222078323d22313833222079323d22323939222069643d227376675f3322207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e652220a264697066735822122084569ce20ba3341fb3d811237740bcb0c475677392b45afb4af78d73af01329164736f6c63430008000033

Deployed Bytecode Sourcemap

44430:14177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46166:130;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38280:224;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25404:100::-;;;:::i;26963:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26486:411::-;;;;;;:::i;:::-;;:::i;:::-;;38920:113;;;:::i;:::-;;;;;;;:::i;44521:30::-;;;:::i;27853:339::-;;;;;;:::i;:::-;;:::i;38588:256::-;;;;;;:::i;:::-;;:::i;28263:185::-;;;;;;:::i;:::-;;:::i;46446:151::-;;;;;;:::i;:::-;;:::i;57561:255::-;;;:::i;39110:233::-;;;;;;:::i;:::-;;:::i;25098:239::-;;;;;;:::i;:::-;;:::i;24828:208::-;;;;;;:::i;:::-;;:::i;9844:94::-;;;:::i;9193:87::-;;;:::i;25573:104::-;;;:::i;27256:295::-;;;;;;:::i;:::-;;:::i;28519:328::-;;;;;;:::i;:::-;;:::i;46006:148::-;;;;;;:::i;:::-;;:::i;48837:8716::-;;;;;;:::i;:::-;;:::i;46308:130::-;;;;;;:::i;:::-;;:::i;47034:1795::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27622:164::-;;;;;;:::i;:::-;;:::i;10093:192::-;;;;;;:::i;:::-;;:::i;46166:130::-;46223:13;46256:32;46262:7;46256:32;;;;;;;;;;;;;-1:-1:-1;;;46256:32:0;;;46281:6;46256:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:32::i;:::-;46249:39;;46166:130;;;;:::o;38280:224::-;38382:4;-1:-1:-1;;;;;;38406:50:0;;-1:-1:-1;;;38406:50:0;;:90;;;38460:36;38484:11;38460:23;:36::i;25404:100::-;25458:13;25491:5;25484:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25404:100;:::o;26963:221::-;27039:7;27067:16;27075:7;27067;:16::i;:::-;27059:73;;;;-1:-1:-1;;;27059:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;27152:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27152:24:0;;26963:221::o;26486:411::-;26567:13;26583:23;26598:7;26583:14;:23::i;:::-;26567:39;;26631:5;-1:-1:-1;;;;;26625:11:0;:2;-1:-1:-1;;;;;26625:11:0;;;26617:57;;;;-1:-1:-1;;;26617:57:0;;;;;;;:::i;:::-;26725:5;-1:-1:-1;;;;;26709:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26709:21:0;;:62;;;;26734:37;26751:5;26758:12;:10;:12::i;26734:37::-;26687:168;;;;-1:-1:-1;;;26687:168:0;;;;;;;:::i;:::-;26868:21;26877:2;26881:7;26868:8;:21::i;:::-;26486:411;;;:::o;38920:113::-;39008:10;:17;38920:113;:::o;44521:30::-;;;;:::o;27853:339::-;28048:41;28067:12;:10;:12::i;:::-;28081:7;28048:18;:41::i;:::-;28040:103;;;;-1:-1:-1;;;28040:103:0;;;;;;;:::i;:::-;28156:28;28166:4;28172:2;28176:7;28156:9;:28::i;38588:256::-;38685:7;38721:23;38738:5;38721:16;:23::i;:::-;38713:5;:31;38705:87;;;;-1:-1:-1;;;38705:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38810:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38588:256::o;28263:185::-;28401:39;28418:4;28424:2;28428:7;28401:39;;;;;;;;;;;;:16;:39::i;46446:151::-;46510:13;46543:46;46549:7;46543:46;;;;;;;;;;;;;-1:-1:-1;;;46543:46:0;;;46575:13;46543:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57561:255;12132:1;12728:7;;:19;;12720:63;;;;-1:-1:-1;;;12720:63:0;;;;;;;:::i;:::-;12132:1;12861:7;:18;57609:15:::1;57627:13;:11;:13::i;:::-;:15;::::0;57641:1:::1;57627:15;:::i;:::-;57609:33;;57672:8;;57661:7;:19;;57653:67;;;;-1:-1:-1::0;;;57653:67:0::1;;;;;;;:::i;:::-;57731:16;::::0;;;:7:::1;:16;::::0;;;;57750:15:::1;57731:34:::0;;57776:32:::1;57786:12;:10;:12::i;:::-;57800:7;57776:9;:32::i;:::-;-1:-1:-1::0;12088:1:0;13040:7;:22;57561:255::o;39110:233::-;39185:7;39221:30;:28;:30::i;:::-;39213:5;:38;39205:95;;;;-1:-1:-1;;;39205:95:0;;;;;;;:::i;:::-;39318:10;39329:5;39318:17;;;;;;-1:-1:-1;;;39318:17:0;;;;;;;;;;;;;;;;;39311:24;;39110:233;;;:::o;25098:239::-;25170:7;25206:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25206:16:0;25241:19;25233:73;;;;-1:-1:-1;;;25233:73:0;;;;;;;:::i;24828:208::-;24900:7;-1:-1:-1;;;;;24928:19:0;;24920:74;;;;-1:-1:-1;;;24920:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25012:16:0;;;;;:9;:16;;;;;;;24828:208::o;9844:94::-;9424:12;:10;:12::i;:::-;-1:-1:-1;;;;;9413:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9413:23:0;;9405:68;;;;-1:-1:-1;;;9405:68:0;;;;;;;:::i;:::-;9909:21:::1;9927:1;9909:9;:21::i;:::-;9844:94::o:0;9193:87::-;9266:6;;-1:-1:-1;;;;;9266:6:0;9193:87;:::o;25573:104::-;25629:13;25662:7;25655:14;;;;;:::i;27256:295::-;27371:12;:10;:12::i;:::-;-1:-1:-1;;;;;27359:24:0;:8;-1:-1:-1;;;;;27359:24:0;;;27351:62;;;;-1:-1:-1;;;27351:62:0;;;;;;;:::i;:::-;27471:8;27426:18;:32;27445:12;:10;:12::i;:::-;-1:-1:-1;;;;;27426:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27426:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27426:53:0;;;;;;;;;;;27510:12;:10;:12::i;:::-;-1:-1:-1;;;;;27495:48:0;;27534:8;27495:48;;;;;;:::i;:::-;;;;;;;;27256:295;;:::o;28519:328::-;28694:41;28713:12;:10;:12::i;:::-;28727:7;28694:18;:41::i;:::-;28686:103;;;;-1:-1:-1;;;28686:103:0;;;;;;;:::i;:::-;28800:39;28814:4;28820:2;28824:7;28833:5;28800:13;:39::i;:::-;28519:328;;;;:::o;46006:148::-;46069:13;46102:44;46108:7;46102:44;;;;;;;;;;;;;-1:-1:-1;;;46102:44:0;;;46133:12;46102:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48837:8716;48902:13;48928:23;;:::i;:::-;48962:17;48982:22;48996:7;48982:13;:22::i;:::-;48962:42;;49025:82;;;;;;;;;;;;;;;;;;;49122:117;;;;;;;;;;;;;;49025:8;49122:117;;;:5;49128:1;49122:8;;;:117;49261:20;;49250:5;49256:1;49250:8;;;:31;;;;49292:161;;;;;;;;;;;;;;;;;:8;;;:161;49464:294;;;;;;;;;;;;;;49292:8;49464:294;;;:8;;;:294;:8;49780:16;;;;49769:8;;;:27;49807:59;;;;;;;;;;;;;;;;;;;;:8;;;:59;49888:16;;;;;49877:8;;;:27;49915:622;;;;;;;;;;;;;49807:8;49915:622;;;:8;;;:622;50559:15;;;;50548:8;;;:26;50585:680;;;;;;;;;;;;;;49915:8;50585:680;;;:9;;;:680;51288:15;;;;51276:9;;;:27;51314:192;;;;;;;;;;;;;;50585:9;51314:192;;;:9;;;:192;51517:70;;;;;;;;;;;;;;51314:9;51517:70;;;:9;;;:70;51610:18;;;;51598:9;;;:30;51639:181;;;;;;;;;;;;;;51517:9;51639:181;;;:9;;;:181;51843:20;;;;51831:9;;;:32;51874:177;;;;;;;;;;;;;;51639:9;51874:177;;;:9;;;:177;52074:20;;;;52062:9;;;:32;52105:178;;;;;;;;;;;;;;51874:9;52105:178;;;:9;;;:178;52306:20;;;;52294:9;;;:32;52337:178;;;;;;;;;;;;;;52105:9;52337:178;;;:9;;;:178;52538:20;;;;52526:9;;;:32;52569:356;;;;;;;;;;;;;;52337:9;52569:356;;;:9;;;:356;52948:20;;;;52936:9;;;:32;52991:18;;;;52979:9;;;:30;53020:232;;;;;;;;;;;;;;52569:9;53020:232;;;:9;;;:232;53275:20;;;;53263:9;;;:32;53318:18;;;;53306:9;;;:30;53347:234;;;;;;;;;;;;;;53020:9;53347:234;;;:9;;;:234;53604:20;;;;53592:9;;;:32;53647:18;;;;53635:9;;;:30;53676:241;;;;;;;;;;;;;;53347:9;53676:241;;;:9;;;:241;53940:20;;;;53928:9;;;:32;53983:18;;;;53971:9;;;:30;54012:41;;;;;;;;;;;;-1:-1:-1;;;53682:2:0;54012:41;;;53676:5;54018:2;54012:9;;;:41;54076:18;;;;54064:5;54070:2;54064:9;;;:30;;;;54105:163;;;;;;;;;;;;;;;;;:9;;;:163;54291:17;54300:7;54291:8;:17::i;:::-;54279:9;;;:29;54319:228;;;;;;;;;;;;;;54279:9;54319:228;;;:9;;;:228;54570:20;;;;54558:9;;;:32;54613:18;;;;54601:9;;;:30;54642:22;;;;;;;;;;;;-1:-1:-1;;;54319:9:0;54642:22;;;:9;;;:22;54687:24;54703:7;54687:15;:24::i;:::-;54675:9;;;:36;54722:231;;;;;;;;;;;;;;54675:9;54722:231;;;:9;;;:231;54976:20;;;;54964:9;;;:32;55019:18;;;;55007:9;;;:30;55048:22;;;;;;;;;;;;-1:-1:-1;;;54722:9:0;55048:22;;;:9;;;:22;55093:18;55103:7;55093:9;:18::i;:::-;55081:9;;;:30;55122:224;;;;;;;;;;;;;;55081:9;55122:224;;;:9;;;:224;55369:20;;;;55357:9;;;:32;55412:18;;;;55400:9;;;:30;55441:22;;;;;;;;;;;;-1:-1:-1;;;55122:9:0;55441:22;;;:9;;;:22;55486:18;55496:7;55486:9;:18::i;:::-;55474:9;;;:30;55515:231;;;;;;;;;;;;;;55474:9;55515:231;;;:9;;;:231;55769:20;;;;55757:9;;;:32;55812:18;;;;55800:9;;;:30;55841:22;;;;;;;;;;;;-1:-1:-1;;;55515:9:0;55841:22;;;:9;;;:22;55886:25;55903:7;55886:16;:25::i;:::-;55874:9;;;:37;55922:31;;;;;;;;;;;-1:-1:-1;;;55874:9:0;55922:31;;;;;;;:9;;;:31;;;;56013:8;;56023;;;;56033;;;;56043;;;;56053;;;;56063;;;;56073;;;;56083;;;;56092;;;;55996:105;;-1:-1:-1;;55996:105:0;;56092:8;;55996:105;;:::i;:::-;;;;;;;-1:-1:-1;;55996:105:0;;;;;;;56154:8;;;;56164:9;;;;56175;;;;56186;;;;56197;;;;56208;;;;56218;;;;56228;;;;55996:105;;-1:-1:-1;56129:109:0;;55996:105;;56228:9;56154:8;56129:109;;:::i;:::-;;;;;;;-1:-1:-1;;56129:109:0;;;;;;;56291:9;;;;56302;;;;56313;;;;56324;;;;56335;;;;56345;;;;56355;;;;56365;;;;56129:109;;-1:-1:-1;56266:109:0;;56129;;56365:9;56291;56266:109;;:::i;:::-;;;;-1:-1:-1;;56266:109:0;;;;;;;;;;56428:9;;;;56439;;;;56450;;;;56461;;;;56472;;;;56482;;;;56492;;;;56502;;;;56266:109;;-1:-1:-1;56403:109:0;;56266;;56502:9;56428;56403:109;;:::i;:::-;;;;;;;-1:-1:-1;;56403:109:0;;;;;;;56565:9;;;;56576;;;;56587;;;;56598;;;;56609;;;;56620;;;;56630;;;;56640;;;;56403:109;;-1:-1:-1;56540:110:0;;56403:109;;56640:9;56565;56540:110;;:::i;:::-;;;;;;;-1:-1:-1;;56540:110:0;;;;;;;56703:9;;;;56714;;;;56725;;;;56736;;;;56747;;;;56758;;;;56768;;;;56778;;;;56540:110;;-1:-1:-1;56678:110:0;;56540;;56778:9;56703;56678:110;;:::i;:::-;;;;;;;-1:-1:-1;;56678:110:0;;;;;;;56841:9;;;;56852;;;;56863;;;;56874;;;;56885;;;;56896;;;;56906;;;;56916;;;;56678:110;;-1:-1:-1;56816:110:0;;56678;;56916:9;56841;56816:110;;:::i;:::-;;;;;;;-1:-1:-1;;56816:110:0;;;;;;;56979:9;;;;56990;;;;57001;;;;56816:110;;-1:-1:-1;56954:57:0;;56816:110;;57001:9;56979;56954:57;;:::i;:::-;;;;;;;;;;;;;56938:74;;57023:18;57044:394;57108:17;57117:7;57108:8;:17::i;:::-;57400:28;57420:6;57400:13;:28::i;:::-;57071:364;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57044:13;:394::i;:::-;57023:415;;57515:4;57465:55;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;57465:55:0;;;;;;;48837:8716;-1:-1:-1;;;;;;48837:8716:0:o;46308:130::-;46365:13;46398:32;46404:7;46398:32;;;;;;;;;;;;;-1:-1:-1;;;46398:32:0;;;46423:6;46398:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47034:1795;47095:17;;:::i;:::-;47124:14;47141:16;;;:7;:16;;;;;;47177:11;47168:43;;;;-1:-1:-1;;;47168:43:0;;;;;;;:::i;:::-;47222:12;47237:77;47287:24;47296:14;47304:6;47296:7;:14;:::i;:::-;47287:8;:24::i;:::-;47251:61;;;;;;;;:::i;:::-;;;;;;;;;;;;;47237:6;:77::i;:::-;47222:92;-1:-1:-1;47325:17:0;47345:10;47352:3;47222:92;47345:10;:::i;:::-;47325:30;;47388:2;47375:9;:15;47371:1419;;47414:420;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47414:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47414:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47414:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47414:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47414:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47414:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47414:420:0;;;;;;47407:427;;47371:1419;;;47866:2;47855:9;:13;47851:939;;;47894:418;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47894:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47894:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47894:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47894:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47894:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47894:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47894:418:0;;;;;;47887:425;;47851:939;;;48357:418;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48357:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48357:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48357:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48357:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48357:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48357:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48357:418:0;;;;;;48350:425;;47851:939;48810:11;;;47034:1795;;;:::o;27622:164::-;-1:-1:-1;;;;;27743:25:0;;;27719:4;27743:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27622:164::o;10093:192::-;9424:12;:10;:12::i;:::-;-1:-1:-1;;;;;9413:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9413:23:0;;9405:68;;;;-1:-1:-1;;;9405:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10182:22:0;::::1;10174:73;;;;-1:-1:-1::0;;;10174:73:0::1;;;;;;;:::i;:::-;10258:19;10268:8;10258:9;:19::i;:::-;10093:192:::0;:::o;46605:421::-;46740:14;46757:16;;;:7;:16;;;;;;46714:13;;46793:11;46784:43;;;;-1:-1:-1;;;46784:43:0;;;;;;;:::i;:::-;46838:12;46853:69;46884:9;46895:24;46904:14;46912:6;46904:7;:14;:::i;46895:24::-;46867:53;;;;;;;;;:::i;46853:69::-;46838:84;;46933:20;46956:11;46975;:18;46968:4;:25;;;;:::i;:::-;46956:38;;;;;;-1:-1:-1;;;46956:38:0;;;;;;;;;;;;;;;46933:61;;47012:6;47005:13;;;;;46605:421;;;;;:::o;24459:305::-;24561:4;-1:-1:-1;;;;;;24598:40:0;;-1:-1:-1;;;24598:40:0;;:105;;-1:-1:-1;;;;;;;24655:48:0;;-1:-1:-1;;;24655:48:0;24598:105;:158;;;;24720:36;24744:11;24720:23;:36::i;30357:127::-;30422:4;30446:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30446:16:0;:30;;;30357:127::o;8053:98::-;8133:10;8053:98;:::o;34339:174::-;34414:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34414:29:0;-1:-1:-1;;;;;34414:29:0;;;;;;;;:24;;34468:23;34414:24;34468:14;:23::i;:::-;-1:-1:-1;;;;;34459:46:0;;;;;;;;;;;34339:174;;:::o;30651:348::-;30744:4;30769:16;30777:7;30769;:16::i;:::-;30761:73;;;;-1:-1:-1;;;30761:73:0;;;;;;;:::i;:::-;30845:13;30861:23;30876:7;30861:14;:23::i;:::-;30845:39;;30914:5;-1:-1:-1;;;;;30903:16:0;:7;-1:-1:-1;;;;;30903:16:0;;:51;;;;30947:7;-1:-1:-1;;;;;30923:31:0;:20;30935:7;30923:11;:20::i;:::-;-1:-1:-1;;;;;30923:31:0;;30903:51;:87;;;;30958:32;30975:5;30982:7;30958:16;:32::i;:::-;30895:96;30651:348;-1:-1:-1;;;;30651:348:0:o;33643:578::-;33802:4;-1:-1:-1;;;;;33775:31:0;:23;33790:7;33775:14;:23::i;:::-;-1:-1:-1;;;;;33775:31:0;;33767:85;;;;-1:-1:-1;;;33767:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33871:16:0;;33863:65;;;;-1:-1:-1;;;33863:65:0;;;;;;;:::i;:::-;33941:39;33962:4;33968:2;33972:7;33941:20;:39::i;:::-;34045:29;34062:1;34066:7;34045:8;:29::i;:::-;-1:-1:-1;;;;;34087:15:0;;;;;;:9;:15;;;;;:20;;34106:1;;34087:15;:20;;34106:1;;34087:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34118:13:0;;;;;;:9;:13;;;;;:18;;34135:1;;34118:13;:18;;34135:1;;34118:18;:::i;:::-;;;;-1:-1:-1;;34147:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34147:21:0;-1:-1:-1;;;;;34147:21:0;;;;;;;;;34186:27;;34147:16;;34186:27;;;;;;;33643:578;;;:::o;31341:110::-;31417:26;31427:2;31431:7;31417:26;;;;;;;;;;;;:9;:26::i;:::-;31341:110;;:::o;10293:173::-;10368:6;;;-1:-1:-1;;;;;10385:17:0;;;-1:-1:-1;;;;;;10385:17:0;;;;;;;10418:40;;10368:6;;;10385:17;10368:6;;10418:40;;10349:16;;10418:40;10293:173;;:::o;29729:315::-;29886:28;29896:4;29902:2;29906:7;29886:9;:28::i;:::-;29933:48;29956:4;29962:2;29966:7;29975:5;29933:22;:48::i;:::-;29925:111;;;;-1:-1:-1;;;29925:111:0;;;;;;;:::i;57828:715::-;57884:13;58097:10;58093:53;;-1:-1:-1;58124:10:0;;;;;;;;;;;;-1:-1:-1;;;58124:10:0;;;;;;58093:53;58171:5;58156:12;58212:78;58219:9;;58212:78;;58245:8;;;;:::i;:::-;;-1:-1:-1;58268:10:0;;-1:-1:-1;58276:2:0;58268:10;;:::i;:::-;;;58212:78;;;58300:19;58332:6;58322:17;;;;;;-1:-1:-1;;;58322:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58322:17:0;;58300:39;;58350:154;58357:10;;58350:154;;58384:11;58394:1;58384:11;;:::i;:::-;;-1:-1:-1;58453:10:0;58461:2;58453:5;:10;:::i;:::-;58440:24;;:2;:24;:::i;:::-;58427:39;;58410:6;58417;58410:14;;;;;;-1:-1:-1;;;58410:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;58410:56:0;;;;;;;;-1:-1:-1;58481:11:0;58490:2;58481:11;;:::i;:::-;;;58350:154;;58958:1607;59056:11;;59016:13;;59082:8;59078:23;;-1:-1:-1;;59092:9:0;;;;;;;;;-1:-1:-1;59092:9:0;;;;59078:23;59153:18;59191:1;59180:7;:3;59186:1;59180:7;:::i;:::-;59179:13;;;;:::i;:::-;59174:19;;:1;:19;:::i;:::-;59153:40;-1:-1:-1;59251:19:0;59283:15;59153:40;59296:2;59283:15;:::i;:::-;59273:26;;;;;;-1:-1:-1;;;59273:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59273:26:0;;59251:48;;59312:18;59333:5;;;;;;;;;;;;;;;;;59312:26;;59402:1;59395:5;59391:13;59447:2;59439:6;59435:15;59498:1;59466:777;59521:3;59518:1;59515:10;59466:777;;;59576:1;59619:12;;;;;59613:19;59714:4;59702:2;59698:14;;;;;59680:40;;59674:47;59823:2;59819:14;;;59815:25;;59801:40;;59795:47;59952:1;59948:13;;;59944:24;;59930:39;;59924:46;60072:16;;;;60058:31;;60052:38;59750:1;59746:11;;;59844:4;59791:58;;;59782:68;59875:11;;59920:57;;;59911:67;;;;60003:11;;60048:49;;60039:59;60127:3;60123:13;60156:22;;60226:1;60211:17;;;;59569:9;59466:777;;;59470:44;60275:1;60270:3;60266:11;60296:1;60291:84;;;;60394:1;60389:82;;;;60259:212;;60291:84;-1:-1:-1;;;;;60324:17:0;;60317:43;60291:84;;60389:82;-1:-1:-1;;;;;60422:17:0;;60415:41;60259:212;-1:-1:-1;;;60487:26:0;;;;58958:1607;-1:-1:-1;;;;58958:1607:0:o;45856:138::-;45916:7;45978:5;45961:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;45961:23:0;;;;;;;;;45951:34;;45961:23;45951:34;;;;;45856:138;-1:-1:-1;;45856:138:0:o;23066:157::-;-1:-1:-1;;;;;;23175:40:0;;-1:-1:-1;;;23175:40:0;23066:157;;;:::o;39956:589::-;40100:45;40127:4;40133:2;40137:7;40100:26;:45::i;:::-;-1:-1:-1;;;;;40162:18:0;;40158:187;;40197:40;40229:7;40197:31;:40::i;:::-;40158:187;;;40267:2;-1:-1:-1;;;;;40259:10:0;:4;-1:-1:-1;;;;;40259:10:0;;40255:90;;40286:47;40319:4;40325:7;40286:32;:47::i;:::-;-1:-1:-1;;;;;40359:16:0;;40355:183;;40392:45;40429:7;40392:36;:45::i;:::-;40355:183;;;40465:4;-1:-1:-1;;;;;40459:10:0;:2;-1:-1:-1;;;;;40459:10:0;;40455:83;;40486:40;40514:2;40518:7;40486:27;:40::i;31678:321::-;31808:18;31814:2;31818:7;31808:5;:18::i;:::-;31859:54;31890:1;31894:2;31898:7;31907:5;31859:22;:54::i;:::-;31837:154;;;;-1:-1:-1;;;31837:154:0;;;;;;;:::i;35078:803::-;35233:4;35254:15;:2;-1:-1:-1;;;;;35254:13:0;;:15::i;:::-;35250:624;;;35306:2;-1:-1:-1;;;;;35290:36:0;;35327:12;:10;:12::i;:::-;35341:4;35347:7;35356:5;35290:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35290:72:0;;;;;;;;-1:-1:-1;;35290:72:0;;;;;;;;;;;;:::i;:::-;;;35286:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35536:13:0;;35532:272;;35579:60;;-1:-1:-1;;;35579:60:0;;;;;;;:::i;35532:272::-;35754:6;35748:13;35739:6;35735:2;35731:15;35724:38;35286:533;-1:-1:-1;;;;;;35413:55:0;-1:-1:-1;;;35413:55:0;;-1:-1:-1;35406:62:0;;35250:624;-1:-1:-1;35858:4:0;35078:803;;;;;;:::o;41268:164::-;41372:10;:17;;41345:24;;;;:15;:24;;;;;:44;;;41400:24;;;;;;;;;;;;41268:164::o;42059:988::-;42325:22;42375:1;42350:22;42367:4;42350:16;:22::i;:::-;:26;;;;:::i;:::-;42387:18;42408:26;;;:17;:26;;;;;;42325:51;;-1:-1:-1;42541:28:0;;;42537:328;;-1:-1:-1;;;;;42608:18:0;;42586:19;42608:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42659:30;;;;;;:44;;;42776:30;;:17;:30;;;;;:43;;;42537:328;-1:-1:-1;42961:26:0;;;;:17;:26;;;;;;;;42954:33;;;-1:-1:-1;;;;;43005:18:0;;;;;:12;:18;;;;;:34;;;;;;;42998:41;42059:988::o;43342:1079::-;43620:10;:17;43595:22;;43620:21;;43640:1;;43620:21;:::i;:::-;43652:18;43673:24;;;:15;:24;;;;;;44046:10;:26;;43595:46;;-1:-1:-1;43673:24:0;;43595:46;;44046:26;;;;-1:-1:-1;;;44046:26:0;;;;;;;;;;;;;;;;;44024:48;;44110:11;44085:10;44096;44085:22;;;;;;-1:-1:-1;;;44085:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44190:28;;;:15;:28;;;;;;;:41;;;44362:24;;;;;44355:31;44397:10;:16;;;;;-1:-1:-1;;;44397:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43342:1079;;;;:::o;40846:221::-;40931:14;40948:20;40965:2;40948:16;:20::i;:::-;-1:-1:-1;;;;;40979:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41024:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40846:221:0:o;32335:382::-;-1:-1:-1;;;;;32415:16:0;;32407:61;;;;-1:-1:-1;;;32407:61:0;;;;;;;:::i;:::-;32488:16;32496:7;32488;:16::i;:::-;32487:17;32479:58;;;;-1:-1:-1;;;32479:58:0;;;;;;;:::i;:::-;32550:45;32579:1;32583:2;32587:7;32550:20;:45::i;:::-;-1:-1:-1;;;;;32608:13:0;;;;;;:9;:13;;;;;:18;;32625:1;;32608:13;:18;;32625:1;;32608:18;:::i;:::-;;;;-1:-1:-1;;32637:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32637:21:0;-1:-1:-1;;;;;32637:21:0;;;;;;;;32676:33;;32637:16;;;32676:33;;32637:16;;32676:33;32335:382;;:::o;15252:387::-;15575:20;15623:8;;;15252:387::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:1;;3449:120;-1:-1:-1;3449:120:1:o;3574:259::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3698:63;3754:6;3747:4;3742:3;3738:14;3731:4;3724:5;3720:16;3698:63;:::i;:::-;3815:2;3794:15;-1:-1:-1;;3790:29:1;3781:39;;;;3822:4;3777:50;;3625:208;-1:-1:-1;;3625:208:1:o;3838:187::-;;3920:5;3914:12;3935:52;3980:6;3975:3;3968:4;3961:5;3957:16;3935:52;:::i;:::-;4003:16;;;;;3890:135;-1:-1:-1;;3890:135:1:o;4030:127::-;-1:-1:-1;;;4097:27:1;;4149:1;4140:11;;4087:70::o;4162:276::-;;4331:6;4325:13;4347:53;4393:6;4388:3;4381:4;4373:6;4369:17;4347:53;:::i;:::-;4416:16;;;;;4301:137;-1:-1:-1;;4301:137:1:o;4443:470::-;;4660:6;4654:13;4676:53;4722:6;4717:3;4710:4;4702:6;4698:17;4676:53;:::i;:::-;4792:13;;4751:16;;;;4814:57;4792:13;4751:16;4848:4;4836:17;;4814:57;:::i;:::-;4887:20;;4630:283;-1:-1:-1;;;;4630:283:1:o;4918:858::-;;5231:6;5225:13;5247:53;5293:6;5288:3;5281:4;5273:6;5269:17;5247:53;:::i;:::-;5363:13;;5322:16;;;;5385:57;5363:13;5322:16;5419:4;5407:17;;5385:57;:::i;:::-;5509:13;;5464:20;;;5531:57;5509:13;5464:20;5565:4;5553:17;;5531:57;:::i;:::-;5655:13;;5610:20;;;5677:57;5655:13;5610:20;5711:4;5699:17;;5677:57;:::i;:::-;5750:20;;5201:575;-1:-1:-1;;;;;;5201:575:1:o;5781:1767::-;;6334:6;6328:13;6350:53;6396:6;6391:3;6384:4;6376:6;6372:17;6350:53;:::i;:::-;6434:6;6428:13;6450:68;6509:8;6500:6;6495:3;6491:16;6484:4;6476:6;6472:17;6450:68;:::i;:::-;6596:13;;6544:16;;;6540:31;;6618:57;6596:13;6540:31;6652:4;6640:17;;6618:57;:::i;:::-;6706:6;6700:13;6722:72;6785:8;6774;6767:5;6763:20;6756:4;6748:6;6744:17;6722:72;:::i;:::-;6876:13;;6820:20;;;;6816:35;;6898:57;6876:13;6816:35;6932:4;6920:17;;6898:57;:::i;:::-;6986:6;6980:13;7002:72;7065:8;7054;7047:5;7043:20;7036:4;7028:6;7024:17;7002:72;:::i;:::-;7156:13;;7100:20;;;;7096:35;;7178:57;7156:13;7096:35;7212:4;7200:17;;7178:57;:::i;:::-;7266:6;7260:13;7282:72;7345:8;7334;7327:5;7323:20;7316:4;7308:6;7304:17;7282:72;:::i;:::-;7433:13;;7377:20;;;;7373:35;;7455:54;7433:13;7373:35;7489:4;7477:17;;7455:54;:::i;:::-;7525:17;;6304:1244;-1:-1:-1;;;;;;;;;;;6304:1244:1:o;7553:1421::-;-1:-1:-1;;;8053:57:1;;8133:13;;7553:1421;;8155:62;8133:13;8205:2;8196:12;;8189:4;8177:17;;8155:62;:::i;:::-;8281:66;8276:2;8236:16;;;8268:11;;;8261:87;8377:34;8372:2;8364:11;;8357:55;8441:34;8436:2;8428:11;;8421:55;8506:34;8500:3;8492:12;;8485:56;8571:34;8565:3;8557:12;;8550:56;8636:34;8630:3;8622:12;;8615:56;8701:34;8695:3;8687:12;;8680:56;8766:66;8760:3;8752:12;;8745:88;-1:-1:-1;;;8857:3:1;8849:12;;8842:36;8894:74;8926:41;8962:3;8954:12;;8946:6;8926:41;:::i;:::-;8894:74;:::i;:::-;8887:81;8043:931;-1:-1:-1;;;;;8043:931:1:o;8979:434::-;;-1:-1:-1;;;9236:3:1;9229:30;9288:6;9282:13;9304:62;9359:6;9354:2;9349:3;9345:12;9338:4;9330:6;9326:17;9304:62;:::i;:::-;9386:16;;;;9404:2;9382:25;;9219:194;-1:-1:-1;;9219:194:1:o;9418:448::-;;9680:31;9675:3;9668:44;9741:6;9735:13;9757:62;9812:6;9807:2;9802:3;9798:12;9791:4;9783:6;9779:17;9757:62;:::i;:::-;9839:16;;;;9857:2;9835:25;;9658:208;-1:-1:-1;;9658:208:1:o;9871:203::-;-1:-1:-1;;;;;10035:32:1;;;;10017:51;;10005:2;9990:18;;9972:102::o;10079:490::-;-1:-1:-1;;;;;10348:15:1;;;10330:34;;10400:15;;10395:2;10380:18;;10373:43;10447:2;10432:18;;10425:34;;;10495:3;10490:2;10475:18;;10468:31;;;10079:490;;10516:47;;10543:19;;10535:6;10516:47;:::i;:::-;10508:55;10282:287;-1:-1:-1;;;;;;10282:287:1:o;10574:187::-;10739:14;;10732:22;10714:41;;10702:2;10687:18;;10669:92::o;10766:221::-;;10915:2;10904:9;10897:21;10935:46;10977:2;10966:9;10962:18;10954:6;10935:46;:::i;10992:407::-;11194:2;11176:21;;;11233:2;11213:18;;;11206:30;11272:34;11267:2;11252:18;;11245:62;-1:-1:-1;;;11338:2:1;11323:18;;11316:41;11389:3;11374:19;;11166:233::o;11404:414::-;11606:2;11588:21;;;11645:2;11625:18;;;11618:30;11684:34;11679:2;11664:18;;11657:62;-1:-1:-1;;;11750:2:1;11735:18;;11728:48;11808:3;11793:19;;11578:240::o;11823:402::-;12025:2;12007:21;;;12064:2;12044:18;;;12037:30;12103:34;12098:2;12083:18;;12076:62;-1:-1:-1;;;12169:2:1;12154:18;;12147:36;12215:3;12200:19;;11997:228::o;12230:352::-;12432:2;12414:21;;;12471:2;12451:18;;;12444:30;12510;12505:2;12490:18;;12483:58;12573:2;12558:18;;12404:178::o;12587:400::-;12789:2;12771:21;;;12828:2;12808:18;;;12801:30;12867:34;12862:2;12847:18;;12840:62;-1:-1:-1;;;12933:2:1;12918:18;;12911:34;12977:3;12962:19;;12761:226::o;12992:349::-;13194:2;13176:21;;;13233:2;13213:18;;;13206:30;13272:27;13267:2;13252:18;;13245:55;13332:2;13317:18;;13166:175::o;13346:399::-;13548:2;13530:21;;;13587:2;13567:18;;;13560:30;13626:34;13621:2;13606:18;;13599:62;-1:-1:-1;;;13692:2:1;13677:18;;13670:33;13735:3;13720:19;;13520:225::o;13750:408::-;13952:2;13934:21;;;13991:2;13971:18;;;13964:30;14030:34;14025:2;14010:18;;14003:62;-1:-1:-1;;;14096:2:1;14081:18;;14074:42;14148:3;14133:19;;13924:234::o;14163:420::-;14365:2;14347:21;;;14404:2;14384:18;;;14377:30;14443:34;14438:2;14423:18;;14416:62;14514:26;14509:2;14494:18;;14487:54;14573:3;14558:19;;14337:246::o;14588:406::-;14790:2;14772:21;;;14829:2;14809:18;;;14802:30;14868:34;14863:2;14848:18;;14841:62;-1:-1:-1;;;14934:2:1;14919:18;;14912:40;14984:3;14969:19;;14762:232::o;14999:405::-;15201:2;15183:21;;;15240:2;15220:18;;;15213:30;15279:34;15274:2;15259:18;;15252:62;-1:-1:-1;;;15345:2:1;15330:18;;15323:39;15394:3;15379:19;;15173:231::o;15409:356::-;15611:2;15593:21;;;15630:18;;;15623:30;15689:34;15684:2;15669:18;;15662:62;15756:2;15741:18;;15583:182::o;15770:408::-;15972:2;15954:21;;;16011:2;15991:18;;;15984:30;16050:34;16045:2;16030:18;;16023:62;-1:-1:-1;;;16116:2:1;16101:18;;16094:42;16168:3;16153:19;;15944:234::o;16183:356::-;16385:2;16367:21;;;16404:18;;;16397:30;16463:34;16458:2;16443:18;;16436:62;16530:2;16515:18;;16357:182::o;16544:405::-;16746:2;16728:21;;;16785:2;16765:18;;;16758:30;16824:34;16819:2;16804:18;;16797:62;-1:-1:-1;;;16890:2:1;16875:18;;16868:39;16939:3;16924:19;;16718:231::o;16954:397::-;17156:2;17138:21;;;17195:2;17175:18;;;17168:30;17234:34;17229:2;17214:18;;17207:62;-1:-1:-1;;;17300:2:1;17285:18;;17278:31;17341:3;17326:19;;17128:223::o;17356:413::-;17558:2;17540:21;;;17597:2;17577:18;;;17570:30;17636:34;17631:2;17616:18;;17609:62;-1:-1:-1;;;17702:2:1;17687:18;;17680:47;17759:3;17744:19;;17530:239::o;17774:408::-;17976:2;17958:21;;;18015:2;17995:18;;;17988:30;18054:34;18049:2;18034:18;;18027:62;-1:-1:-1;;;18120:2:1;18105:18;;18098:42;18172:3;18157:19;;17948:234::o;18187:355::-;18389:2;18371:21;;;18428:2;18408:18;;;18401:30;18467:33;18462:2;18447:18;;18440:61;18533:2;18518:18;;18361:181::o;18547:342::-;18749:2;18731:21;;;18788:2;18768:18;;;18761:30;-1:-1:-1;;;18822:2:1;18807:18;;18800:48;18880:2;18865:18;;18721:168::o;18894:1487::-;;19069:2;19058:9;19051:21;19107:6;19101:13;19150:4;19145:2;19134:9;19130:18;19123:32;19178:53;19226:3;19215:9;19211:19;19197:12;19178:53;:::i;:::-;19164:67;;19280:2;19272:6;19268:15;19262:22;19307:2;19303:7;19374:2;19362:9;19354:6;19350:22;19346:31;19341:2;19330:9;19326:18;19319:59;19401:42;19436:6;19420:14;19401:42;:::i;:::-;19387:56;;19492:2;19484:6;19480:15;19474:22;19452:44;;19560:2;19548:9;19540:6;19536:22;19532:31;19527:2;19516:9;19512:18;19505:59;19587:42;19622:6;19606:14;19587:42;:::i;:::-;19573:56;;19678:2;19670:6;19666:15;19660:22;19638:44;;19747:2;19735:9;19727:6;19723:22;19719:31;19713:3;19702:9;19698:19;19691:60;19774:42;19809:6;19793:14;19774:42;:::i;:::-;19760:56;;19865:3;19857:6;19853:16;19847:23;19825:45;;19935:2;19923:9;19915:6;19911:22;19907:31;19901:3;19890:9;19886:19;19879:60;19962:42;19997:6;19981:14;19962:42;:::i;:::-;19948:56;;20053:3;20045:6;20041:16;20035:23;20013:45;;20123:2;20111:9;20103:6;20099:22;20095:31;20089:3;20078:9;20074:19;20067:60;20150:42;20185:6;20169:14;20150:42;:::i;:::-;20136:56;;20241:3;20233:6;20229:16;20223:23;20201:45;;20312:2;20300:9;20292:6;20288:22;20284:31;20277:4;20266:9;20262:20;20255:61;;20333:42;20368:6;20352:14;20333:42;:::i;20386:177::-;20532:25;;;20520:2;20505:18;;20487:76::o;20568:128::-;;20639:1;20635:6;20632:1;20629:13;20626:2;;;20645:18;;:::i;:::-;-1:-1:-1;20681:9:1;;20616:80::o;20701:120::-;;20767:1;20757:2;;20772:18;;:::i;:::-;-1:-1:-1;20806:9:1;;20747:74::o;20826:168::-;;20932:1;20928;20924:6;20920:14;20917:1;20914:21;20909:1;20902:9;20895:17;20891:45;20888:2;;;20939:18;;:::i;:::-;-1:-1:-1;20979:9:1;;20878:116::o;20999:125::-;;21067:1;21064;21061:8;21058:2;;;21072:18;;:::i;:::-;-1:-1:-1;21109:9:1;;21048:76::o;21129:258::-;21201:1;21211:113;21225:6;21222:1;21219:13;21211:113;;;21301:11;;;21295:18;21282:11;;;21275:39;21247:2;21240:10;21211:113;;;21342:6;21339:1;21336:13;21333:2;;;-1:-1:-1;;21377:1:1;21359:16;;21352:27;21182:205::o;21392:380::-;21477:1;21467:12;;21524:1;21514:12;;;21535:2;;21589:4;21581:6;21577:17;21567:27;;21535:2;21642;21634:6;21631:14;21611:18;21608:38;21605:2;;;21688:10;21683:3;21679:20;21676:1;21669:31;21723:4;21720:1;21713:15;21751:4;21748:1;21741:15;21605:2;;21447:325;;;:::o;21777:135::-;;-1:-1:-1;;21837:17:1;;21834:2;;;21857:18;;:::i;:::-;-1:-1:-1;21904:1:1;21893:13;;21824:88::o;21917:112::-;;21975:1;21965:2;;21980:18;;:::i;:::-;-1:-1:-1;22014:9:1;;21955:74::o;22034:127::-;22095:10;22090:3;22086:20;22083:1;22076:31;22126:4;22123:1;22116:15;22150:4;22147:1;22140:15;22166:127;22227:10;22222:3;22218:20;22215:1;22208:31;22258:4;22255:1;22248:15;22282:4;22279:1;22272:15;22298:127;22359:10;22354:3;22350:20;22347:1;22340:31;22390:4;22387:1;22380:15;22414:4;22411:1;22404:15;22430:133;-1:-1:-1;;;;;;22506:32:1;;22496:43;;22486:2;;22553:1;22550;22543:12

Swarm Source

ipfs://84569ce20ba3341fb3d811237740bcb0c475677392b45afb4af78d73af013291
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.