ETH Price: $3,269.66 (-4.13%)
Gas: 9 Gwei

Token

Flowers (FLWRS)
 

Overview

Max Total Supply

4,096 FLWRS

Holders

1,160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FLWRS
0x6a024f521f83906671e1a23a8B6c560be7e980F4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

4096 programatically generated on-chain flowers, for you to own or to share. Each flower is 100% generated on-chain, including it's metadata. *No ipfs/arweave, no external rendering script. Just SVGs created by the contract.* Flowers is On chain collective's genesis mint.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Flowers

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Flowers.sol
//SPDX-License-Identifier: Unlicense
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 Flowers is ERC721Enumerable, ReentrancyGuard, Ownable {

    uint256 public maxSupply = 4096;
    uint256 public price = 0.025 ether;
    uint256 public maxMint = 24;
    uint256 public numTokensMinted;
    uint256 public maxPerAddress = 24;

    bool public allSalesPaused = true;
    bool public privateSaleIsActive = true;

    mapping(address => uint256) private _mintPerAddress;
    mapping(address => bool)    private _whiteList;
    mapping(address => uint256) private _whiteListPurchases;
    mapping(address => uint256) private _whiteListLimit;

    string[7] private mutationNames = ['None','Sketched','Skewed','Glitched','Long Boi','Heart','Infected'];
    string[3] private otherBG = ['<filter x="0" y="0" width="100%" height="100%" id="filterBG"><feTurbulence baseFrequency="0.08 0.08" numOctaves="2"></feTurbulence><feColorMatrix values="0 0 0 9 -6 0 0 0 9 -6 0 0 0 9 -6 0 0 0 0 0.7" /></filter>', '<filter x="0" y="0" width="100%" height="100%" id="filterBG"><feTurbulence type="fractalNoise" baseFrequency="0.015"/><feComponentTransfer><feFuncA type="discrete" tableValues="0 1 0"/></feComponentTransfer><feColorMatrix values="0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1"/></filter>', '<filter x="0" y="0" width="100%" height="100%" id="filterBG"><feTurbulence type="turbulence" baseFrequency="0.0072 0.0068" result="turbulence"></feTurbulence></filter>'];
    string[4] private specialBG = ['<filter x="0" y="0" width="100%" height="100%" id="filterBG"><feTurbulence baseFrequency="0.007 0.006" numOctaves="2"></feTurbulence> <feColorMatrix values="0.500 0.938 0.819 0.151 0.849 0.377 0.158 0.241 0.969 0.758 0.629 0.374 0.669 0.507 0.733 0.468 0.496 0.095 0.688 0.616"></feColorMatrix> <feComponentTransfer><feFuncR type="table" tableValues="0.185 0.417 0.481 0.038 0.117 0.768 0.778 0.227 0.539 0.674 0.197 0.973"></feFuncR><feFuncG type="table" tableValues="0.348 0.414 0.663 0.634 0.013 0.741 0.629 0.205 0.068 0.214 0.779 0.964"></feFuncG><feFuncB type="table" tableValues="0.199 0.695 0.001 .799 0.692 0.160 .734 0.691 0.914"></feFuncB> </feComponentTransfer></filter>', '<filter x="0" y="0" width="100%" height="100%" id="filterBG"><feTurbulence baseFrequency="0.008 0.004" numOctaves="2"></feTurbulence> <feColorMatrix values="0.891 0.693 0.011 0.457 0.800 0.605 0.790 0.737 0.417 0.851 0.278 0.432 0.818 0.307 0.244 0.821 0.984 0.177 0.165 0.742"></feColorMatrix> <feComponentTransfer><feFuncR type="table" tableValues="0.674 0.800 0.314 0.317 0.845 0.725 0.075 0.718 0.164 0.775 0.078 0.037"></feFuncR><feFuncG type="table" tableValues="0.527 0.459 0.881 0.058 0.391 0.390 0.927 0.270 0.224 0.547 0.286 0.057"></feFuncG><feFuncB type="table" tableValues="0.410 0.422 0.129 .664 0.606 0.180 .422 0.084 0.254"></feFuncB> </feComponentTransfer></filter>', '<filter x="0" y="0" width="100%" height="100%" id="filterBG"><feTurbulence baseFrequency="0.008 0.007" numOctaves="2"></feTurbulence> <feColorMatrix values="0.221 0.952 0.028 0.563 0.120 0.180 0.749 0.580 0.211 0.788 0.019 0.341 0.948 0.998 0.809 0.685 0.033 0.538 0.659 0.382"></feColorMatrix> <feComponentTransfer><feFuncR type="table" tableValues="0.365 0.893 0.803 0.017 0.472 0.083 0.473 0.487 0.233 0.899 0.776 0.277"></feFuncR><feFuncG type="table" tableValues="0.851 0.584 0.043 0.912 0.632 0.695 0.651 0.563 0.776 0.394 0.040 0.102"></feFuncG><feFuncB type="table" tableValues="0.045 0.045 0.709 .937 0.594 0.058 .324 0.683 0.446"></feFuncB> </feComponentTransfer></filter>', '<filter x="0" y="0" width="100%" height="100%" id="filterBG"><feTurbulence baseFrequency="0.008 0.001" numOctaves="2"></feTurbulence> <feColorMatrix values="0.168 0.293 0.853 0.009 0.321 0.929 0.744 0.029 0.581 0.486 0.517 0.799 0.821 0.744 0.072 0.513 0.868 0.488 0.273 0.689"></feColorMatrix> <feComponentTransfer><feFuncR type="table" tableValues="0.058 0.419 0.155 0.252 0.550 0.650 0.926 0.937 0.480 0.326 0.298 0.371"></feFuncR><feFuncG type="table" tableValues="0.632 0.767 0.437 0.239 0.059 0.231 0.901 0.116 0.049 0.079 0.227 0.617"></feFuncG><feFuncB type="table" tableValues="0.201 0.589 0.299 .710 0.192 0.384 .052 0.100 0.898"></feFuncB> </feComponentTransfer></filter>'];
    string[9] private bgNames = ['Normal', 'Radial', 'Night Sky', 'Dalmatian', 'Trippy', 'Light Trip', 'Dark Trip', 'Blingy','Rainbow'];
    string[17] private petalNames = ["Lotus","Apricot","Daisy","Plumeria","Gardenias","Aster","Chamomile","Bellflower","Dahlia","Magnolia","Jasmine","Hibiscus","Tulip","Bird of Paradise","Aquilegia","Ethereum","Digital"];
    string[40] private allColors = ["#EAFB00","#F0CF61","#FFFFFF","#0E38B1","#EF3E4A","#FEDAC2","#B0D8DC","#B6CAC0","#C02A1B","#1FC8A9","#C886A2","#F9BDBD","#FEDCCC","#EBB9D4","#F2CB6C","#FF8FA4","#343B3F","#FF89B5","#D1BDFF","#9A008A","#7B76A6","#FB5408","#0B64FE","#FAAD58","#FF8B8B","#F2F2F2","#FFD3C2","#FDB90B","#FCA59B","#CDCDD0","#EEE9DC","#CDB670","#B3E0E0","#5C457B","#FDFF50","#FFCC4C","#19AAD1","#7A30CF","#189BA3","#EF303B"];
    string[40] private allColorNames = ["Laser Lemon","Arylide Yellow","White","Egyptian Blue","Carmine Pink","Peach Puff","Pale Aqua","Powder Ash","Thunderbird","Topaz","Lipstick Pink","Tea Rose","Peach Schnapps","Pink Flare","Sand","Pink Sherbet","Tuna","Rosa","Melrose","Dark Magenta","Greyish Purple","International Orange","Bright Blue","Pale Orange","Geraldine","Porcelain","Light Aprico","Golden","Sweet Pink","Grey Goose","Eggshell","Tan","Powder Blue","Purple Haze","Canary Yellow","Bright Sun","Bright Cerulean","Blue Violet","Eastern Blue","Deep Carmine Pink"];
    string[17] private petalStarts = ["<path","<path","<path","<path","<path","<path","<path","<path","<path","<ellipse","<path","<path","<path","<path","<path","<path","<path"];
    string[17] private petalEnds = [' d="M249.5 239.145C256.528 233.275 261 224.446 261 214.572C261 204.699 256.528 195.87 249.5 190C242.472 195.87 238 204.699 238 214.572C238 224.446 242.472 233.275 249.5 239.145Z"', ' d="M280 208.165C280 192.024 254.983 188.894 250 172.528C245.017 188.894 220 192.024 220 208.165C220 227.404 230.909 243 250 243C269.091 243 280 227.404 280 208.165Z"', ' d="M233.947 227.947C226.185 220.185 228.406 206.96 236.932 200.045C243.993 194.318 250.366 187.12 250.483 179.738C250.652 169.036 263.675 185.159 272.962 198.051C278.483 205.715 277.36 216.168 270.682 222.847L249.764 243.764L233.947 227.947Z"', ' d="M276 206C266 242 250 242 250 242C250 242 234 242 224 206C217 180 250 166 250 166C250 166 283 180 276 206Z"', ' d="M250 184.5L275 212L274.04 221.028C273.07 230.142 267.879 238.272 260.02 242.988C253.853 246.688 246.147 246.688 239.98 242.988C232.121 238.272 226.93 230.142 225.96 221.028L225 212L250 184.5Z"', ' d="M236.62 178.986C236.282 171.364 242.37 165 250 165V165C257.63 165 263.718 171.364 263.38 178.986L260.923 234.443C260.687 239.788 256.284 244 250.933 244H249.067C243.716 244 239.313 239.788 239.077 234.443L236.62 178.986Z"', ' d="M230.024 171.998C230.386 160.997 241.042 175 250.012 175C258.983 175 270 160.997 270 171.998C270 183 262.546 238.751 262.546 238.751C262.395 241.669 256.828 244 250.012 244C243.196 244 237.629 241.669 237.478 238.751C237.478 238.751 229.663 183 230.024 171.998Z"', ' d="M271.934 211.182L250 248L228.066 211.182C224.326 204.904 224.308 197.085 228.019 190.79L244.831 162.269C247.152 158.331 252.848 158.331 255.169 162.269L271.981 190.79C275.692 197.085 275.674 204.904 271.934 211.182Z"', ' d="M218.621 207.242C214.047 198.095 218.542 182.01 228.195 173.632C240.814 162.679 259.185 162.679 271.805 173.632C281.457 182.01 285.952 198.095 281.379 207.242L256 240H244L218.621 207.242Z"', ' cx="250" cy="217" rx="25" ry="27"', ' d="M266 218C266 235.673 258.837 240 250 240C241.163 240 234 235.673 234 218C234 200.327 244.5 186 250 186C255.5 186 266 200.327 266 218Z"', ' d="M225.334 172.528C230.007 166.558 241.793 179.939 245.982 186.259C249.313 191.282 250.687 191.282 254.018 186.259C258.207 179.939 269.993 166.558 274.666 172.528C279.648 178.895 280 198.024 280 208.165C280 227.404 272.091 243 250 243C227.909 243 220 227.404 220 208.165C220 198.024 220.352 178.895 225.334 172.528Z"', ' d="M231.839 187.485C229.349 175.917 238.166 165 250 165V165C261.834 165 270.651 175.917 268.161 187.485L257.262 238.134C256.526 241.556 253.5 244 250 244V244C246.5 244 243.474 241.556 242.738 238.134L231.839 187.485Z"', ' d="M249.034 244C266.462 244 271.8 222.029 262.445 213.353C253.09 204.677 229.575 182 229.575 182C225.644 187.601 223 204.43 223 213.353C223 230.279 231.606 244 249.034 244Z"', ' d="M244.62 172.506C244.916 171.126 247.095 170 249.718 170V170C252.342 170 254.522 171.126 254.827 172.504C255.608 176.045 258.097 183.109 266.015 192.22C273.86 201.247 276.961 211.518 270.545 220.856L257.391 240H242.776L229.459 220.619C223.135 211.414 226.047 201.287 233.63 192.353C241.416 183.179 243.856 176.063 244.62 172.506Z"', ' d="M275 201L250 248L225 201L250 153.5L275 201Z"', ' d="M270.505 223.547L264.848 229.204L264.848 229.205L264.848 229.205L249.999 244.054L235.149 229.205L235.149 229.205C226.948 221.004 226.948 207.707 235.149 199.506L235.149 199.506L240.806 193.85L240.806 193.849L255.655 179L270.368 193.714C270.414 193.759 270.459 193.804 270.505 193.849C278.706 202.05 278.706 215.346 270.505 223.547Z"'];
    uint256[17] private minPetals = [ 8, 4, 5, 4, 5, 8, 5, 6, 6, 4, 8, 4, 8, 4,10, 6, 5];
    uint256[17] private maxPetals = [15, 8, 8,10,10,12,10,12,12, 8,20, 7,16,10,18,12,10];
    string[3] private petalAnimation = ['<animateTransform attributeName="transform" begin="0s" dur="8s" type="rotate" from="', ' 250 250" to="', ' 250 250" repeatCount="indefinite"/>'];

    struct OCCFlower {
        uint256 petalStyle;
        uint256 numPetals;
        uint256 petalColor;
        uint256 coreColor;
        uint256 coreSize;
        uint256 backgroundColor;
        uint256 overlayColor;
        uint256 mutationType;
        uint256 backgroundType;
        bool isAnimated;
    }

    function randomFlower(uint256 tokenId) internal view returns (OCCFlower memory) {
        OCCFlower memory flower;

        flower.petalStyle = getPetalStyle(tokenId);
        flower.numPetals = pluckNum(tokenId,string(abi.encodePacked('NOP', toString(flower.petalStyle))), minPetals[flower.petalStyle], maxPetals[flower.petalStyle]);
        flower.petalColor = getAColorID(tokenId, "PEC");
        flower.coreColor = getAColorID(tokenId, "COC");
        flower.coreSize = getCoreSize(tokenId);
        flower.backgroundColor = getAColorID(tokenId, "BGC");
        flower.overlayColor = getAColorID(tokenId, "OVC");
        flower.mutationType = getMutation(tokenId);
        flower.backgroundType = getBackgroundType(tokenId);
        flower.isAnimated = isFlowerAnimated(tokenId);

        return flower;
    }
    
    function getTraits(OCCFlower memory flower) internal view returns (string memory) {
        string[20] memory parts;
        
        parts[0] = ', "attributes": [{"trait_type": "Petal Style","value": "';
        parts[1] = petalNames[flower.petalStyle];
        parts[2] = '"}, {"trait_type": "Petal Color","value": "';
        parts[3] = allColorNames[flower.petalColor];
        parts[4] = '"}, {"trait_type": "Core Color","value": "';
        parts[5] = allColorNames[flower.coreColor];
        parts[4] = '"}, {"trait_type": "Core Size","value": ';
        parts[5] = toString(flower.coreSize);
        parts[6] = '}, {"trait_type": "No. of Petals","value": ';
        parts[7] = toString(flower.numPetals);
        if (flower.backgroundType == 0 || flower.backgroundType == 1) {
            parts[8] = '}, {"trait_type": "BG Color","value": "';
            parts[9] = allColorNames[flower.backgroundColor];
            parts[10] = '"';
        }
        parts[11] = '}, {"trait_type": "BG Overlay","value": "';
        parts[12] = allColorNames[flower.overlayColor];
        parts[13] = '"}, {"trait_type": "Mutation","value": "';
        parts[14] = mutationNames[flower.mutationType];
        parts[15] = '"}, {"trait_type": "Spin","value": "';
        parts[16] = (flower.isAnimated? 'True' : 'False' );
        parts[17] = '"}, {"trait_type": "BG Type","value": "';
        parts[18] = bgNames[flower.backgroundType];
        parts[19] = '"}], ';
        
        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]));
                      output = string(abi.encodePacked(output, parts[16], parts[17], parts[18], parts[19]));
        return output;
    }

    /* UTILITY FUNCTIONS FOR PICKING RANDOM TRAITS */
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function pluck(uint256 tokenId, string memory keyPrefix, string[39] memory sourceArray) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId),_msgSender())));
        string memory output = sourceArray[rand % sourceArray.length];
        return output;
    }
    
    function pluckNum(uint256 tokenId, string memory keyPrefix, uint256 minNum, uint256 maxNum) internal view returns (uint256) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId), minNum, maxNum,_msgSender())));
        uint256 num = rand % (maxNum - minNum + 1) + minNum;
        return num;
    }
    
    function getAColorID(uint256 tokenId, string memory seed) internal view returns (uint256) {
        return pluckNum(tokenId, seed, 0, 38);
    }
    
    function getCoreSize(uint256 tokenId) internal view returns (uint256) {
        return pluckNum(tokenId, "CORE SIZE", 16, 30);
    }

    function getPetalStyle(uint256 tokenId) internal pure returns (uint256) {
        uint256 rand = random(string(abi.encodePacked("PETAL STYLE", toString(tokenId))));

        uint256 gt = rand % 125;
        uint256 ps = 0;

        if (gt >= 10 && gt < 20) { ps = 1; }
        if (gt >= 20 && gt < 30) { ps = 2; }
        if (gt >= 30 && gt < 40) { ps = 3; }
        if (gt >= 40 && gt < 50) { ps = 4; }
        if (gt >= 50 && gt < 60) { ps = 5; }
        if (gt >= 60 && gt < 70) { ps = 6; }
        if (gt >= 70 && gt < 80) { ps = 7; }
        if (gt >= 80 && gt < 89) { ps = 8; }
        if (gt >= 89 && gt < 97) { ps = 9; }
        if (gt >= 97 && gt < 104) { ps = 10; }
        if (gt >= 104 && gt < 110) { ps = 11; }
        if (gt >= 110 && gt < 115) { ps = 12; }
        if (gt >= 115 && gt < 119) { ps = 13; }
        if (gt >= 119 && gt < 122) { ps = 14; }
        if (gt >= 122 && gt < 124) { ps = 15; }
        if (gt >= 124) { ps = 16; }

        return ps;
    }

    function isFlowerAnimated(uint256 tokenId) internal pure returns (bool) {
        uint256 rand = random(string(abi.encodePacked("FLOWER ANIMATED", toString(tokenId))));
        uint256 gt = rand % 201;

        return (gt > 180);
    }
    
    function getBackgroundType(uint256 tokenId) internal pure returns (uint256) {
        uint256 rand = random(string(abi.encodePacked("BACKGROUND TYPE", toString(tokenId))));
        uint256 gt = rand % 1001;
        uint256 backgroundType = 0;

        if (gt > 900 && gt <= 954) { backgroundType = 1; }
        if (gt > 954 && gt <= 975) { backgroundType = 2; }
        if (gt > 974 && gt <= 990) { backgroundType = 3; }
        if (gt > 990 && gt <= 997) { backgroundType = 4; }

        if (gt == 997) { backgroundType = 5; }
        if (gt == 998) { backgroundType = 6; }
        if (gt == 999) { backgroundType = 7; }
        if (gt == 1000) { backgroundType = 8; }

        return backgroundType;
    }
    
    function getMutation(uint256 tokenId) internal pure returns (uint256) {
        uint256 rand = random(string(abi.encodePacked("MUTATION", toString(tokenId))));
        uint256 gt = rand % 201;
        uint256 mutation = 0;

        if (gt > 100 && gt <= 134) { mutation = 1; }
        if (gt > 134 && gt <= 159) { mutation = 2; }
        if (gt > 159 && gt <= 174) { mutation = 3; }
        if (gt > 174 && gt <= 191) { mutation = 4; }
        if (gt > 191 && gt <= 197) { mutation = 5; }
        if (gt > 197) { mutation = 6; }

        return mutation;
    }
    
    /* SVG BUILDING FUNCTIONS */
    function getRadialBackground(uint256 tokenId) internal view returns (string memory) {
        string memory output = string(abi.encodePacked('<defs><radialGradient id="radialBG" cx="0.8" cy="0.8" r="0.6" fx="0.42" fy="0.42" spreadMethod="pad"><stop offset="0%" stop-color="',allColors[getAColorID(tokenId, "R1")],'"/><stop offset="40%" stop-color="',allColors[getAColorID(tokenId, "R2")],'"/><stop offset="70%" stop-color="',allColors[getAColorID(tokenId, "R3")],'"/><stop offset="90%" stop-color="',allColors[getAColorID(tokenId, "R4")],'"/><stop offset="94%" stop-color="'));
        output = string(abi.encodePacked(output, allColors[getAColorID(tokenId, "R5")],'"/><stop offset="96%" stop-color="',allColors[getAColorID(tokenId, "R6")],'"/><stop offset="100%" stop-color="',allColors[getAColorID(tokenId, "BGC")],'"/></radialGradient></defs>'));
        return output;
    }

    function getFlowerBG(OCCFlower memory flower, uint256 tokenId) internal view returns (string memory) {
        string memory output;

        if (flower.backgroundType == 0) {
            output = string(abi.encodePacked('<rect width="500" height="500" fill="', allColors[flower.backgroundColor], '" />'));
        }
        if (flower.backgroundType == 1) {
            output = string(abi.encodePacked(getRadialBackground(tokenId),'<rect width="500" height="500" fill="url(#radialBG)"/>'));
        }
        if (flower.backgroundType > 1 && flower.backgroundType < 5) {
            output = string(abi.encodePacked(otherBG[(flower.backgroundType - 2)],'<rect width="500" height="500" filter="url(#filterBG)"/>'));
        }
        if (flower.backgroundType >= 5) {
            output = string(abi.encodePacked(specialBG[(flower.backgroundType - 5)],'<rect width="500" height="500" filter="url(#filterBG)"/>'));
        }
        
        return output;
    }
    
    function getPetalSVG(OCCFlower memory flower) internal view returns (string memory) {
        string memory petalStart = petalStarts[flower.petalStyle];
        string memory petalEnd = petalEnds[flower.petalStyle];
        uint256 angleGap = 360000 / flower.numPetals;
        string memory petalInsert = '';
        
        petalInsert = string(abi.encodePacked('<defs>',petalStart,' id="ps-', toString(flower.petalStyle),'" ',petalEnd,'/><mask id="fpc"><rect height="100%" width="100%" fill="white" /><use transform = "rotate(',toString((angleGap)/1000)));
        petalInsert = string(abi.encodePacked(petalInsert,'.', toString((angleGap)%1000), ' 250 250)" xlink:href="#ps-',toString(flower.petalStyle),'" fill="black"/></mask></defs>'));
        
        if(flower.isAnimated) {
            for (uint256 i=0; i<flower.numPetals; i++) {
                petalInsert = string(abi.encodePacked(petalInsert, '<use transform="rotate(',toString((angleGap*i)/1000),'.', toString((angleGap*i)%1000), ' 250 250)" xlink:href="#ps-', toString(flower.petalStyle), '" mask="url(#fpc)" fill="', allColors[flower.petalColor], '">'));
                petalInsert = string(abi.encodePacked(petalInsert, petalAnimation[0],toString((angleGap*i)/1000),'.', toString((angleGap*i)%1000),petalAnimation[1],toString(((angleGap*i)/1000)+360),'.', toString((angleGap*i)%1000),petalAnimation[2], '</use>'));
            }
        } else {
            for (uint256 i=0; i<flower.numPetals; i++) {
                petalInsert = string(abi.encodePacked(petalInsert, '<use transform="rotate(',toString((angleGap*i)/1000),'.', toString((angleGap*i)%1000), ' 250 250)" xlink:href="#ps-', toString(flower.petalStyle)));
                petalInsert = string(abi.encodePacked(petalInsert, '" mask="url(#fpc)" fill="', allColors[flower.petalColor], '"/>'));
            }
        }
        
        return petalInsert;
    }
    
    function getMutationSVG(OCCFlower memory flower, uint256 tokenId) internal view returns (string memory) {
        string memory feTurbulance;
        string memory feDisplacementMap;
        string memory xOffset = '0';
        string memory yOffset = '0';

        if (flower.mutationType == 0) {
            return '<defs><filter xmlns="http://www.w3.org/2000/svg" id="Gl" x="-50%" y="-50%" width="200%" height="200%"><feDropShadow dx="8" dy="8" flood-color="#000000" flood-opacity="1" stdDeviation="0"/></filter></defs>';
        } 
        if (flower.mutationType == 1) {
            feTurbulance = string(abi.encodePacked('0.0', toString(pluckNum(tokenId, "HAND DRAWN", 3, 5))));
            feDisplacementMap = toString(pluckNum(tokenId, "HAND DRAWN", 4, 8));
            xOffset = '-10';
            yOffset = '-5';
        } 
        if (flower.mutationType == 2) {
            feTurbulance = '0.002';
            feDisplacementMap = toString(pluckNum(tokenId, "SKEW", 100, 200));
            xOffset = '-30';
            yOffset = '-10';
        } 
        if (flower.mutationType == 3) {
            feTurbulance = string(abi.encodePacked('0.',toString(pluckNum(tokenId, "GLITCHED", 3, 5))));
            feDisplacementMap = toString(pluckNum(tokenId, "GLITCHED", 20, 30));
            xOffset = '-12';
            yOffset = '-5';
        } 
        if (flower.mutationType == 4) {
            feTurbulance = string(abi.encodePacked('0.00',toString(pluckNum(tokenId, "LONGBOI", 17, 22))));
            feDisplacementMap = string(abi.encodePacked('-',toString(pluckNum(tokenId, "LONGBOI", 110, 120))));
            xOffset = '30';
            yOffset = '35';
        } 
        if (flower.mutationType == 5) {
            feTurbulance = '0.00475 0.00155';
            feDisplacementMap = '113';
            xOffset = '-40';
            yOffset = '-45';
        } 
        if (flower.mutationType == 6) {
            feTurbulance = string(abi.encodePacked('0.0',toString(pluckNum(tokenId, "INFECTED", 7, 9))));
            feDisplacementMap = toString(pluckNum(tokenId, "INFECTED", 60, 90));
            xOffset = '-30';
            yOffset = '-25';
        }

        string memory output = string(abi.encodePacked('<defs><filter id="Gl" x="-50%" y="-50%" width="200%" height="200%"><feTurbulence baseFrequency="',feTurbulance,'"/><feDisplacementMap in="SourceGraphic" scale="',feDisplacementMap,'"/><feOffset dy="',yOffset,'" dx="',xOffset,'"/><feDropShadow dx="8" dy="8" flood-color="#000000" flood-opacity="1" stdDeviation="0"/></filter></defs>'));
        return output;
    }

    function getFlowerSVG(OCCFlower memory flower, uint256 tokenId) internal view returns (string memory) {
        string[15] memory parts;

        parts[0] = '<svg viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">';
        parts[1] = getFlowerBG(flower, tokenId);
        parts[4] = '<rect id="rect" style="mix-blend-mode:overlay" opacity=".2" width="100%" height="100%" fill="';
        parts[5] = allColors[flower.overlayColor];
        parts[6] = '"/>';
        parts[7] = getMutationSVG(flower, tokenId);
        parts[8] = '<g filter="url(#Gl)" stroke="#000000" stroke-width="4">';
        parts[9] = getPetalSVG(flower);
        parts[10] = '<circle cx="250" cy="250" r="';
        parts[11] = toString(flower.coreSize);
        parts[12] = '" fill="';
        parts[13] = allColors[flower.coreColor];
        parts[14] = '"/></g></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7]));
        output = string(abi.encodePacked(output, parts[8], parts[9], parts[10], parts[11], parts[12], parts[13], parts[14]));

        return output;
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        OCCFlower memory flower = randomFlower(tokenId);
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Flower #', toString(tokenId), '", "description": "Flowers are fully on-chain, randomly generated unique flowers. For you, or a special someone in your life."', getTraits(flower), '"image": "data:image/svg+xml;base64,', Base64.encode(bytes(getFlowerSVG(flower,tokenId))), '"}'))));
        json = string(abi.encodePacked('data:application/json;base64,', json));
        return json;
    }

    function addToWhitelist(uint256 _claimAmount, address[] calldata entries) onlyOwner external {
        for(uint i=0; i<entries.length; i++){
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!_whiteList[entry], "DUPLICATE_ENTRY");
            _whiteList[entry] = true;
            _whiteListLimit[entry] = _claimAmount;
        }
    }

    function removeFromWhitelist(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            _whiteList[entry] = false;
        }
    }

    function whitelistInfoFor(address _addr) public view returns (bool isWhiteListed, uint256 numHasMinted, uint256 allottedMints) {
        isWhiteListed = _whiteList[_addr];
        numHasMinted = _whiteListPurchases[_addr];
        allottedMints = _whiteListLimit[_addr];
    }

    function mintedInfoFor(address _addr) public view returns (uint256 numHasMinted) {
        numHasMinted = _mintPerAddress[_addr];
    }

    function mint(address destination, uint256 amountOfTokens) private {
        require(!allSalesPaused, "Sale is paused right now");
        require(totalSupply() < maxSupply, "All tokens have been minted");
        require(totalSupply() + amountOfTokens <= maxSupply, "Minting would exceed max supply");
        require(amountOfTokens <= maxMint, "Cannot purchase this many tokens in a transaction");
        require(amountOfTokens > 0, "Must mint at least one token");
        require(_mintPerAddress[msg.sender] + amountOfTokens <= maxPerAddress,  "You can't exceed this wallet's minting limit");
        require(price * amountOfTokens == msg.value, "ETH amount is incorrect");

        if (privateSaleIsActive) {
            require(_whiteList[msg.sender], "Buyer not whitelisted for this private sale");
            require(_whiteListPurchases[msg.sender] + amountOfTokens <= _whiteListLimit[msg.sender], "Cannot exceed allotted presale mint count");
            _whiteListPurchases[msg.sender] = _whiteListPurchases[msg.sender] + amountOfTokens;
        }

        for (uint256 i = 0; i < amountOfTokens; i++) {
            uint256 tokenId = numTokensMinted + 1;
            _safeMint(destination, tokenId);
            numTokensMinted += 1;
            _mintPerAddress[msg.sender] += 1;
        }
    }
    
    function mintForSelf(uint256 amountOfTokens) public payable virtual {
        mint(_msgSender(),amountOfTokens);
    }

    function mintForFriend(address walletAddress, uint256 amountOfTokens) public payable virtual {
        mint(walletAddress,amountOfTokens);
    }

    function toggleAllSalesPaused() public onlyOwner {
        allSalesPaused = !allSalesPaused;
    }

    function enablePublicSale() public onlyOwner {
        privateSaleIsActive = false;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setMaxPerAddress(uint256 newMaxPerAddress) public onlyOwner {
        maxPerAddress = newMaxPerAddress;
    }

    function setMaxMint(uint256 newMaxMint) public onlyOwner {
        maxMint = newMaxMint;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
    
    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("Flowers", "FLWRS") 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);
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

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":"uint256","name":"_claimAmount","type":"uint256"},{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allSalesPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"mintForFriend","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"mintForSelf","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"mintedInfoFor","outputs":[{"internalType":"uint256","name":"numHasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerAddress","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleAllSalesPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"whitelistInfoFor","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"},{"internalType":"uint256","name":"numHasMinted","type":"uint256"},{"internalType":"uint256","name":"allottedMints","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

611000600c556658d15e17628000600d556018600e8190556010556011805461ff001960ff19909116600117166101009081179091556004610160908152634e6f6e6560e01b61018052608090815260086101a08181526714dad95d18da195960c21b6101c05260a05260066101e09081526514dad95dd95960d21b6102005260c0526102208181526711db1a5d18da195960c21b6102405260e052610260818152674c6f6e6720426f6960c01b6102805290925260056102a0908152641219585c9d60da1b6102c052610120526103206040526102e091825267125b999958dd195960c21b610300526101409190915262000100906016906007620016d1565b5060408051610160810190915260d3606082018181528291620089fe6080840139815260200160405180610140016040528061011981526020016200863b610119913981526020016040518060e0016040528060a78152602001620078b960a7913990526200017490601d90600362001728565b506040805161036081019091526102aa60808201818152829162007afa60a08401398152602001604051806102e001604052806102aa815260200162007fba6102aa91398152602001604051806102e001604052806102aa8152602001620087546102aa91398152602001604051806102e001604052806102aa815260200162008c5b6102aa913990526200020e9060209060046200176d565b5060408051610160810182526006610120820181815265139bdc9b585b60d21b610140840152825282518084018452818152651498591a585b60d21b60208281019190915280840191909152835180850185526009808252684e6967687420536b7960b81b828401528486019190915284518086018652818152682230b636b0ba34b0b760b91b818401526060850152845180860186528381526554726970707960d01b81840152608085015284518086018652600a81526904c6967687420547269760b41b8184015260a0850152845180860186528181526804461726b20547269760bc1b8184015260c08501528451808601865292835265426c696e677960d01b8383015260e0840192909252835180850190945260078452665261696e626f7760c81b90840152610100820192909252620003509160249190620017b2565b50604080516102608101825260056102208201818152644c6f74757360d81b610240840152825282518084018452600780825266105c1c9a58dbdd60ca1b602083810191909152808501929092528451808601865283815264446169737960d81b818401528486015284518086018652600880825267506c756d6572696160c01b8285015260608601919091528551808701875260098082526847617264656e69617360b81b828601526080870191909152865180880188528581526420b9ba32b960d91b8186015260a087015286518088018852818152684368616d6f6d696c6560b81b8186015260c087015286518088018852600a8152692132b636333637bbb2b960b11b8186015260e08701528651808801885260068152654461686c696160d01b8186015261010087015286518088018852828152674d61676e6f6c696160c01b8186015261012087015286518088018852838152664a61736d696e6560c81b818601526101408701528651808801885282815267486962697363757360c01b818601526101608701528651808801885294855264054756c69760dc1b8585015261018086019490945285518087018752601081526f42697264206f6620506172616469736560801b818501526101a08601528551808701875293845268417175696c6567696160b81b848401526101c08501939093528451808601865292835267457468657265756d60c01b838301526101e0840192909252835180850190945290835266111a59da5d185b60ca1b90830152610200810191909152620005a190602d906011620017f7565b50604080516105408101825260076105008201818152660234541464230360cc1b610520840152825282518084018452818152662346304346363160c81b60208281019190915280840191909152835180850185528281526611a3232323232360c91b818301528385015283518085018552828152662330453338423160c81b81830152606084015283518085018552828152662345463345344160c81b818301526080840152835180850185528281526611a322a220a19960c91b8183015260a084015283518085018552828152662342304438444360c81b8183015260c084015283518085018552828152660234236434143360cc1b8183015260e0840152835180850185528281526611a198192098a160c91b8183015261010084015283518085018552828152662331464338413960c81b81830152610120840152835180850185528281526611a19c1c1b209960c91b81830152610140840152835180850185528281526608d18e5091109160ca1b8183015261016084015283518085018552828152662346454443434360c81b81830152610180840152835180850185528281526608d150908e510d60ca1b818301526101a084015283518085018552828152662346324342364360c81b818301526101c0840152835180850185528281526608d1918e11904d60ca1b818301526101e0840152835180850185528281526611999a19a119a360c91b8183015261020084015283518085018552828152662346463839423560c81b81830152610220840152835180850185528281526611a218a122232360c91b8183015261024084015283518085018552828152662339413030384160c81b818301526102608401528351808501855282815266119ba11b9b209b60c91b8183015261028084015283518085018552828152660468c846a6860760cb1b818301526102a084015283518085018552828152662330423634464560c81b818301526102c084015283518085018552828152660468c8282886a760cb1b818301526102e0840152835180850185528281526611a3231c211c2160c91b81830152610300840152835180850185528281526611a3192319231960c91b81830152610320840152835180850185528281526611a3232219a19960c91b81830152610340840152835180850185528281526611a322211c982160c91b81830152610360840152835180850185528281526611a321a09a9ca160c91b8183015261038084015283518085018552828152660234344434444360cc1b818301526103a084015283518085018552828152662345454539444360c81b818301526103c084015283518085018552828152660234344423637360cc1b818301526103e084015283518085018552828152660234233453045360cc1b818301526104008401528351808501855282815266119aa19a1a9ba160c91b8183015261042084015283518085018552828152660234644464635360cc1b8183015261044084015283518085018552828152662346464343344360c81b8183015261046084015283518085018552828152662331394141443160c81b818301526104808401528351808501855282815266119ba0999821a360c91b818301526104a084015283518085018552828152662331383942413360c81b818301526104c084015283518085019094529083526611a2a3199819a160c91b908301526104e081019190915262000a9690603e9060286200183c565b506040805161054081018252600b61050082018181526a2630b9b2b9102632b6b7b760a91b610520840152825282518084018452600e8082526d4172796c6964652059656c6c6f7760901b6020838101919091528085019290925284518086018652600580825264576869746560d81b828501528587019190915285518087018752600d8082526c456779707469616e20426c756560981b82860152606087019190915286518088018852600c8082526b4361726d696e652050696e6b60a01b82870152608088019190915287518089018952600a808252692832b0b1b410283ab33360b11b8288015260a08901919091528851808a018a5260098082526850616c65204171756160b81b8289015260c08a01919091528951808b018b52828152690a0deeec8cae44082e6d60b31b8189015260e08a01528951808b018b528881526a151a1d5b99195c989a5c9960aa1b818901526101008a01528951808b018b52948552642a37b830bd60d91b858801526101208901949094528851808a018a528381526c4c6970737469636b2050696e6b60981b818801526101408901528851808a018a5260088082526754656120526f736560c01b828901526101608a01919091528951808b018b528681526d5065616368205363686e6170707360901b818901526101808a01528951808b018b528281526950696e6b20466c61726560b01b818901526101a08a01528951808b018b5260048082526314d85b9960e21b828a01526101c08b01919091528a51808c018c528481526b141a5b9ac814da195c98995d60a21b818a01526101e08b01528a51808c018c528181526354756e6160e01b818a01526102008b01528a51808c018c5290815263526f736160e01b818901526102208a01528951808b018b5260078152664d656c726f736560c81b818901526102408a01528951808b018b528381526b4461726b204d6167656e746160a01b818901526102608a01528951808b018b529586526d4772657969736820507572706c6560901b868801526102808901959095528851808a018a52601481527f496e7465726e6174696f6e616c204f72616e6765000000000000000000000000818801526102a08901528851808a018a528781526a42726967687420426c756560a81b818801526102c08901528851808a018a528781526a50616c65204f72616e676560a81b818801526102e08901528851808a018a5284815268476572616c64696e6560b81b818801526103008901528851808a018a52938452682837b931b2b630b4b760b91b84870152610320880193909352875180890189528181526b4c696768742041707269636f60a01b8187015261034088015287518089018952600681526523b7b63232b760d11b81870152610360880152875180890189528381526953776565742050696e6b60b01b8187015261038088015287518089018952838152694772657920476f6f736560b01b818701526103a088015287518089018952938452671159d9dcda195b1b60c21b848601526103c08701939093528651808801885260038152622a30b760e91b818601526103e0870152865180880188528581526a506f7764657220426c756560a81b81860152610400870152865180880188528581526a507572706c652048617a6560a81b81860152610420870152865180880188529081526c43616e6172792059656c6c6f7760981b818501526104408601528551808701875290815269213934b3b43a1029bab760b11b8184015261046085015284518086018652600f81526e213934b3b43a1021b2b93ab632b0b760891b81840152610480850152845180860186529283526a109b1d5948159a5bdb195d60aa1b838301526104a0840192909252835180850185529182526b4561737465726e20426c756560a01b828201526104c08301919091528251808401909352601183527044656570204361726d696e652050696e6b60781b908301526104e0810191909152620010549060669060286200183c565b5060408051610260810182526005610220820181815264078e0c2e8d60db1b61024084018190529083528351808501855282815260208181018390528085019190915284518086018652838152808201839052848601528451808601865283815280820183905260608501528451808601865283815280820183905260808501528451808601865283815280820183905260a08501528451808601865283815280820183905260c08501528451808601865283815280820183905260e0850152845180860186528381528082018390526101008501528451808601865260088152673c656c6c6970736560c01b81830152610120850152845180860186528381528082018390526101408501528451808601865283815280820183905261016085015284518086018652838152808201839052610180850152845180860186528381528082018390526101a0850152845180860186528381528082018390526101c0850152845180860186528381528082018390526101e0850152845180860190955291845290830152610200810191909152620011f790608e906011620017f7565b5060408051610300810190915260b2610220820181815282916200923961024084013981526020016040518060e0016040528060a6815260200162007e1260a69139815260200160405180610120016040528060f381526020016200900860f3913981526020016040518060a00160405280606e815260200162007da4606e9139815260200160405180610100016040528060c48152602001620077f560c49139815260200160405180610120016040528060e1815260200162008f2760e19139815260200160405180610140016040528061010a8152602001620083e461010a9139815260200160405180610100016040528060dc815260200162008b7f60dc913981526020016040518060e0016040528060c081526020016200796060c09139815260200160405180606001604052806022815260200162008f056022913981526020016040518060c00160405280608a815260200162008ad1608a9139815260200160405180610160016040528061013e8152602001620090fb61013e9139815260200160405180610100016040528060da815260200162007a2060da913981526020016040518060e0016040528060ae815260200162007eb860ae9139815260200160405180610180016040528061014d8152602001620084ee61014d9139815260200160405180606001604052806030815260200162008264603091398152602001604051806101800160405280610150815260200162008294610150913990526200142d90609f906011620017f7565b50604080516102208101825260088082526004602083018190526005938301849052606083018190526080830184905260a0830182905260c08301849052600660e0840181905261010084018190526101208401829052610140840183905261016084018290526101808401929092526101a0830152600a6101c08301526101e0820152610200810191909152620014ca9060b090601162001881565b506040805161022081018252600f8152600860208201819052918101829052600a6060820181905260808201819052600c60a0830181905260c0830182905260e0830181905261010083018190526101208301939093526014610140830152600761016083015260106101808301526101a0820181905260126101c08301526101e08201929092526102008101919091526200156b9060c190601162001881565b506040805160e08101909152605460608201818152829162007f66608084013981526020016040518060400160405280600e81526020016d10191a9810191a9811103a379e9160911b815250815260200160405180606001604052806024815260200162008b5b602491399052620015e89060d290600362001728565b50348015620015f657600080fd5b506040805180820182526007815266466c6f7765727360c81b602080830191825283518085019094526005845264464c57525360d81b9084015281519192916200164391600091620018c5565b50805162001659906001906020840190620018c5565b50506001600a5550620016756200166f6200167b565b6200167f565b620019fc565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b826007810192821562001716579160200282015b8281111562001716578251805162001705918491602090910190620018c5565b5091602001919060010190620016e5565b506200172492915062001942565b5090565b826003810192821562001716579160200282015b828111156200171657825180516200175c918491602090910190620018c5565b50916020019190600101906200173c565b826004810192821562001716579160200282015b82811115620017165782518051620017a1918491602090910190620018c5565b509160200191906001019062001781565b826009810192821562001716579160200282015b82811115620017165782518051620017e6918491602090910190620018c5565b5091602001919060010190620017c6565b826011810192821562001716579160200282015b828111156200171657825180516200182b918491602090910190620018c5565b50916020019190600101906200180b565b826028810192821562001716579160200282015b8281111562001716578251805162001870918491602090910190620018c5565b509160200191906001019062001850565b8260118101928215620018b7579160200282015b82811115620018b7578251829060ff1690559160200191906001019062001895565b506200172492915062001963565b828054620018d390620019bf565b90600052602060002090601f016020900481019282620018f75760008555620018b7565b82601f106200191257805160ff1916838001178555620018b7565b82800160010185558215620018b7579182015b82811115620018b757825182559160200191906001019062001925565b80821115620017245760006200195982826200197a565b5060010162001942565b5b8082111562001724576000815560010162001964565b5080546200198890620019bf565b6000825580601f106200199c5750620019bc565b601f016020900490600052602060002090810190620019bc919062001963565b50565b600281046001821680620019d457607f821691505b60208210811415620019f657634e487b7160e01b600052602260045260246000fd5b50919050565b615de98062001a0c6000396000f3fe6080604052600436106102255760003560e01c80637bddd65b11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105d7578063e5da297e146105ec578063e985e9c51461060c578063f2295b1d1461062c578063f2fde38b1461064c57610225565b8063a22cb4651461054f578063b6f00dbd1461056f578063b88d4fde14610584578063c49b3d54146105a4578063c87b56dd146105b757610225565b806391b7f5ed116100f257806391b7f5ed146104c3578063937b9e81146104e357806395d89b4114610512578063a035b1fe14610527578063a108f5291461053c57610225565b80637bddd65b14610471578063853828b6146104915780638ad8f390146104995780638da5cb5b146104ae57610225565b80634230baee116101b15780636352211e116101755780636352211e146103f2578063639814e01461041257806370a0823114610427578063715018a6146104475780637501f7411461045c57610225565b80634230baee1461035d57806342842e0e146103725780634f6ccce714610392578063547520fe146103b2578063548db174146103d257610225565b8063095ea7b3116101f8578063095ea7b3146102c457806318160ddd146102e65780632316b4da1461030857806323b872dd1461031d5780632f745c591461033d57610225565b806301ffc9a71461022a57806304737a011461026057806306fdde0314610275578063081812fc14610297575b600080fd5b34801561023657600080fd5b5061024a610245366004614073565b61066c565b604051610257919061511f565b60405180910390f35b34801561026c57600080fd5b5061024a610699565b34801561028157600080fd5b5061028a6106a7565b6040516102579190615142565b3480156102a357600080fd5b506102b76102b23660046140ab565b610739565b60405161025791906150ce565b3480156102d057600080fd5b506102e46102df36600461400a565b610785565b005b3480156102f257600080fd5b506102fb61081d565b6040516102579190615896565b34801561031457600080fd5b506102e4610823565b34801561032957600080fd5b506102e4610338366004613ec9565b61086f565b34801561034957600080fd5b506102fb61035836600461400a565b6108a7565b34801561036957600080fd5b506102fb6108fc565b34801561037e57600080fd5b506102e461038d366004613ec9565b610902565b34801561039e57600080fd5b506102fb6103ad3660046140ab565b61091d565b3480156103be57600080fd5b506102e46103cd3660046140ab565b610978565b3480156103de57600080fd5b506102e46103ed366004614033565b6109bc565b3480156103fe57600080fd5b506102b761040d3660046140ab565b610a96565b34801561041e57600080fd5b506102fb610acb565b34801561043357600080fd5b506102fb610442366004613e7d565b610ad1565b34801561045357600080fd5b506102e4610b15565b34801561046857600080fd5b506102fb610b60565b34801561047d57600080fd5b506102e461048c3660046140ab565b610b66565b6102e4610baa565b3480156104a557600080fd5b506102e4610c21565b3480156104ba57600080fd5b506102b7610c74565b3480156104cf57600080fd5b506102e46104de3660046140ab565b610c83565b3480156104ef57600080fd5b506105036104fe366004613e7d565b610cc7565b6040516102579392919061512a565b34801561051e57600080fd5b5061028a610cfd565b34801561053357600080fd5b506102fb610d0c565b6102e461054a36600461400a565b610d12565b34801561055b57600080fd5b506102e461056a366004613fd0565b610d20565b34801561057b57600080fd5b5061024a610dee565b34801561059057600080fd5b506102e461059f366004613f04565b610df7565b6102e46105b23660046140ab565b610e36565b3480156105c357600080fd5b5061028a6105d23660046140ab565b610e4a565b3480156105e357600080fd5b506102fb610ed3565b3480156105f857600080fd5b506102fb610607366004613e7d565b610ed9565b34801561061857600080fd5b5061024a610627366004613e97565b610ef4565b34801561063857600080fd5b506102e46106473660046140c3565b610f22565b34801561065857600080fd5b506102e4610667366004613e7d565b611045565b60006001600160e01b0319821663780e9d6360e01b14806106915750610691826110b3565b90505b919050565b601154610100900460ff1681565b6060600080546106b690615939565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290615939565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000610744826110f3565b6107695760405162461bcd60e51b8152600401610760906155eb565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079082610a96565b9050806001600160a01b0316836001600160a01b031614156107c45760405162461bcd60e51b8152600401610760906156ec565b806001600160a01b03166107d6611110565b6001600160a01b031614806107f257506107f281610627611110565b61080e5760405162461bcd60e51b8152600401610760906153d0565b6108188383611114565b505050565b60085490565b61082b611110565b6001600160a01b031661083c610c74565b6001600160a01b0316146108625760405162461bcd60e51b815260040161076090615637565b6011805461ff0019169055565b61088061087a611110565b82611182565b61089c5760405162461bcd60e51b815260040161076090615776565b610818838383611207565b60006108b283610ad1565b82106108d05760405162461bcd60e51b8152600401610760906151c6565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b600f5481565b61081883838360405180602001604052806000815250610df7565b600061092761081d565b82106109455760405162461bcd60e51b8152600401610760906157c7565b6008828154811061096657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610980611110565b6001600160a01b0316610991610c74565b6001600160a01b0316146109b75760405162461bcd60e51b815260040161076090615637565b600e55565b6109c4611110565b6001600160a01b03166109d5610c74565b6001600160a01b0316146109fb5760405162461bcd60e51b815260040161076090615637565b60005b81811015610818576000838383818110610a2857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610a3d9190613e7d565b90506001600160a01b038116610a655760405162461bcd60e51b8152600401610760906151a0565b6001600160a01b03166000908152601360205260409020805460ff1916905580610a8e81615974565b9150506109fe565b6000818152600260205260408120546001600160a01b0316806106915760405162461bcd60e51b815260040161076090615477565b60105481565b60006001600160a01b038216610af95760405162461bcd60e51b81526004016107609061542d565b506001600160a01b031660009081526003602052604090205490565b610b1d611110565b6001600160a01b0316610b2e610c74565b6001600160a01b031614610b545760405162461bcd60e51b815260040161076090615637565b610b5e6000611334565b565b600e5481565b610b6e611110565b6001600160a01b0316610b7f610c74565b6001600160a01b031614610ba55760405162461bcd60e51b815260040161076090615637565b601055565b610bb2611110565b6001600160a01b0316610bc3610c74565b6001600160a01b031614610be95760405162461bcd60e51b815260040161076090615637565b610bf1611110565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050610b5e57600080fd5b610c29611110565b6001600160a01b0316610c3a610c74565b6001600160a01b031614610c605760405162461bcd60e51b815260040161076090615637565b6011805460ff19811660ff90911615179055565b600b546001600160a01b031690565b610c8b611110565b6001600160a01b0316610c9c610c74565b6001600160a01b031614610cc25760405162461bcd60e51b815260040161076090615637565b600d55565b6001600160a01b03166000908152601360209081526040808320546014835281842054601590935292205460ff90921692909190565b6060600180546106b690615939565b600d5481565b610d1c8282611386565b5050565b610d28611110565b6001600160a01b0316826001600160a01b03161415610d595760405162461bcd60e51b815260040161076090615324565b8060056000610d66611110565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610daa611110565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610de2919061511f565b60405180910390a35050565b60115460ff1681565b610e08610e02611110565b83611182565b610e245760405162461bcd60e51b815260040161076090615776565b610e30848484846115d9565b50505050565b610e47610e41611110565b82611386565b50565b60606000610e578361160c565b90506000610ea8610e678561179e565b610e70846118b9565b610e82610e7d86896121c7565b6125b3565b604051602001610e9493929190614c8d565b6040516020818303038152906040526125b3565b905080604051602001610ebb9190614e74565b60408051808303601f19018152919052949350505050565b600c5481565b6001600160a01b031660009081526012602052604090205490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2a611110565b6001600160a01b0316610f3b610c74565b6001600160a01b031614610f615760405162461bcd60e51b815260040161076090615637565b60005b81811015610e30576000838383818110610f8e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fa39190613e7d565b90506001600160a01b038116610fcb5760405162461bcd60e51b8152600401610760906151a0565b6001600160a01b03811660009081526013602052604090205460ff16156110045760405162461bcd60e51b8152600401610760906153a7565b6001600160a01b03166000908152601360209081526040808320805460ff19166001179055601590915290208490558061103d81615974565b915050610f64565b61104d611110565b6001600160a01b031661105e610c74565b6001600160a01b0316146110845760405162461bcd60e51b815260040161076090615637565b6001600160a01b0381166110aa5760405162461bcd60e51b815260040161076090615263565b610e4781611334565b60006001600160e01b031982166380ac58cd60e01b14806110e457506001600160e01b03198216635b5e139f60e01b145b80610691575061069182612727565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061114982610a96565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061118d826110f3565b6111a95760405162461bcd60e51b81526004016107609061535b565b60006111b483610a96565b9050806001600160a01b0316846001600160a01b031614806111ef5750836001600160a01b03166111e484610739565b6001600160a01b0316145b806111ff57506111ff8185610ef4565b949350505050565b826001600160a01b031661121a82610a96565b6001600160a01b0316146112405760405162461bcd60e51b81526004016107609061566c565b6001600160a01b0382166112665760405162461bcd60e51b8152600401610760906152e0565b611271838383612740565b61127c600082611114565b6001600160a01b03831660009081526003602052604081208054600192906112a59084906158f6565b90915550506001600160a01b03821660009081526003602052604081208054600192906112d39084906158ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60115460ff16156113a95760405162461bcd60e51b8152600401610760906154c0565b600c546113b461081d565b106113d15760405162461bcd60e51b81526004016107609061585f565b600c54816113dd61081d565b6113e791906158ab565b11156114055760405162461bcd60e51b8152600401610760906154f7565b600e548111156114275760405162461bcd60e51b81526004016107609061552e565b600081116114475760405162461bcd60e51b8152600401610760906156b5565b601054336000908152601260205260409020546114659083906158ab565b11156114835760405162461bcd60e51b815260040161076090615813565b3481600d5461149291906158d7565b146114af5760405162461bcd60e51b8152600401610760906155b4565b601154610100900460ff161561155f573360009081526013602052604090205460ff166114ee5760405162461bcd60e51b815260040161076090615155565b336000908152601560209081526040808320546014909252909120546115159083906158ab565b11156115335760405162461bcd60e51b81526004016107609061572d565b3360009081526014602052604090205461154e9082906158ab565b336000908152601460205260409020555b60005b81811015610818576000600f54600161157b91906158ab565b905061158784826127c9565b6001600f600082825461159a91906158ab565b90915550503360009081526012602052604081208054600192906115bf9084906158ab565b909155508291506115d1905081615974565b915050611562565b6115e4848484611207565b6115f0848484846127e3565b610e305760405162461bcd60e51b815260040161076090615211565b611614613d85565b61161c613d85565b611625836128fe565b8082526116a79084906116379061179e565b6040516020016116479190614e2b565b60405160208183030381529060405260b084600001516011811061167b57634e487b7160e01b600052603260045260246000fd5b0154845160c190601181106116a057634e487b7160e01b600052603260045260246000fd5b0154612add565b8160200181815250506116d5836040518060400160405280600381526020016250454360e81b815250612b44565b8160400181815250506117038360405180604001604052806003815260200162434f4360e81b815250612b44565b606082015261171183612b5b565b608082015260408051808201909152600381526242474360e81b602082015261173b908490612b44565b60a08201526040805180820190915260038152624f564360e81b6020820152611765908490612b44565b60c082015261177383612b8c565b60e082015261178183612c54565b61010082015261179083612d36565b151561012082015292915050565b6060816117c357506040805180820190915260018152600360fc1b6020820152610694565b8160005b81156117ed57806117d781615974565b91506117e69050600a836158c3565b91506117c7565b60008167ffffffffffffffff81111561181657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611840576020820181803683370190505b5090505b84156111ff576118556001836158f6565b9150611862600a8661598f565b61186d9060306158ab565b60f81b81838151811061189057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118b2600a866158c3565b9450611844565b60606118c3613dda565b6040518060600160405280603881526020016159fc6038913981528251602d906011811061190157634e487b7160e01b600052603260045260246000fd5b01805461190d90615939565b80601f016020809104026020016040519081016040528092919081815260200182805461193990615939565b80156119865780601f1061195b57610100808354040283529160200191611986565b820191906000526020600020905b81548152906001019060200180831161196957829003601f168201915b5050505050816001601481106119ac57634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060600160405280602b8152602001615a34602b913981600260200201526040830151606690602881106119fb57634e487b7160e01b600052603260045260246000fd5b018054611a0790615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3390615939565b8015611a805780601f10611a5557610100808354040283529160200191611a80565b820191906000526020600020905b815481529060010190602001808311611a6357829003601f168201915b505050505081600360148110611aa657634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060600160405280602a8152602001615d13602a91396080820152606083015160669060288110611af257634e487b7160e01b600052603260045260246000fd5b018054611afe90615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2a90615939565b8015611b775780601f10611b4c57610100808354040283529160200191611b77565b820191906000526020600020905b815481529060010190602001808311611b5a57829003601f168201915b505050505081600560148110611b9d57634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806060016040528060288152602001615d3d6028913981600460200201526080830151611bd49061179e565b60a08201526040805160608101909152602b808252615b54602083013960c08201526020830151611c049061179e565b60e08201526101008301511580611c2057508261010001516001145b15611d5e57604051806060016040528060278152602001615d8d6027913961010082015260a083015160669060288110611c6a57634e487b7160e01b600052603260045260246000fd5b018054611c7690615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca290615939565b8015611cef5780601f10611cc457610100808354040283529160200191611cef565b820191906000526020600020905b815481529060010190602001808311611cd257829003601f168201915b505050505081600960148110611d1557634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806040016040528060018152602001601160f91b81525081600a60148110611d5857634e487b7160e01b600052603260045260246000fd5b60200201525b604051806060016040528060298152602001615a5f6029913961016082015260c083015160669060288110611da357634e487b7160e01b600052603260045260246000fd5b018054611daf90615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddb90615939565b8015611e285780601f10611dfd57610100808354040283529160200191611e28565b820191906000526020600020905b815481529060010190602001808311611e0b57829003601f168201915b505050505081600c60148110611e4e57634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806060016040528060288152602001615d65602891396101a082015260e083015160169060078110611e9b57634e487b7160e01b600052603260045260246000fd5b018054611ea790615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed390615939565b8015611f205780601f10611ef557610100808354040283529160200191611f20565b820191906000526020600020905b815481529060010190602001808311611f0357829003601f168201915b505050505081600e60148110611f4657634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806060016040528060248152602001615bf4602491396101e0820152610120830151611f9a576040518060400160405280600581526020016446616c736560d81b815250611fb8565b604051806040016040528060048152602001635472756560e01b8152505b61020082015260408051606081019091526027808252615cec60208301396102208201526101008301516024906009811061200357634e487b7160e01b600052603260045260246000fd5b01805461200f90615939565b80601f016020809104026020016040519081016040528092919081815260200182805461203b90615939565b80156120885780601f1061205d57610100808354040283529160200191612088565b820191906000526020600020905b81548152906001019060200180831161206b57829003601f168201915b5050505050816012601481106120ae57634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806040016040528060058152602001640113eae96160dd1b815250816013601481106120f557634e487b7160e01b600052603260045260246000fd5b602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01516101008b0151965160009a61213f9a99989101614384565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a015196985061218c978997906020016142df565b60408051808303601f1901815290829052610200840151610220850151610240860151610260870151939550610ebb94869490602001614274565b60606121d1613e02565b6040518060a0016040528060758152602001615b7f6075913981526121f68484612d6f565b81600160200201819052506040518060800160405280605d8152602001615c58605d9139608082015260c0840151603e906028811061224557634e487b7160e01b600052603260045260246000fd5b01805461225190615939565b80601f016020809104026020016040519081016040528092919081815260200182805461227d90615939565b80156122ca5780601f1061229f576101008083540402835291602001916122ca565b820191906000526020600020905b8154815290600101906020018083116122ad57829003601f168201915b5050505050816005600f81106122f057634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060400160405280600381526020016211179f60e91b815250816006600f811061233557634e487b7160e01b600052603260045260246000fd5b60200201526123448484612edd565b60e082015260408051606081019091526037808252615cb56020830139610100820152612370846133f1565b61012082015260408051808201909152601d81527f3c636972636c652063783d22323530222063793d223235302220723d22000000602082015261014082015260808401516123be9061179e565b61016082015260408051808201909152600881526711103334b6361e9160c11b60208201526101808201526060840151603e906028811061240f57634e487b7160e01b600052603260045260246000fd5b01805461241b90615939565b80601f016020809104026020016040519081016040528092919081815260200182805461244790615939565b80156124945780601f1061246957610100808354040283529160200191612494565b820191906000526020600020905b81548152906001019060200180831161247757829003601f168201915b505050505081600d600f81106124ba57634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020016c11179f1e17b39f1e17b9bb339f60991b81525081600e600f811061250957634e487b7160e01b600052603260045260246000fd5b602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a0151955160009961254d99989791016142df565b60408051808303601f19018152908290526101008401516101208501516101408601516101608701516101808801516101a08901516101c08a015196985061259a978997906020016142df565b60408051808303601f1901815291905295945050505050565b8051606090806125d3575050604080516020810190915260008152610694565b600060036125e28360026158ab565b6125ec91906158c3565b6125f79060046158d7565b905060006126068260206158ab565b67ffffffffffffffff81111561262c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612656576020820181803683370190505b5090506000604051806060016040528060408152602001615c18604091399050600181016020830160005b868110156126e2576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612681565b5060038606600181146126fc576002811461270d57612719565b613d3d60f01b600119830152612719565b603d60f81b6000198301525b505050918152949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61274b838383610818565b6001600160a01b038316612767576127628161380b565b61278a565b816001600160a01b0316836001600160a01b03161461278a5761278a838261384f565b6001600160a01b0382166127a6576127a1816138ec565b610818565b826001600160a01b0316826001600160a01b0316146108185761081882826139c5565b610d1c828260405180602001604052806000815250613a09565b60006127f7846001600160a01b0316613a3c565b156128f357836001600160a01b031663150b7a02612813611110565b8786866040518563ffffffff1660e01b815260040161283594939291906150e2565b602060405180830381600087803b15801561284f57600080fd5b505af192505050801561287f575060408051601f3d908101601f1916820190925261287c9181019061408f565b60015b6128d9573d8080156128ad576040519150601f19603f3d011682016040523d82523d6000602084013e6128b2565b606091505b5080516128d15760405162461bcd60e51b815260040161076090615211565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ff565b506001949350505050565b60008061293161290d8461179e565b60405160200161291d919061503a565b604051602081830303815290604052613a42565b90506000612940607d8361598f565b90506000600a82101580156129555750601482105b1561295e575060015b6014821015801561296f5750601e82105b15612978575060025b601e82101580156129895750602882105b15612992575060035b602882101580156129a35750603282105b156129ac575060045b603282101580156129bd5750603c82105b156129c6575060055b603c82101580156129d75750604682105b156129e0575060065b604682101580156129f15750605082105b156129fa575060075b60508210158015612a0b5750605982105b15612a14575060085b60598210158015612a255750606182105b15612a2e575060095b60618210158015612a3f5750606882105b15612a485750600a5b60688210158015612a595750606e82105b15612a625750600b5b606e8210158015612a735750607382105b15612a7c5750600c5b60738210158015612a8d5750607782105b15612a965750600d5b60778210158015612aa75750607a82105b15612ab05750600e5b607a8210158015612ac15750607c82105b15612aca5750600f5b607c82106111ff57506010949350505050565b600080612b0b85612aed8861179e565b8686612af7611110565b60405160200161291d959493929190614446565b9050600084612b1a81866158f6565b612b259060016158ab565b612b2f908461598f565b612b3991906158ab565b979650505050505050565b6000612b54838360006026612add565b9392505050565b60006106918260405180604001604052806009815260200168434f52452053495a4560b81b8152506010601e612add565b600080612bab612b9b8461179e565b60405160200161291d9190614dd1565b90506000612bba60c98361598f565b90506000606482118015612bcf575060868211155b15612bd8575060015b608682118015612be95750609f8211155b15612bf2575060025b609f82118015612c03575060ae8211155b15612c0c575060035b60ae82118015612c1d575060bf8211155b15612c26575060045b60bf82118015612c37575060c58211155b15612c40575060055b60c58211156111ff57506006949350505050565b600080612c73612c638461179e565b60405160200161291d91906150a4565b90506000612c836103e98361598f565b9050600061038482118015612c9a57506103ba8211155b15612ca3575060015b6103ba82118015612cb657506103cf8211155b15612cbf575060025b6103ce82118015612cd257506103de8211155b15612cdb575060035b6103de82118015612cee57506103e58211155b15612cf7575060045b816103e51415612d05575060055b816103e61415612d13575060065b816103e71415612d21575060075b816103e814156111ff57506008949350505050565b600080612d55612d458461179e565b60405160200161291d919061506d565b90506000612d6460c98361598f565b60b410949350505050565b60608083610100015160001415612dc857603e8460a0015160288110612da557634e487b7160e01b600052603260045260246000fd5b01604051602001612db69190614eb9565b60405160208183030381529060405290505b83610100015160011415612e0157612ddf83613a73565b604051602001612def919061471a565b60405160208183030381529060405290505b6001846101000151118015612e1b57506005846101000151105b15612e7557601d6002856101000151612e3491906158f6565b60038110612e5257634e487b7160e01b600052603260045260246000fd5b01604051602001612e63919061491f565b60405160208183030381529060405290505b600584610100015110612b545760206005856101000151612e9691906158f6565b60048110612eb457634e487b7160e01b600052603260045260246000fd5b01604051602001612ec5919061491f565b60405160208183030381529060405290509392505050565b60608060606000604051806040016040528060018152602001600360fc1b81525090506000604051806040016040528060018152602001600360fc1b81525090508660e0015160001415612f505760405180610100016040528060cc8152602001615a8860cc91399450505050506108f6565b8660e001516001141561302257612f95612f90876040518060400160405280600a8152602001692420a72210222920aba760b11b81525060036005612add565b61179e565b604051602001612fa59190614e56565b60408051601f19818403018152828201909152600a8252692420a72210222920aba760b11b60208301529450612fe490612f9090889060046008612add565b92506040518060400160405280600381526020016202d31360ec1b8152509150604051806040016040528060028152602001612d3560f01b81525090505b8660e00151600214156130bb5760405180604001604052806005815260200164181718181960d91b815250935061307c612f908760405180604001604052806004815260200163534b455760e01b815250606460c8612add565b92506040518060400160405280600381526020016202d33360ec1b81525091506040518060400160405280600381526020016202d31360ec1b81525090505b8660e0015160031415613184576130f9612f90876040518060400160405280600881526020016711d3125510d2115160c21b81525060036005612add565b6040516020016131099190614e01565b60408051601f19818403018152828201909152600882526711d3125510d2115160c21b6020830152945061314690612f909088906014601e612add565b92506040518060400160405280600381526020016216989960e91b8152509150604051806040016040528060028152602001612d3560f01b81525090505b8660e0015160041415613260576131c1612f9087604051806040016040528060078152602001664c4f4e47424f4960c81b81525060116016612add565b6040516020016131d19190614acb565b60408051601f1981840301815282820190915260078252664c4f4e47424f4960c81b6020830152945061320d90612f90908890606e6078612add565b60405160200161321d9190615011565b60408051601f198184030181528282018252600280845261033360f41b602085810191909152835180850190945290835261333560f01b90830152945090925090505b8660e00151600514156132f2576040518060400160405280600f81526020016e302e303034373520302e303031353560881b81525093506040518060400160405280600381526020016231313360e81b81525092506040518060400160405280600381526020016202d34360ec1b8152509150604051806040016040528060038152602001622d343560e81b81525090505b8660e00151600614156133bc57613330612f9087604051806040016040528060088152602001671253919150d5115160c21b81525060076009612add565b6040516020016133409190614e56565b60408051601f1981840301815282820190915260088252671253919150d5115160c21b6020830152945061337d90612f90908890603c605a612add565b92506040518060400160405280600381526020016202d33360ec1b8152509150604051806040016040528060038152602001622d323560e81b81525090505b6000848483856040516020016133d5949392919061497e565b60408051808303601f1901815291905298975050505050505050565b60606000608e83600001516011811061341a57634e487b7160e01b600052603260045260246000fd5b01805461342690615939565b80601f016020809104026020016040519081016040528092919081815260200182805461345290615939565b801561349f5780601f106134745761010080835404028352916020019161349f565b820191906000526020600020905b81548152906001019060200180831161348257829003601f168201915b505050505090506000609f8460000151601181106134cd57634e487b7160e01b600052603260045260246000fd5b0180546134d990615939565b80601f016020809104026020016040519081016040528092919081815260200182805461350590615939565b80156135525780601f1061352757610100808354040283529160200191613552565b820191906000526020600020905b81548152906001019060200180831161353557829003601f168201915b505050505090506000846020015162057e4061356e91906158c3565b604080516020810190915260008152865191925090849061358e9061179e565b8461359e612f906103e8876158c3565b6040516020016135b19493929190614f0d565b60408051601f198184030181529190529050806135d3612f906103e88561598f565b87516135de9061179e565b6040516020016135f09392919061461e565b6040516020818303038152906040529050856101200151156137455760005b866020015181101561373f57816136366103e861362c84876158d7565b612f9091906158c3565b6136506103e861364685886158d7565b612f90919061598f565b895161365b9061179e565b603e8b604001516028811061368057634e487b7160e01b600052603260045260246000fd5b0160405160200161369595949392919061482e565b60408051808303601f1901815291905291508160d26136ba6103e861362c85886158d7565b6136ca6103e861364686896158d7565b60d36136f26103e86136dc888b6158d7565b6136e691906158c3565b612f90906101686158ab565b6137026103e8613646898c6158d7565b60405161371b979695949392919060d49060200161449a565b6040516020818303038152906040529150808061373790615974565b91505061360f565b50613802565b60005b866020015181101561380057816137656103e861362c84876158d7565b6137756103e861364685886158d7565b89516137809061179e565b604051602001613793949392919061477a565b604051602081830303815290604052915081603e8860400151602881106137ca57634e487b7160e01b600052603260045260246000fd5b016040516020016137dc9291906146c3565b604051602081830303815290604052915080806137f890615974565b915050613748565b505b95945050505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161385c84610ad1565b61386691906158f6565b6000838152600760205260409020549091508082146138b9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138fe906001906158f6565b6000838152600960205260408120546008805493945090928490811061393457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061396357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139a957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139d083610ad1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b613a138383613ca6565b613a2060008484846127e3565b6108185760405162461bcd60e51b815260040161076090615211565b3b151590565b600081604051602001613a559190614258565b60408051601f19818403018152919052805160209091012092915050565b60606000603e613a9d8460405180604001604052806002815260200161523160f01b815250612b44565b60288110613abb57634e487b7160e01b600052603260045260246000fd5b01603e613ae28560405180604001604052806002815260200161291960f11b815250612b44565b60288110613b0057634e487b7160e01b600052603260045260246000fd5b01603e613b278660405180604001604052806002815260200161523360f01b815250612b44565b60288110613b4557634e487b7160e01b600052603260045260246000fd5b01603e613b6c8760405180604001604052806002815260200161148d60f21b815250612b44565b60288110613b8a57634e487b7160e01b600052603260045260246000fd5b01604051602001613b9e9493929190614af7565b60408051601f198184030181528282019091526002825261523560f01b602083015291508190603e90613bd2908690612b44565b60288110613bf057634e487b7160e01b600052603260045260246000fd5b01603e613c178660405180604001604052806002815260200161291b60f11b815250612b44565b60288110613c3557634e487b7160e01b600052603260045260246000fd5b01603e613c5d876040518060400160405280600381526020016242474360e81b815250612b44565b60288110613c7b57634e487b7160e01b600052603260045260246000fd5b01604051602001613c8f9493929190614554565b60408051808303601f190181529190529392505050565b6001600160a01b038216613ccc5760405162461bcd60e51b81526004016107609061557f565b613cd5816110f3565b15613cf25760405162461bcd60e51b8152600401610760906152a9565b613cfe60008383612740565b6001600160a01b0382166000908152600360205260408120805460019290613d279084906158ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061014001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b6040518061028001604052806014905b6060815260200190600190039081613dea5790505090565b604080516101e0810190915260608152600e60208201613dea565b80356001600160a01b038116811461069457600080fd5b60008083601f840112613e45578081fd5b50813567ffffffffffffffff811115613e5c578182fd5b6020830191508360208083028501011115613e7657600080fd5b9250929050565b600060208284031215613e8e578081fd5b612b5482613e1d565b60008060408385031215613ea9578081fd5b613eb283613e1d565b9150613ec060208401613e1d565b90509250929050565b600080600060608486031215613edd578081fd5b613ee684613e1d565b9250613ef460208501613e1d565b9150604084013590509250925092565b60008060008060808587031215613f19578081fd5b613f2285613e1d565b93506020613f31818701613e1d565b935060408601359250606086013567ffffffffffffffff80821115613f54578384fd5b818801915088601f830112613f67578384fd5b813581811115613f7957613f796159cf565b604051601f8201601f1916810185018381118282101715613f9c57613f9c6159cf565b60405281815283820185018b1015613fb2578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215613fe2578182fd5b613feb83613e1d565b915060208301358015158114613fff578182fd5b809150509250929050565b6000806040838503121561401c578182fd5b61402583613e1d565b946020939093013593505050565b60008060208385031215614045578182fd5b823567ffffffffffffffff81111561405b578283fd5b61406785828601613e34565b90969095509350505050565b600060208284031215614084578081fd5b8135612b54816159e5565b6000602082840312156140a0578081fd5b8151612b54816159e5565b6000602082840312156140bc578081fd5b5035919050565b6000806000604084860312156140d7578283fd5b83359250602084013567ffffffffffffffff8111156140f4578283fd5b61410086828701613e34565b9497909650939450505050565b6000815180845261412581602086016020860161590d565b601f01601f19169290920160200192915050565b80546000906002810460018083168061415357607f831692505b602080841082141561417357634e487b7160e01b86526022600452602486fd5b8180156141875760018114614198576141c5565b60ff198616895284890196506141c5565b6141a18861589f565b60005b868110156141bd5781548b8201529085019083016141a4565b505084890196505b50505050505092915050565b7f222f3e3c666544726f70536861646f772064783d2238222064793d223822206681527f6c6f6f642d636f6c6f723d22233030303030302220666c6f6f642d6f7061636960208201527f74793d22312220737464446576696174696f6e3d2230222f3e3c2f66696c7465604082015268391f1e17b232b3399f60b91b606082015260690190565b6000825161426a81846020870161590d565b9190910192915050565b60008651614286818460208b0161590d565b86519083019061429a818360208b0161590d565b86519101906142ad818360208a0161590d565b85519101906142c081836020890161590d565b84519101906142d381836020880161590d565b01979650505050505050565b6000895160206142f28285838f0161590d565b8a51918401916143058184848f0161590d565b8a519201916143178184848e0161590d565b89519201916143298184848d0161590d565b885192019161433b8184848c0161590d565b875192019161434d8184848b0161590d565b865192019161435f8184848a0161590d565b8551920191614371818484890161590d565b919091019b9a5050505050505050505050565b60008a51614396818460208f0161590d565b8a51908301906143aa818360208f0161590d565b8a516143bc8183850160208f0161590d565b8a519290910101906143d2818360208d0161590d565b88516143e48183850160208d0161590d565b88519290910101906143fa818360208b0161590d565b865161440c8183850160208b0161590d565b865192909101019061442281836020890161590d565b8451614434818385016020890161590d565b9101019b9a5050505050505050505050565b60008651614458818460208b0161590d565b86519083019061446c818360208b0161590d565b019485525050602083019190915260601b6bffffffffffffffffffffffff1916604082015260540192915050565b600089516144ac818460208e0161590d565b6144b88184018b614139565b905088516144ca818360208d0161590d565b601760f91b910181815288519091906144ea816001850160208d0161590d565b6144f96001828501018a614139565b925050865161450c818460208b0161590d565b91909101908152845161452681600184016020890161590d565b61453560018284010186614139565b651e17bab9b29f60d11b81526006019c9b505050505050505050505050565b60008551614566818460208a0161590d565b61457281840187614139565b7f222f3e3c73746f70206f66667365743d22393625222073746f702d636f6c6f728152611e9160f11b602082015290506145af6022820186614139565b7f222f3e3c73746f70206f66667365743d2231303025222073746f702d636f6c6f815262391e9160e91b602082015290506145ed6023820185614139565b7f222f3e3c2f72616469616c4772616469656e743e3c2f646566733e00000000008152601b01979650505050505050565b6000845161463081846020890161590d565b601760f91b908301908152845161464e81600184016020890161590d565b7f2032353020323530292220786c696e6b3a687265663d222370732d000000000060019290910191820152835161468c81601c84016020880161590d565b7f222066696c6c3d22626c61636b222f3e3c2f6d61736b3e3c2f646566733e0000601c9290910191820152603a0195945050505050565b600083516146d581846020880161590d565b78111036b0b9b59e913ab9361411b338319491103334b6361e9160391b9083019081526147056019820185614139565b6211179f60e91b815260030195945050505050565b6000825161472c81846020870161590d565b7f3c726563742077696474683d2235303022206865696768743d223530302220669201918252507534b6361e913ab9361411b930b234b0b621239491179f60511b6020820152603601919050565b6000855161478c818460208a0161590d565b76078eae6ca40e8e4c2dce6ccdee4da7a44e4dee8c2e8ca5604b1b90830190815285516147c0816017840160208a0161590d565b601760f91b6017929091019182015284516147e281601884016020890161590d565b7f2032353020323530292220786c696e6b3a687265663d222370732d000000000060189290910191820152835161482081603384016020880161590d565b016033019695505050505050565b60008651614840818460208b0161590d565b76078eae6ca40e8e4c2dce6ccdee4da7a44e4dee8c2e8ca5604b1b9083019081528651614874816017840160208b0161590d565b601760f91b601792909101918201528551614896816018840160208a0161590d565b7f2032353020323530292220786c696e6b3a687265663d222370732d00000000006018929091019182015284516148d481603384016020890161590d565b78111036b0b9b59e913ab9361411b338319491103334b6361e9160391b60339290910191820152614908604c820185614139565b61111f60f11b815260020198975050505050505050565b600061492b8284614139565b7f3c726563742077696474683d2235303022206865696768743d2235303022206681527f696c7465723d2275726c282366696c746572424729222f3e000000000000000060208201526038019392505050565b60007f3c646566733e3c66696c7465722069643d22476c2220783d222d35302522207982527f3d222d353025222077696474683d223230302522206865696768743d2232303060208301527f25223e3c666554757262756c656e636520626173654672657175656e63793d2260408301528551614a02816060850160208a0161590d565b7f222f3e3c6665446973706c6163656d656e744d617020696e3d22536f757263656060918401918201526f23b930b83434b1911039b1b0b6329e9160811b60808201528551614a58816090840160208a0161590d565b7011179f1e3332a7b33339b2ba10323c9e9160791b609092909101918201528451614a8a8160a184016020890161590d565b651110323c1e9160d11b60a192909101918201528351614ab18160a784016020880161590d565b614abf60a7828401016141d1565b98975050505050505050565b6000630302e30360e41b82528251614aea81600485016020870161590d565b9190910160040192915050565b7f3c646566733e3c72616469616c4772616469656e742069643d2272616469616c81527f4247222063783d22302e38222063793d22302e382220723d22302e362220667860208201527f3d22302e3432222066793d22302e343222207370726561644d6574686f643d2260408201527f706164223e3c73746f70206f66667365743d223025222073746f702d636f6c6f606082015262391e9160e91b60808201526000614ba76083830187614139565b7f222f3e3c73746f70206f66667365743d22343025222073746f702d636f6c6f728152611e9160f11b60208201819052614be46022830188614139565b91507f222f3e3c73746f70206f66667365743d22373025222073746f702d636f6c6f728252806020830152614c1c6022830187614139565b91507f222f3e3c73746f70206f66667365743d22393025222073746f702d636f6c6f728252806020830152614c546022830186614139565b7f222f3e3c73746f70206f66667365743d22393425222073746f702d636f6c6f7281526020810191909152602201979650505050505050565b717b226e616d65223a2022466c6f776572202360701b81528351600090614cbb81601285016020890161590d565b7f222c20226465736372697074696f6e223a2022466c6f776572732061726520666012918401918201527f756c6c79206f6e2d636861696e2c2072616e646f6d6c792067656e657261746560328201527f6420756e6971756520666c6f776572732e20466f7220796f752c206f7220612060528201527f7370656369616c20736f6d656f6e6520696e20796f7572206c6966652e22000060728201528451614d6a81609084016020890161590d565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736090929091019182015263194d8d0b60e21b60b08201528351614db58160b484016020880161590d565b61227d60f01b60b4929091019182015260b60195945050505050565b60006726aaaa20aa24a7a760c11b82528251614df481600885016020870161590d565b9190910160080192915050565b600061181760f11b82528251614e1e81600285016020870161590d565b9190910160020192915050565b60006204e4f560ec1b82528251614e4981600385016020870161590d565b9190910160030192915050565b6000620302e360ec1b82528251614e4981600385016020870161590d565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251614eac81601d85016020870161590d565b91909101601d0192915050565b7f3c726563742077696474683d2235303022206865696768743d2235303022206681526434b6361e9160d91b60208201526000614ef96025830184614139565b631110179f60e11b81526004019392505050565b6000651e3232b3399f60d11b82528551614f2e816006850160208a0161590d565b672069643d2270732d60c01b6006918401918201528551614f5681600e840160208a0161590d565b61011160f51b600e92909101918201528451614f7981601084016020890161590d565b7f2f3e3c6d61736b2069643d22667063223e3c72656374206865696768743d2231601092909101918201527f303025222077696474683d2231303025222066696c6c3d22776869746522202f60308201527f3e3c757365207472616e73666f726d203d2022726f74617465280000000000006050820152835161500381606a84016020880161590d565b01606a019695505050505050565b6000602d60f81b8252825161502d81600185016020870161590d565b9190910160010192915050565b60006a504554414c205354594c4560a81b8252825161506081600b85016020870161590d565b91909101600b0192915050565b60006e119313d5d154881053925350551151608a1b8252825161509781600f85016020870161590d565b91909101600f0192915050565b60006e4241434b47524f554e44205459504560881b8252825161509781600f85016020870161590d565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906151159083018461410d565b9695505050505050565b901515815260200190565b92151583526020830191909152604082015260600190565b600060208252612b54602083018461410d565b6020808252602b908201527f4275796572206e6f742077686974656c697374656420666f722074686973207060408201526a7269766174652073616c6560a81b606082015260800190565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e4455504c49434154455f454e54525960881b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526018908201527f53616c6520697320706175736564207269676874206e6f770000000000000000604082015260600190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526031908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736040820152701034b71030903a3930b739b0b1ba34b7b760791b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601c908201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526029908201527f43616e6e6f742065786365656420616c6c6f747465642070726573616c65206d6040820152681a5b9d0818dbdd5b9d60ba1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602c908201527f596f752063616e27742065786365656420746869732077616c6c65742773206d60408201526b1a5b9d1a5b99c81b1a5b5a5d60a21b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b90815260200190565b60009081526020902090565b600082198211156158be576158be6159a3565b500190565b6000826158d2576158d26159b9565b500490565b60008160001904831182151516156158f1576158f16159a3565b500290565b600082821015615908576159086159a3565b500390565b60005b83811015615928578181015183820152602001615910565b83811115610e305750506000910152565b60028104600182168061594d57607f821691505b6020821081141561596e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415615988576159886159a3565b5060010190565b60008261599e5761599e6159b9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4757600080fdfe2c202261747472696275746573223a205b7b2274726169745f74797065223a2022506574616c205374796c65222c2276616c7565223a2022227d2c207b2274726169745f74797065223a2022506574616c20436f6c6f72222c2276616c7565223a20227d2c207b2274726169745f74797065223a20224247204f7665726c6179222c2276616c7565223a20223c646566733e3c66696c74657220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667222069643d22476c2220783d222d3530252220793d222d353025222077696474683d223230302522206865696768743d2232303025223e3c666544726f70536861646f772064783d2238222064793d22382220666c6f6f642d636f6c6f723d22233030303030302220666c6f6f642d6f7061636974793d22312220737464446576696174696f6e3d2230222f3e3c2f66696c7465723e3c2f646566733e7d2c207b2274726169745f74797065223a20224e6f2e206f6620506574616c73222c2276616c7565223a203c7376672076696577426f783d223020302035303020353030222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b223e227d2c207b2274726169745f74797065223a20225370696e222c2276616c7565223a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c726563742069643d227265637422207374796c653d226d69782d626c656e642d6d6f64653a6f7665726c617922206f7061636974793d222e32222077696474683d223130302522206865696768743d2231303025222066696c6c3d223c672066696c7465723d2275726c2823476c2922207374726f6b653d222330303030303022207374726f6b652d77696474683d2234223e227d2c207b2274726169745f74797065223a202242472054797065222c2276616c7565223a2022227d2c207b2274726169745f74797065223a2022436f726520436f6c6f72222c2276616c7565223a2022227d2c207b2274726169745f74797065223a2022436f72652053697a65222c2276616c7565223a20227d2c207b2274726169745f74797065223a20224d75746174696f6e222c2276616c7565223a20227d2c207b2274726169745f74797065223a2022424720436f6c6f72222c2276616c7565223a2022a26469706673582212203130e532749dd5b00bc117e3b397a185ff15d7a229cd566b0bc47638f822b72964736f6c6343000800003320643d224d323530203138342e354c323735203231324c3237342e3034203232312e303238433237332e3037203233302e313432203236372e383739203233382e323732203236302e3032203234322e393838433235332e383533203234362e363838203234362e313437203234362e363838203233392e3938203234322e393838433233322e313231203233382e323732203232362e3933203233302e313432203232352e3936203232312e3032384c323235203231324c323530203138342e355a223c66696c74657220783d22302220793d2230222077696474683d223130302522206865696768743d2231303025222069643d2266696c7465724247223e3c666554757262756c656e636520747970653d2274757262756c656e63652220626173654672657175656e63793d22302e3030373220302e303036382220726573756c743d2274757262756c656e6365223e3c2f666554757262756c656e63653e3c2f66696c7465723e20643d224d3231382e363231203230372e323432433231342e303437203139382e303935203231382e353432203138322e3031203232382e313935203137332e363332433234302e383134203136322e363739203235392e313835203136322e363739203237312e383035203137332e363332433238312e343537203138322e3031203238352e393532203139382e303935203238312e333739203230372e3234324c32353620323430483234344c3231382e363231203230372e3234325a2220643d224d3233312e383339203138372e343835433232392e333439203137352e393137203233382e31363620313635203235302031363556313635433236312e38333420313635203237302e363531203137352e393137203236382e313631203138372e3438354c3235372e323632203233382e313334433235362e353236203234312e353536203235332e3520323434203235302032343456323434433234362e3520323434203234332e343734203234312e353536203234322e373338203233382e3133344c3233312e383339203138372e3438355a223c66696c74657220783d22302220793d2230222077696474683d223130302522206865696768743d2231303025222069643d2266696c7465724247223e3c666554757262756c656e636520626173654672657175656e63793d22302e30303720302e30303622206e756d4f6374617665733d2232223e3c2f666554757262756c656e63653e203c6665436f6c6f724d61747269782076616c7565733d22302e35303020302e39333820302e38313920302e31353120302e38343920302e33373720302e31353820302e32343120302e39363920302e37353820302e36323920302e33373420302e36363920302e35303720302e37333320302e34363820302e34393620302e30393520302e36383820302e363136223e3c2f6665436f6c6f724d61747269783e203c6665436f6d706f6e656e745472616e736665723e3c666546756e635220747970653d227461626c6522207461626c6556616c7565733d22302e31383520302e34313720302e34383120302e30333820302e31313720302e37363820302e37373820302e32323720302e35333920302e36373420302e31393720302e393733223e3c2f666546756e63523e3c666546756e634720747970653d227461626c6522207461626c6556616c7565733d22302e33343820302e34313420302e36363320302e36333420302e30313320302e37343120302e36323920302e32303520302e30363820302e32313420302e37373920302e393634223e3c2f666546756e63473e3c666546756e634220747970653d227461626c6522207461626c6556616c7565733d22302e31393920302e36393520302e303031202e37393920302e36393220302e313630202e37333420302e36393120302e393134223e3c2f666546756e63423e203c2f6665436f6d706f6e656e745472616e736665723e3c2f66696c7465723e20643d224d323736203230364332363620323432203235302032343220323530203234324332353020323432203233342032343220323234203230364332313720313830203235302031363620323530203136364332353020313636203238332031383020323736203230365a2220643d224d323830203230382e31363543323830203139322e303234203235342e393833203138382e38393420323530203137322e353238433234352e303137203138382e38393420323230203139322e30323420323230203230382e31363543323230203232372e343034203233302e393039203234332032353020323433433236392e3039312032343320323830203232372e34303420323830203230382e3136355a2220643d224d3234392e30333420323434433236362e34363220323434203237312e38203232322e303239203236322e343435203231332e333533433235332e3039203230342e363737203232392e35373520313832203232392e35373520313832433232352e363434203138372e36303120323233203230342e343320323233203231332e33353343323233203233302e323739203233312e36303620323434203234392e303334203234345a223c616e696d6174655472616e73666f726d206174747269627574654e616d653d227472616e73666f726d2220626567696e3d22307322206475723d2238732220747970653d22726f74617465222066726f6d3d223c66696c74657220783d22302220793d2230222077696474683d223130302522206865696768743d2231303025222069643d2266696c7465724247223e3c666554757262756c656e636520626173654672657175656e63793d22302e30303820302e30303422206e756d4f6374617665733d2232223e3c2f666554757262756c656e63653e203c6665436f6c6f724d61747269782076616c7565733d22302e38393120302e36393320302e30313120302e34353720302e38303020302e36303520302e37393020302e37333720302e34313720302e38353120302e32373820302e34333220302e38313820302e33303720302e32343420302e38323120302e39383420302e31373720302e31363520302e373432223e3c2f6665436f6c6f724d61747269783e203c6665436f6d706f6e656e745472616e736665723e3c666546756e635220747970653d227461626c6522207461626c6556616c7565733d22302e36373420302e38303020302e33313420302e33313720302e38343520302e37323520302e30373520302e37313820302e31363420302e37373520302e30373820302e303337223e3c2f666546756e63523e3c666546756e634720747970653d227461626c6522207461626c6556616c7565733d22302e35323720302e34353920302e38383120302e30353820302e33393120302e33393020302e39323720302e32373020302e32323420302e35343720302e32383620302e303537223e3c2f666546756e63473e3c666546756e634220747970653d227461626c6522207461626c6556616c7565733d22302e34313020302e34323220302e313239202e36363420302e36303620302e313830202e34323220302e30383420302e323534223e3c2f666546756e63423e203c2f6665436f6d706f6e656e745472616e736665723e3c2f66696c7465723e20643d224d323735203230314c323530203234384c323235203230314c323530203135332e354c323735203230315a2220643d224d3237302e353035203232332e3534374c3236342e383438203232392e3230344c3236342e383438203232392e3230354c3236342e383438203232392e3230354c3234392e393939203234342e3035344c3233352e313439203232392e3230354c3233352e313439203232392e323035433232362e393438203232312e303034203232362e393438203230372e373037203233352e313439203139392e3530364c3233352e313439203139392e3530364c3234302e383036203139332e38354c3234302e383036203139332e3834394c3235352e363535203137394c3237302e333638203139332e373134433237302e343134203139332e373539203237302e343539203139332e383034203237302e353035203139332e383439433237382e373036203230322e3035203237382e373036203231352e333436203237302e353035203232332e3534375a2220643d224d3233302e303234203137312e393938433233302e333836203136302e393937203234312e30343220313735203235302e30313220313735433235382e3938332031373520323730203136302e39393720323730203137312e3939384332373020313833203236322e353436203233382e373531203236322e353436203233382e373531433236322e333935203234312e363639203235362e38323820323434203235302e30313220323434433234332e31393620323434203233372e363239203234312e363639203233372e343738203233382e373531433233372e343738203233382e373531203232392e36363320313833203233302e303234203137312e3939385a2220643d224d3234342e3632203137322e353036433234342e393136203137312e313236203234372e30393520313730203234392e3731382031373056313730433235322e33343220313730203235342e353232203137312e313236203235342e383237203137322e353034433235352e363038203137362e303435203235382e303937203138332e313039203236362e303135203139322e3232433237332e3836203230312e323437203237362e393631203231312e353138203237302e353435203232302e3835364c3235372e33393120323430483234322e3737364c3232392e343539203232302e363139433232332e313335203231312e343134203232362e303437203230312e323837203233332e3633203139322e333533433234312e343136203138332e313739203234332e383536203137362e303633203234342e3632203137322e3530365a223c66696c74657220783d22302220793d2230222077696474683d223130302522206865696768743d2231303025222069643d2266696c7465724247223e3c666554757262756c656e636520747970653d226672616374616c4e6f6973652220626173654672657175656e63793d22302e303135222f3e3c6665436f6d706f6e656e745472616e736665723e3c666546756e634120747970653d22646973637265746522207461626c6556616c7565733d223020312030222f3e3c2f6665436f6d706f6e656e745472616e736665723e3c6665436f6c6f724d61747269782076616c7565733d22302030203020312030203020302030203120302030203020302031203020302030203020302031222f3e3c2f66696c7465723e3c66696c74657220783d22302220793d2230222077696474683d223130302522206865696768743d2231303025222069643d2266696c7465724247223e3c666554757262756c656e636520626173654672657175656e63793d22302e30303820302e30303722206e756d4f6374617665733d2232223e3c2f666554757262756c656e63653e203c6665436f6c6f724d61747269782076616c7565733d22302e32323120302e39353220302e30323820302e35363320302e31323020302e31383020302e37343920302e35383020302e32313120302e37383820302e30313920302e33343120302e39343820302e39393820302e38303920302e36383520302e30333320302e35333820302e36353920302e333832223e3c2f6665436f6c6f724d61747269783e203c6665436f6d706f6e656e745472616e736665723e3c666546756e635220747970653d227461626c6522207461626c6556616c7565733d22302e33363520302e38393320302e38303320302e30313720302e34373220302e30383320302e34373320302e34383720302e32333320302e38393920302e37373620302e323737223e3c2f666546756e63523e3c666546756e634720747970653d227461626c6522207461626c6556616c7565733d22302e38353120302e35383420302e30343320302e39313220302e36333220302e36393520302e36353120302e35363320302e37373620302e33393420302e30343020302e313032223e3c2f666546756e63473e3c666546756e634220747970653d227461626c6522207461626c6556616c7565733d22302e30343520302e30343520302e373039202e39333720302e35393420302e303538202e33323420302e36383320302e343436223e3c2f666546756e63423e203c2f6665436f6d706f6e656e745472616e736665723e3c2f66696c7465723e3c66696c74657220783d22302220793d2230222077696474683d223130302522206865696768743d2231303025222069643d2266696c7465724247223e3c666554757262756c656e636520626173654672657175656e63793d22302e303820302e303822206e756d4f6374617665733d2232223e3c2f666554757262756c656e63653e3c6665436f6c6f724d61747269782076616c7565733d2230203020302039202d362030203020302039202d362030203020302039202d36203020302030203020302e3722202f3e3c2f66696c7465723e20643d224d3236362032313843323636203233352e363733203235382e383337203234302032353020323430433234312e3136332032343020323334203233352e363733203233342032313843323334203230302e333237203234342e35203138362032353020313836433235352e352031383620323636203230302e33323720323636203231385a2220323530203235302220726570656174436f756e743d22696e646566696e697465222f3e20643d224d3237312e393334203231312e3138324c323530203234384c3232382e303636203231312e313832433232342e333236203230342e393034203232342e333038203139372e303835203232382e303139203139302e37394c3234342e383331203136322e323639433234372e313532203135382e333331203235322e383438203135382e333331203235352e313639203136322e3236394c3237312e393831203139302e3739433237352e363932203139372e303835203237352e363734203230342e393034203237312e393334203231312e3138325a223c66696c74657220783d22302220793d2230222077696474683d223130302522206865696768743d2231303025222069643d2266696c7465724247223e3c666554757262756c656e636520626173654672657175656e63793d22302e30303820302e30303122206e756d4f6374617665733d2232223e3c2f666554757262756c656e63653e203c6665436f6c6f724d61747269782076616c7565733d22302e31363820302e32393320302e38353320302e30303920302e33323120302e39323920302e37343420302e30323920302e35383120302e34383620302e35313720302e37393920302e38323120302e37343420302e30373220302e35313320302e38363820302e34383820302e32373320302e363839223e3c2f6665436f6c6f724d61747269783e203c6665436f6d706f6e656e745472616e736665723e3c666546756e635220747970653d227461626c6522207461626c6556616c7565733d22302e30353820302e34313920302e31353520302e32353220302e35353020302e36353020302e39323620302e39333720302e34383020302e33323620302e32393820302e333731223e3c2f666546756e63523e3c666546756e634720747970653d227461626c6522207461626c6556616c7565733d22302e36333220302e37363720302e34333720302e32333920302e30353920302e32333120302e39303120302e31313620302e30343920302e30373920302e32323720302e363137223e3c2f666546756e63473e3c666546756e634220747970653d227461626c6522207461626c6556616c7565733d22302e32303120302e35383920302e323939202e37313020302e31393220302e333834202e30353220302e31303020302e383938223e3c2f666546756e63423e203c2f6665436f6d706f6e656e745472616e736665723e3c2f66696c7465723e2063783d22323530222063793d22323137222072783d223235222072793d2232372220643d224d3233362e3632203137382e393836433233362e323832203137312e333634203234322e333720313635203235302031363556313635433235372e363320313635203236332e373138203137312e333634203236332e3338203137382e3938364c3236302e393233203233342e343433433236302e363837203233392e373838203235362e32383420323434203235302e39333320323434483234392e303637433234332e37313620323434203233392e333133203233392e373838203233392e303737203233342e3434334c3233362e3632203137382e3938365a2220643d224d3233332e393437203232372e393437433232362e313835203232302e313835203232382e343036203230362e3936203233362e393332203230302e303435433234332e393933203139342e333138203235302e333636203138372e3132203235302e343833203137392e373338433235302e363532203136392e303336203236332e363735203138352e313539203237322e393632203139382e303531433237382e343833203230352e373135203237372e3336203231362e313638203237302e363832203232322e3834374c3234392e373634203234332e3736344c3233332e393437203232372e3934375a2220643d224d3232352e333334203137322e353238433233302e303037203136362e353538203234312e373933203137392e393339203234352e393832203138362e323539433234392e333133203139312e323832203235302e363837203139312e323832203235342e303138203138362e323539433235382e323037203137392e393339203236392e393933203136362e353538203237342e363636203137322e353238433237392e363438203137382e38393520323830203139382e30323420323830203230382e31363543323830203232372e343034203237322e303931203234332032353020323433433232372e3930392032343320323230203232372e34303420323230203230382e31363543323230203139382e303234203232302e333532203137382e383935203232352e333334203137322e3532385a2220643d224d3234392e35203233392e313435433235362e353238203233332e32373520323631203232342e34343620323631203231342e35373243323631203230342e363939203235362e353238203139352e3837203234392e3520313930433234322e343732203139352e383720323338203230342e36393920323338203231342e35373243323338203232342e343436203234322e343732203233332e323735203234392e35203233392e3134355a22

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637bddd65b11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105d7578063e5da297e146105ec578063e985e9c51461060c578063f2295b1d1461062c578063f2fde38b1461064c57610225565b8063a22cb4651461054f578063b6f00dbd1461056f578063b88d4fde14610584578063c49b3d54146105a4578063c87b56dd146105b757610225565b806391b7f5ed116100f257806391b7f5ed146104c3578063937b9e81146104e357806395d89b4114610512578063a035b1fe14610527578063a108f5291461053c57610225565b80637bddd65b14610471578063853828b6146104915780638ad8f390146104995780638da5cb5b146104ae57610225565b80634230baee116101b15780636352211e116101755780636352211e146103f2578063639814e01461041257806370a0823114610427578063715018a6146104475780637501f7411461045c57610225565b80634230baee1461035d57806342842e0e146103725780634f6ccce714610392578063547520fe146103b2578063548db174146103d257610225565b8063095ea7b3116101f8578063095ea7b3146102c457806318160ddd146102e65780632316b4da1461030857806323b872dd1461031d5780632f745c591461033d57610225565b806301ffc9a71461022a57806304737a011461026057806306fdde0314610275578063081812fc14610297575b600080fd5b34801561023657600080fd5b5061024a610245366004614073565b61066c565b604051610257919061511f565b60405180910390f35b34801561026c57600080fd5b5061024a610699565b34801561028157600080fd5b5061028a6106a7565b6040516102579190615142565b3480156102a357600080fd5b506102b76102b23660046140ab565b610739565b60405161025791906150ce565b3480156102d057600080fd5b506102e46102df36600461400a565b610785565b005b3480156102f257600080fd5b506102fb61081d565b6040516102579190615896565b34801561031457600080fd5b506102e4610823565b34801561032957600080fd5b506102e4610338366004613ec9565b61086f565b34801561034957600080fd5b506102fb61035836600461400a565b6108a7565b34801561036957600080fd5b506102fb6108fc565b34801561037e57600080fd5b506102e461038d366004613ec9565b610902565b34801561039e57600080fd5b506102fb6103ad3660046140ab565b61091d565b3480156103be57600080fd5b506102e46103cd3660046140ab565b610978565b3480156103de57600080fd5b506102e46103ed366004614033565b6109bc565b3480156103fe57600080fd5b506102b761040d3660046140ab565b610a96565b34801561041e57600080fd5b506102fb610acb565b34801561043357600080fd5b506102fb610442366004613e7d565b610ad1565b34801561045357600080fd5b506102e4610b15565b34801561046857600080fd5b506102fb610b60565b34801561047d57600080fd5b506102e461048c3660046140ab565b610b66565b6102e4610baa565b3480156104a557600080fd5b506102e4610c21565b3480156104ba57600080fd5b506102b7610c74565b3480156104cf57600080fd5b506102e46104de3660046140ab565b610c83565b3480156104ef57600080fd5b506105036104fe366004613e7d565b610cc7565b6040516102579392919061512a565b34801561051e57600080fd5b5061028a610cfd565b34801561053357600080fd5b506102fb610d0c565b6102e461054a36600461400a565b610d12565b34801561055b57600080fd5b506102e461056a366004613fd0565b610d20565b34801561057b57600080fd5b5061024a610dee565b34801561059057600080fd5b506102e461059f366004613f04565b610df7565b6102e46105b23660046140ab565b610e36565b3480156105c357600080fd5b5061028a6105d23660046140ab565b610e4a565b3480156105e357600080fd5b506102fb610ed3565b3480156105f857600080fd5b506102fb610607366004613e7d565b610ed9565b34801561061857600080fd5b5061024a610627366004613e97565b610ef4565b34801561063857600080fd5b506102e46106473660046140c3565b610f22565b34801561065857600080fd5b506102e4610667366004613e7d565b611045565b60006001600160e01b0319821663780e9d6360e01b14806106915750610691826110b3565b90505b919050565b601154610100900460ff1681565b6060600080546106b690615939565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290615939565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000610744826110f3565b6107695760405162461bcd60e51b8152600401610760906155eb565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079082610a96565b9050806001600160a01b0316836001600160a01b031614156107c45760405162461bcd60e51b8152600401610760906156ec565b806001600160a01b03166107d6611110565b6001600160a01b031614806107f257506107f281610627611110565b61080e5760405162461bcd60e51b8152600401610760906153d0565b6108188383611114565b505050565b60085490565b61082b611110565b6001600160a01b031661083c610c74565b6001600160a01b0316146108625760405162461bcd60e51b815260040161076090615637565b6011805461ff0019169055565b61088061087a611110565b82611182565b61089c5760405162461bcd60e51b815260040161076090615776565b610818838383611207565b60006108b283610ad1565b82106108d05760405162461bcd60e51b8152600401610760906151c6565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b600f5481565b61081883838360405180602001604052806000815250610df7565b600061092761081d565b82106109455760405162461bcd60e51b8152600401610760906157c7565b6008828154811061096657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610980611110565b6001600160a01b0316610991610c74565b6001600160a01b0316146109b75760405162461bcd60e51b815260040161076090615637565b600e55565b6109c4611110565b6001600160a01b03166109d5610c74565b6001600160a01b0316146109fb5760405162461bcd60e51b815260040161076090615637565b60005b81811015610818576000838383818110610a2857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610a3d9190613e7d565b90506001600160a01b038116610a655760405162461bcd60e51b8152600401610760906151a0565b6001600160a01b03166000908152601360205260409020805460ff1916905580610a8e81615974565b9150506109fe565b6000818152600260205260408120546001600160a01b0316806106915760405162461bcd60e51b815260040161076090615477565b60105481565b60006001600160a01b038216610af95760405162461bcd60e51b81526004016107609061542d565b506001600160a01b031660009081526003602052604090205490565b610b1d611110565b6001600160a01b0316610b2e610c74565b6001600160a01b031614610b545760405162461bcd60e51b815260040161076090615637565b610b5e6000611334565b565b600e5481565b610b6e611110565b6001600160a01b0316610b7f610c74565b6001600160a01b031614610ba55760405162461bcd60e51b815260040161076090615637565b601055565b610bb2611110565b6001600160a01b0316610bc3610c74565b6001600160a01b031614610be95760405162461bcd60e51b815260040161076090615637565b610bf1611110565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050610b5e57600080fd5b610c29611110565b6001600160a01b0316610c3a610c74565b6001600160a01b031614610c605760405162461bcd60e51b815260040161076090615637565b6011805460ff19811660ff90911615179055565b600b546001600160a01b031690565b610c8b611110565b6001600160a01b0316610c9c610c74565b6001600160a01b031614610cc25760405162461bcd60e51b815260040161076090615637565b600d55565b6001600160a01b03166000908152601360209081526040808320546014835281842054601590935292205460ff90921692909190565b6060600180546106b690615939565b600d5481565b610d1c8282611386565b5050565b610d28611110565b6001600160a01b0316826001600160a01b03161415610d595760405162461bcd60e51b815260040161076090615324565b8060056000610d66611110565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610daa611110565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610de2919061511f565b60405180910390a35050565b60115460ff1681565b610e08610e02611110565b83611182565b610e245760405162461bcd60e51b815260040161076090615776565b610e30848484846115d9565b50505050565b610e47610e41611110565b82611386565b50565b60606000610e578361160c565b90506000610ea8610e678561179e565b610e70846118b9565b610e82610e7d86896121c7565b6125b3565b604051602001610e9493929190614c8d565b6040516020818303038152906040526125b3565b905080604051602001610ebb9190614e74565b60408051808303601f19018152919052949350505050565b600c5481565b6001600160a01b031660009081526012602052604090205490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2a611110565b6001600160a01b0316610f3b610c74565b6001600160a01b031614610f615760405162461bcd60e51b815260040161076090615637565b60005b81811015610e30576000838383818110610f8e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fa39190613e7d565b90506001600160a01b038116610fcb5760405162461bcd60e51b8152600401610760906151a0565b6001600160a01b03811660009081526013602052604090205460ff16156110045760405162461bcd60e51b8152600401610760906153a7565b6001600160a01b03166000908152601360209081526040808320805460ff19166001179055601590915290208490558061103d81615974565b915050610f64565b61104d611110565b6001600160a01b031661105e610c74565b6001600160a01b0316146110845760405162461bcd60e51b815260040161076090615637565b6001600160a01b0381166110aa5760405162461bcd60e51b815260040161076090615263565b610e4781611334565b60006001600160e01b031982166380ac58cd60e01b14806110e457506001600160e01b03198216635b5e139f60e01b145b80610691575061069182612727565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061114982610a96565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061118d826110f3565b6111a95760405162461bcd60e51b81526004016107609061535b565b60006111b483610a96565b9050806001600160a01b0316846001600160a01b031614806111ef5750836001600160a01b03166111e484610739565b6001600160a01b0316145b806111ff57506111ff8185610ef4565b949350505050565b826001600160a01b031661121a82610a96565b6001600160a01b0316146112405760405162461bcd60e51b81526004016107609061566c565b6001600160a01b0382166112665760405162461bcd60e51b8152600401610760906152e0565b611271838383612740565b61127c600082611114565b6001600160a01b03831660009081526003602052604081208054600192906112a59084906158f6565b90915550506001600160a01b03821660009081526003602052604081208054600192906112d39084906158ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60115460ff16156113a95760405162461bcd60e51b8152600401610760906154c0565b600c546113b461081d565b106113d15760405162461bcd60e51b81526004016107609061585f565b600c54816113dd61081d565b6113e791906158ab565b11156114055760405162461bcd60e51b8152600401610760906154f7565b600e548111156114275760405162461bcd60e51b81526004016107609061552e565b600081116114475760405162461bcd60e51b8152600401610760906156b5565b601054336000908152601260205260409020546114659083906158ab565b11156114835760405162461bcd60e51b815260040161076090615813565b3481600d5461149291906158d7565b146114af5760405162461bcd60e51b8152600401610760906155b4565b601154610100900460ff161561155f573360009081526013602052604090205460ff166114ee5760405162461bcd60e51b815260040161076090615155565b336000908152601560209081526040808320546014909252909120546115159083906158ab565b11156115335760405162461bcd60e51b81526004016107609061572d565b3360009081526014602052604090205461154e9082906158ab565b336000908152601460205260409020555b60005b81811015610818576000600f54600161157b91906158ab565b905061158784826127c9565b6001600f600082825461159a91906158ab565b90915550503360009081526012602052604081208054600192906115bf9084906158ab565b909155508291506115d1905081615974565b915050611562565b6115e4848484611207565b6115f0848484846127e3565b610e305760405162461bcd60e51b815260040161076090615211565b611614613d85565b61161c613d85565b611625836128fe565b8082526116a79084906116379061179e565b6040516020016116479190614e2b565b60405160208183030381529060405260b084600001516011811061167b57634e487b7160e01b600052603260045260246000fd5b0154845160c190601181106116a057634e487b7160e01b600052603260045260246000fd5b0154612add565b8160200181815250506116d5836040518060400160405280600381526020016250454360e81b815250612b44565b8160400181815250506117038360405180604001604052806003815260200162434f4360e81b815250612b44565b606082015261171183612b5b565b608082015260408051808201909152600381526242474360e81b602082015261173b908490612b44565b60a08201526040805180820190915260038152624f564360e81b6020820152611765908490612b44565b60c082015261177383612b8c565b60e082015261178183612c54565b61010082015261179083612d36565b151561012082015292915050565b6060816117c357506040805180820190915260018152600360fc1b6020820152610694565b8160005b81156117ed57806117d781615974565b91506117e69050600a836158c3565b91506117c7565b60008167ffffffffffffffff81111561181657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611840576020820181803683370190505b5090505b84156111ff576118556001836158f6565b9150611862600a8661598f565b61186d9060306158ab565b60f81b81838151811061189057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118b2600a866158c3565b9450611844565b60606118c3613dda565b6040518060600160405280603881526020016159fc6038913981528251602d906011811061190157634e487b7160e01b600052603260045260246000fd5b01805461190d90615939565b80601f016020809104026020016040519081016040528092919081815260200182805461193990615939565b80156119865780601f1061195b57610100808354040283529160200191611986565b820191906000526020600020905b81548152906001019060200180831161196957829003601f168201915b5050505050816001601481106119ac57634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060600160405280602b8152602001615a34602b913981600260200201526040830151606690602881106119fb57634e487b7160e01b600052603260045260246000fd5b018054611a0790615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3390615939565b8015611a805780601f10611a5557610100808354040283529160200191611a80565b820191906000526020600020905b815481529060010190602001808311611a6357829003601f168201915b505050505081600360148110611aa657634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060600160405280602a8152602001615d13602a91396080820152606083015160669060288110611af257634e487b7160e01b600052603260045260246000fd5b018054611afe90615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2a90615939565b8015611b775780601f10611b4c57610100808354040283529160200191611b77565b820191906000526020600020905b815481529060010190602001808311611b5a57829003601f168201915b505050505081600560148110611b9d57634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806060016040528060288152602001615d3d6028913981600460200201526080830151611bd49061179e565b60a08201526040805160608101909152602b808252615b54602083013960c08201526020830151611c049061179e565b60e08201526101008301511580611c2057508261010001516001145b15611d5e57604051806060016040528060278152602001615d8d6027913961010082015260a083015160669060288110611c6a57634e487b7160e01b600052603260045260246000fd5b018054611c7690615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca290615939565b8015611cef5780601f10611cc457610100808354040283529160200191611cef565b820191906000526020600020905b815481529060010190602001808311611cd257829003601f168201915b505050505081600960148110611d1557634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806040016040528060018152602001601160f91b81525081600a60148110611d5857634e487b7160e01b600052603260045260246000fd5b60200201525b604051806060016040528060298152602001615a5f6029913961016082015260c083015160669060288110611da357634e487b7160e01b600052603260045260246000fd5b018054611daf90615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddb90615939565b8015611e285780601f10611dfd57610100808354040283529160200191611e28565b820191906000526020600020905b815481529060010190602001808311611e0b57829003601f168201915b505050505081600c60148110611e4e57634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806060016040528060288152602001615d65602891396101a082015260e083015160169060078110611e9b57634e487b7160e01b600052603260045260246000fd5b018054611ea790615939565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed390615939565b8015611f205780601f10611ef557610100808354040283529160200191611f20565b820191906000526020600020905b815481529060010190602001808311611f0357829003601f168201915b505050505081600e60148110611f4657634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806060016040528060248152602001615bf4602491396101e0820152610120830151611f9a576040518060400160405280600581526020016446616c736560d81b815250611fb8565b604051806040016040528060048152602001635472756560e01b8152505b61020082015260408051606081019091526027808252615cec60208301396102208201526101008301516024906009811061200357634e487b7160e01b600052603260045260246000fd5b01805461200f90615939565b80601f016020809104026020016040519081016040528092919081815260200182805461203b90615939565b80156120885780601f1061205d57610100808354040283529160200191612088565b820191906000526020600020905b81548152906001019060200180831161206b57829003601f168201915b5050505050816012601481106120ae57634e487b7160e01b600052603260045260246000fd5b6020020181905250604051806040016040528060058152602001640113eae96160dd1b815250816013601481106120f557634e487b7160e01b600052603260045260246000fd5b602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01516101008b0151965160009a61213f9a99989101614384565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a015196985061218c978997906020016142df565b60408051808303601f1901815290829052610200840151610220850151610240860151610260870151939550610ebb94869490602001614274565b60606121d1613e02565b6040518060a0016040528060758152602001615b7f6075913981526121f68484612d6f565b81600160200201819052506040518060800160405280605d8152602001615c58605d9139608082015260c0840151603e906028811061224557634e487b7160e01b600052603260045260246000fd5b01805461225190615939565b80601f016020809104026020016040519081016040528092919081815260200182805461227d90615939565b80156122ca5780601f1061229f576101008083540402835291602001916122ca565b820191906000526020600020905b8154815290600101906020018083116122ad57829003601f168201915b5050505050816005600f81106122f057634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060400160405280600381526020016211179f60e91b815250816006600f811061233557634e487b7160e01b600052603260045260246000fd5b60200201526123448484612edd565b60e082015260408051606081019091526037808252615cb56020830139610100820152612370846133f1565b61012082015260408051808201909152601d81527f3c636972636c652063783d22323530222063793d223235302220723d22000000602082015261014082015260808401516123be9061179e565b61016082015260408051808201909152600881526711103334b6361e9160c11b60208201526101808201526060840151603e906028811061240f57634e487b7160e01b600052603260045260246000fd5b01805461241b90615939565b80601f016020809104026020016040519081016040528092919081815260200182805461244790615939565b80156124945780601f1061246957610100808354040283529160200191612494565b820191906000526020600020905b81548152906001019060200180831161247757829003601f168201915b505050505081600d600f81106124ba57634e487b7160e01b600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020016c11179f1e17b39f1e17b9bb339f60991b81525081600e600f811061250957634e487b7160e01b600052603260045260246000fd5b602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a0151955160009961254d99989791016142df565b60408051808303601f19018152908290526101008401516101208501516101408601516101608701516101808801516101a08901516101c08a015196985061259a978997906020016142df565b60408051808303601f1901815291905295945050505050565b8051606090806125d3575050604080516020810190915260008152610694565b600060036125e28360026158ab565b6125ec91906158c3565b6125f79060046158d7565b905060006126068260206158ab565b67ffffffffffffffff81111561262c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612656576020820181803683370190505b5090506000604051806060016040528060408152602001615c18604091399050600181016020830160005b868110156126e2576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612681565b5060038606600181146126fc576002811461270d57612719565b613d3d60f01b600119830152612719565b603d60f81b6000198301525b505050918152949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61274b838383610818565b6001600160a01b038316612767576127628161380b565b61278a565b816001600160a01b0316836001600160a01b03161461278a5761278a838261384f565b6001600160a01b0382166127a6576127a1816138ec565b610818565b826001600160a01b0316826001600160a01b0316146108185761081882826139c5565b610d1c828260405180602001604052806000815250613a09565b60006127f7846001600160a01b0316613a3c565b156128f357836001600160a01b031663150b7a02612813611110565b8786866040518563ffffffff1660e01b815260040161283594939291906150e2565b602060405180830381600087803b15801561284f57600080fd5b505af192505050801561287f575060408051601f3d908101601f1916820190925261287c9181019061408f565b60015b6128d9573d8080156128ad576040519150601f19603f3d011682016040523d82523d6000602084013e6128b2565b606091505b5080516128d15760405162461bcd60e51b815260040161076090615211565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ff565b506001949350505050565b60008061293161290d8461179e565b60405160200161291d919061503a565b604051602081830303815290604052613a42565b90506000612940607d8361598f565b90506000600a82101580156129555750601482105b1561295e575060015b6014821015801561296f5750601e82105b15612978575060025b601e82101580156129895750602882105b15612992575060035b602882101580156129a35750603282105b156129ac575060045b603282101580156129bd5750603c82105b156129c6575060055b603c82101580156129d75750604682105b156129e0575060065b604682101580156129f15750605082105b156129fa575060075b60508210158015612a0b5750605982105b15612a14575060085b60598210158015612a255750606182105b15612a2e575060095b60618210158015612a3f5750606882105b15612a485750600a5b60688210158015612a595750606e82105b15612a625750600b5b606e8210158015612a735750607382105b15612a7c5750600c5b60738210158015612a8d5750607782105b15612a965750600d5b60778210158015612aa75750607a82105b15612ab05750600e5b607a8210158015612ac15750607c82105b15612aca5750600f5b607c82106111ff57506010949350505050565b600080612b0b85612aed8861179e565b8686612af7611110565b60405160200161291d959493929190614446565b9050600084612b1a81866158f6565b612b259060016158ab565b612b2f908461598f565b612b3991906158ab565b979650505050505050565b6000612b54838360006026612add565b9392505050565b60006106918260405180604001604052806009815260200168434f52452053495a4560b81b8152506010601e612add565b600080612bab612b9b8461179e565b60405160200161291d9190614dd1565b90506000612bba60c98361598f565b90506000606482118015612bcf575060868211155b15612bd8575060015b608682118015612be95750609f8211155b15612bf2575060025b609f82118015612c03575060ae8211155b15612c0c575060035b60ae82118015612c1d575060bf8211155b15612c26575060045b60bf82118015612c37575060c58211155b15612c40575060055b60c58211156111ff57506006949350505050565b600080612c73612c638461179e565b60405160200161291d91906150a4565b90506000612c836103e98361598f565b9050600061038482118015612c9a57506103ba8211155b15612ca3575060015b6103ba82118015612cb657506103cf8211155b15612cbf575060025b6103ce82118015612cd257506103de8211155b15612cdb575060035b6103de82118015612cee57506103e58211155b15612cf7575060045b816103e51415612d05575060055b816103e61415612d13575060065b816103e71415612d21575060075b816103e814156111ff57506008949350505050565b600080612d55612d458461179e565b60405160200161291d919061506d565b90506000612d6460c98361598f565b60b410949350505050565b60608083610100015160001415612dc857603e8460a0015160288110612da557634e487b7160e01b600052603260045260246000fd5b01604051602001612db69190614eb9565b60405160208183030381529060405290505b83610100015160011415612e0157612ddf83613a73565b604051602001612def919061471a565b60405160208183030381529060405290505b6001846101000151118015612e1b57506005846101000151105b15612e7557601d6002856101000151612e3491906158f6565b60038110612e5257634e487b7160e01b600052603260045260246000fd5b01604051602001612e63919061491f565b60405160208183030381529060405290505b600584610100015110612b545760206005856101000151612e9691906158f6565b60048110612eb457634e487b7160e01b600052603260045260246000fd5b01604051602001612ec5919061491f565b60405160208183030381529060405290509392505050565b60608060606000604051806040016040528060018152602001600360fc1b81525090506000604051806040016040528060018152602001600360fc1b81525090508660e0015160001415612f505760405180610100016040528060cc8152602001615a8860cc91399450505050506108f6565b8660e001516001141561302257612f95612f90876040518060400160405280600a8152602001692420a72210222920aba760b11b81525060036005612add565b61179e565b604051602001612fa59190614e56565b60408051601f19818403018152828201909152600a8252692420a72210222920aba760b11b60208301529450612fe490612f9090889060046008612add565b92506040518060400160405280600381526020016202d31360ec1b8152509150604051806040016040528060028152602001612d3560f01b81525090505b8660e00151600214156130bb5760405180604001604052806005815260200164181718181960d91b815250935061307c612f908760405180604001604052806004815260200163534b455760e01b815250606460c8612add565b92506040518060400160405280600381526020016202d33360ec1b81525091506040518060400160405280600381526020016202d31360ec1b81525090505b8660e0015160031415613184576130f9612f90876040518060400160405280600881526020016711d3125510d2115160c21b81525060036005612add565b6040516020016131099190614e01565b60408051601f19818403018152828201909152600882526711d3125510d2115160c21b6020830152945061314690612f909088906014601e612add565b92506040518060400160405280600381526020016216989960e91b8152509150604051806040016040528060028152602001612d3560f01b81525090505b8660e0015160041415613260576131c1612f9087604051806040016040528060078152602001664c4f4e47424f4960c81b81525060116016612add565b6040516020016131d19190614acb565b60408051601f1981840301815282820190915260078252664c4f4e47424f4960c81b6020830152945061320d90612f90908890606e6078612add565b60405160200161321d9190615011565b60408051601f198184030181528282018252600280845261033360f41b602085810191909152835180850190945290835261333560f01b90830152945090925090505b8660e00151600514156132f2576040518060400160405280600f81526020016e302e303034373520302e303031353560881b81525093506040518060400160405280600381526020016231313360e81b81525092506040518060400160405280600381526020016202d34360ec1b8152509150604051806040016040528060038152602001622d343560e81b81525090505b8660e00151600614156133bc57613330612f9087604051806040016040528060088152602001671253919150d5115160c21b81525060076009612add565b6040516020016133409190614e56565b60408051601f1981840301815282820190915260088252671253919150d5115160c21b6020830152945061337d90612f90908890603c605a612add565b92506040518060400160405280600381526020016202d33360ec1b8152509150604051806040016040528060038152602001622d323560e81b81525090505b6000848483856040516020016133d5949392919061497e565b60408051808303601f1901815291905298975050505050505050565b60606000608e83600001516011811061341a57634e487b7160e01b600052603260045260246000fd5b01805461342690615939565b80601f016020809104026020016040519081016040528092919081815260200182805461345290615939565b801561349f5780601f106134745761010080835404028352916020019161349f565b820191906000526020600020905b81548152906001019060200180831161348257829003601f168201915b505050505090506000609f8460000151601181106134cd57634e487b7160e01b600052603260045260246000fd5b0180546134d990615939565b80601f016020809104026020016040519081016040528092919081815260200182805461350590615939565b80156135525780601f1061352757610100808354040283529160200191613552565b820191906000526020600020905b81548152906001019060200180831161353557829003601f168201915b505050505090506000846020015162057e4061356e91906158c3565b604080516020810190915260008152865191925090849061358e9061179e565b8461359e612f906103e8876158c3565b6040516020016135b19493929190614f0d565b60408051601f198184030181529190529050806135d3612f906103e88561598f565b87516135de9061179e565b6040516020016135f09392919061461e565b6040516020818303038152906040529050856101200151156137455760005b866020015181101561373f57816136366103e861362c84876158d7565b612f9091906158c3565b6136506103e861364685886158d7565b612f90919061598f565b895161365b9061179e565b603e8b604001516028811061368057634e487b7160e01b600052603260045260246000fd5b0160405160200161369595949392919061482e565b60408051808303601f1901815291905291508160d26136ba6103e861362c85886158d7565b6136ca6103e861364686896158d7565b60d36136f26103e86136dc888b6158d7565b6136e691906158c3565b612f90906101686158ab565b6137026103e8613646898c6158d7565b60405161371b979695949392919060d49060200161449a565b6040516020818303038152906040529150808061373790615974565b91505061360f565b50613802565b60005b866020015181101561380057816137656103e861362c84876158d7565b6137756103e861364685886158d7565b89516137809061179e565b604051602001613793949392919061477a565b604051602081830303815290604052915081603e8860400151602881106137ca57634e487b7160e01b600052603260045260246000fd5b016040516020016137dc9291906146c3565b604051602081830303815290604052915080806137f890615974565b915050613748565b505b95945050505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161385c84610ad1565b61386691906158f6565b6000838152600760205260409020549091508082146138b9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138fe906001906158f6565b6000838152600960205260408120546008805493945090928490811061393457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061396357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139a957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139d083610ad1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b613a138383613ca6565b613a2060008484846127e3565b6108185760405162461bcd60e51b815260040161076090615211565b3b151590565b600081604051602001613a559190614258565b60408051601f19818403018152919052805160209091012092915050565b60606000603e613a9d8460405180604001604052806002815260200161523160f01b815250612b44565b60288110613abb57634e487b7160e01b600052603260045260246000fd5b01603e613ae28560405180604001604052806002815260200161291960f11b815250612b44565b60288110613b0057634e487b7160e01b600052603260045260246000fd5b01603e613b278660405180604001604052806002815260200161523360f01b815250612b44565b60288110613b4557634e487b7160e01b600052603260045260246000fd5b01603e613b6c8760405180604001604052806002815260200161148d60f21b815250612b44565b60288110613b8a57634e487b7160e01b600052603260045260246000fd5b01604051602001613b9e9493929190614af7565b60408051601f198184030181528282019091526002825261523560f01b602083015291508190603e90613bd2908690612b44565b60288110613bf057634e487b7160e01b600052603260045260246000fd5b01603e613c178660405180604001604052806002815260200161291b60f11b815250612b44565b60288110613c3557634e487b7160e01b600052603260045260246000fd5b01603e613c5d876040518060400160405280600381526020016242474360e81b815250612b44565b60288110613c7b57634e487b7160e01b600052603260045260246000fd5b01604051602001613c8f9493929190614554565b60408051808303601f190181529190529392505050565b6001600160a01b038216613ccc5760405162461bcd60e51b81526004016107609061557f565b613cd5816110f3565b15613cf25760405162461bcd60e51b8152600401610760906152a9565b613cfe60008383612740565b6001600160a01b0382166000908152600360205260408120805460019290613d279084906158ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061014001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b6040518061028001604052806014905b6060815260200190600190039081613dea5790505090565b604080516101e0810190915260608152600e60208201613dea565b80356001600160a01b038116811461069457600080fd5b60008083601f840112613e45578081fd5b50813567ffffffffffffffff811115613e5c578182fd5b6020830191508360208083028501011115613e7657600080fd5b9250929050565b600060208284031215613e8e578081fd5b612b5482613e1d565b60008060408385031215613ea9578081fd5b613eb283613e1d565b9150613ec060208401613e1d565b90509250929050565b600080600060608486031215613edd578081fd5b613ee684613e1d565b9250613ef460208501613e1d565b9150604084013590509250925092565b60008060008060808587031215613f19578081fd5b613f2285613e1d565b93506020613f31818701613e1d565b935060408601359250606086013567ffffffffffffffff80821115613f54578384fd5b818801915088601f830112613f67578384fd5b813581811115613f7957613f796159cf565b604051601f8201601f1916810185018381118282101715613f9c57613f9c6159cf565b60405281815283820185018b1015613fb2578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215613fe2578182fd5b613feb83613e1d565b915060208301358015158114613fff578182fd5b809150509250929050565b6000806040838503121561401c578182fd5b61402583613e1d565b946020939093013593505050565b60008060208385031215614045578182fd5b823567ffffffffffffffff81111561405b578283fd5b61406785828601613e34565b90969095509350505050565b600060208284031215614084578081fd5b8135612b54816159e5565b6000602082840312156140a0578081fd5b8151612b54816159e5565b6000602082840312156140bc578081fd5b5035919050565b6000806000604084860312156140d7578283fd5b83359250602084013567ffffffffffffffff8111156140f4578283fd5b61410086828701613e34565b9497909650939450505050565b6000815180845261412581602086016020860161590d565b601f01601f19169290920160200192915050565b80546000906002810460018083168061415357607f831692505b602080841082141561417357634e487b7160e01b86526022600452602486fd5b8180156141875760018114614198576141c5565b60ff198616895284890196506141c5565b6141a18861589f565b60005b868110156141bd5781548b8201529085019083016141a4565b505084890196505b50505050505092915050565b7f222f3e3c666544726f70536861646f772064783d2238222064793d223822206681527f6c6f6f642d636f6c6f723d22233030303030302220666c6f6f642d6f7061636960208201527f74793d22312220737464446576696174696f6e3d2230222f3e3c2f66696c7465604082015268391f1e17b232b3399f60b91b606082015260690190565b6000825161426a81846020870161590d565b9190910192915050565b60008651614286818460208b0161590d565b86519083019061429a818360208b0161590d565b86519101906142ad818360208a0161590d565b85519101906142c081836020890161590d565b84519101906142d381836020880161590d565b01979650505050505050565b6000895160206142f28285838f0161590d565b8a51918401916143058184848f0161590d565b8a519201916143178184848e0161590d565b89519201916143298184848d0161590d565b885192019161433b8184848c0161590d565b875192019161434d8184848b0161590d565b865192019161435f8184848a0161590d565b8551920191614371818484890161590d565b919091019b9a5050505050505050505050565b60008a51614396818460208f0161590d565b8a51908301906143aa818360208f0161590d565b8a516143bc8183850160208f0161590d565b8a519290910101906143d2818360208d0161590d565b88516143e48183850160208d0161590d565b88519290910101906143fa818360208b0161590d565b865161440c8183850160208b0161590d565b865192909101019061442281836020890161590d565b8451614434818385016020890161590d565b9101019b9a5050505050505050505050565b60008651614458818460208b0161590d565b86519083019061446c818360208b0161590d565b019485525050602083019190915260601b6bffffffffffffffffffffffff1916604082015260540192915050565b600089516144ac818460208e0161590d565b6144b88184018b614139565b905088516144ca818360208d0161590d565b601760f91b910181815288519091906144ea816001850160208d0161590d565b6144f96001828501018a614139565b925050865161450c818460208b0161590d565b91909101908152845161452681600184016020890161590d565b61453560018284010186614139565b651e17bab9b29f60d11b81526006019c9b505050505050505050505050565b60008551614566818460208a0161590d565b61457281840187614139565b7f222f3e3c73746f70206f66667365743d22393625222073746f702d636f6c6f728152611e9160f11b602082015290506145af6022820186614139565b7f222f3e3c73746f70206f66667365743d2231303025222073746f702d636f6c6f815262391e9160e91b602082015290506145ed6023820185614139565b7f222f3e3c2f72616469616c4772616469656e743e3c2f646566733e00000000008152601b01979650505050505050565b6000845161463081846020890161590d565b601760f91b908301908152845161464e81600184016020890161590d565b7f2032353020323530292220786c696e6b3a687265663d222370732d000000000060019290910191820152835161468c81601c84016020880161590d565b7f222066696c6c3d22626c61636b222f3e3c2f6d61736b3e3c2f646566733e0000601c9290910191820152603a0195945050505050565b600083516146d581846020880161590d565b78111036b0b9b59e913ab9361411b338319491103334b6361e9160391b9083019081526147056019820185614139565b6211179f60e91b815260030195945050505050565b6000825161472c81846020870161590d565b7f3c726563742077696474683d2235303022206865696768743d223530302220669201918252507534b6361e913ab9361411b930b234b0b621239491179f60511b6020820152603601919050565b6000855161478c818460208a0161590d565b76078eae6ca40e8e4c2dce6ccdee4da7a44e4dee8c2e8ca5604b1b90830190815285516147c0816017840160208a0161590d565b601760f91b6017929091019182015284516147e281601884016020890161590d565b7f2032353020323530292220786c696e6b3a687265663d222370732d000000000060189290910191820152835161482081603384016020880161590d565b016033019695505050505050565b60008651614840818460208b0161590d565b76078eae6ca40e8e4c2dce6ccdee4da7a44e4dee8c2e8ca5604b1b9083019081528651614874816017840160208b0161590d565b601760f91b601792909101918201528551614896816018840160208a0161590d565b7f2032353020323530292220786c696e6b3a687265663d222370732d00000000006018929091019182015284516148d481603384016020890161590d565b78111036b0b9b59e913ab9361411b338319491103334b6361e9160391b60339290910191820152614908604c820185614139565b61111f60f11b815260020198975050505050505050565b600061492b8284614139565b7f3c726563742077696474683d2235303022206865696768743d2235303022206681527f696c7465723d2275726c282366696c746572424729222f3e000000000000000060208201526038019392505050565b60007f3c646566733e3c66696c7465722069643d22476c2220783d222d35302522207982527f3d222d353025222077696474683d223230302522206865696768743d2232303060208301527f25223e3c666554757262756c656e636520626173654672657175656e63793d2260408301528551614a02816060850160208a0161590d565b7f222f3e3c6665446973706c6163656d656e744d617020696e3d22536f757263656060918401918201526f23b930b83434b1911039b1b0b6329e9160811b60808201528551614a58816090840160208a0161590d565b7011179f1e3332a7b33339b2ba10323c9e9160791b609092909101918201528451614a8a8160a184016020890161590d565b651110323c1e9160d11b60a192909101918201528351614ab18160a784016020880161590d565b614abf60a7828401016141d1565b98975050505050505050565b6000630302e30360e41b82528251614aea81600485016020870161590d565b9190910160040192915050565b7f3c646566733e3c72616469616c4772616469656e742069643d2272616469616c81527f4247222063783d22302e38222063793d22302e382220723d22302e362220667860208201527f3d22302e3432222066793d22302e343222207370726561644d6574686f643d2260408201527f706164223e3c73746f70206f66667365743d223025222073746f702d636f6c6f606082015262391e9160e91b60808201526000614ba76083830187614139565b7f222f3e3c73746f70206f66667365743d22343025222073746f702d636f6c6f728152611e9160f11b60208201819052614be46022830188614139565b91507f222f3e3c73746f70206f66667365743d22373025222073746f702d636f6c6f728252806020830152614c1c6022830187614139565b91507f222f3e3c73746f70206f66667365743d22393025222073746f702d636f6c6f728252806020830152614c546022830186614139565b7f222f3e3c73746f70206f66667365743d22393425222073746f702d636f6c6f7281526020810191909152602201979650505050505050565b717b226e616d65223a2022466c6f776572202360701b81528351600090614cbb81601285016020890161590d565b7f222c20226465736372697074696f6e223a2022466c6f776572732061726520666012918401918201527f756c6c79206f6e2d636861696e2c2072616e646f6d6c792067656e657261746560328201527f6420756e6971756520666c6f776572732e20466f7220796f752c206f7220612060528201527f7370656369616c20736f6d656f6e6520696e20796f7572206c6966652e22000060728201528451614d6a81609084016020890161590d565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736090929091019182015263194d8d0b60e21b60b08201528351614db58160b484016020880161590d565b61227d60f01b60b4929091019182015260b60195945050505050565b60006726aaaa20aa24a7a760c11b82528251614df481600885016020870161590d565b9190910160080192915050565b600061181760f11b82528251614e1e81600285016020870161590d565b9190910160020192915050565b60006204e4f560ec1b82528251614e4981600385016020870161590d565b9190910160030192915050565b6000620302e360ec1b82528251614e4981600385016020870161590d565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251614eac81601d85016020870161590d565b91909101601d0192915050565b7f3c726563742077696474683d2235303022206865696768743d2235303022206681526434b6361e9160d91b60208201526000614ef96025830184614139565b631110179f60e11b81526004019392505050565b6000651e3232b3399f60d11b82528551614f2e816006850160208a0161590d565b672069643d2270732d60c01b6006918401918201528551614f5681600e840160208a0161590d565b61011160f51b600e92909101918201528451614f7981601084016020890161590d565b7f2f3e3c6d61736b2069643d22667063223e3c72656374206865696768743d2231601092909101918201527f303025222077696474683d2231303025222066696c6c3d22776869746522202f60308201527f3e3c757365207472616e73666f726d203d2022726f74617465280000000000006050820152835161500381606a84016020880161590d565b01606a019695505050505050565b6000602d60f81b8252825161502d81600185016020870161590d565b9190910160010192915050565b60006a504554414c205354594c4560a81b8252825161506081600b85016020870161590d565b91909101600b0192915050565b60006e119313d5d154881053925350551151608a1b8252825161509781600f85016020870161590d565b91909101600f0192915050565b60006e4241434b47524f554e44205459504560881b8252825161509781600f85016020870161590d565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906151159083018461410d565b9695505050505050565b901515815260200190565b92151583526020830191909152604082015260600190565b600060208252612b54602083018461410d565b6020808252602b908201527f4275796572206e6f742077686974656c697374656420666f722074686973207060408201526a7269766174652073616c6560a81b606082015260800190565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e4455504c49434154455f454e54525960881b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526018908201527f53616c6520697320706175736564207269676874206e6f770000000000000000604082015260600190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526031908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736040820152701034b71030903a3930b739b0b1ba34b7b760791b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601c908201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526029908201527f43616e6e6f742065786365656420616c6c6f747465642070726573616c65206d6040820152681a5b9d0818dbdd5b9d60ba1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602c908201527f596f752063616e27742065786365656420746869732077616c6c65742773206d60408201526b1a5b9d1a5b99c81b1a5b5a5d60a21b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b90815260200190565b60009081526020902090565b600082198211156158be576158be6159a3565b500190565b6000826158d2576158d26159b9565b500490565b60008160001904831182151516156158f1576158f16159a3565b500290565b600082821015615908576159086159a3565b500390565b60005b83811015615928578181015183820152602001615910565b83811115610e305750506000910152565b60028104600182168061594d57607f821691505b6020821081141561596e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415615988576159886159a3565b5060010190565b60008261599e5761599e6159b9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4757600080fdfe2c202261747472696275746573223a205b7b2274726169745f74797065223a2022506574616c205374796c65222c2276616c7565223a2022227d2c207b2274726169745f74797065223a2022506574616c20436f6c6f72222c2276616c7565223a20227d2c207b2274726169745f74797065223a20224247204f7665726c6179222c2276616c7565223a20223c646566733e3c66696c74657220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667222069643d22476c2220783d222d3530252220793d222d353025222077696474683d223230302522206865696768743d2232303025223e3c666544726f70536861646f772064783d2238222064793d22382220666c6f6f642d636f6c6f723d22233030303030302220666c6f6f642d6f7061636974793d22312220737464446576696174696f6e3d2230222f3e3c2f66696c7465723e3c2f646566733e7d2c207b2274726169745f74797065223a20224e6f2e206f6620506574616c73222c2276616c7565223a203c7376672076696577426f783d223020302035303020353030222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b223e227d2c207b2274726169745f74797065223a20225370696e222c2276616c7565223a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c726563742069643d227265637422207374796c653d226d69782d626c656e642d6d6f64653a6f7665726c617922206f7061636974793d222e32222077696474683d223130302522206865696768743d2231303025222066696c6c3d223c672066696c7465723d2275726c2823476c2922207374726f6b653d222330303030303022207374726f6b652d77696474683d2234223e227d2c207b2274726169745f74797065223a202242472054797065222c2276616c7565223a2022227d2c207b2274726169745f74797065223a2022436f726520436f6c6f72222c2276616c7565223a2022227d2c207b2274726169745f74797065223a2022436f72652053697a65222c2276616c7565223a20227d2c207b2274726169745f74797065223a20224d75746174696f6e222c2276616c7565223a20227d2c207b2274726169745f74797065223a2022424720436f6c6f72222c2276616c7565223a2022a26469706673582212203130e532749dd5b00bc117e3b397a185ff15d7a229cd566b0bc47638f822b72964736f6c63430008000033

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.