ETH Price: $3,094.78 (-1.26%)

Token

BlockchainOfFame (BOF)
 

Overview

Max Total Supply

216 BOF

Holders

89

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xminted.eth
Balance
1 BOF
0xe17aa4a8eaf0225787486627c6091ef72579b7e0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BlockchainOfFame

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-07
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-07
*/

// SPDX-License-Identifier: MIT

// @openzeppelin/contracts/cryptography/MerkleProof.sol

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/utils/Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: ERC721.sol



pragma solidity ^0.8.0;








/**
 * @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 Edit for rawOwnerOf token
     */
    function rawOwnerOf(uint256 tokenId) public view returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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);
        address to = address(0);

        _beforeTokenTransfer(owner, to, tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, to, 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 {}
}
// File: ERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    //function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
    //    require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
    //    return _ownedTokens[owner][index];
    //}

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File: ERC721URIStorage.sol

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

	
// File: bof.sol


pragma solidity ^0.8.0;
pragma abicoder v2;

contract BlockchainOfFame is ERC721URIStorage, Ownable {
    uint256 tokenCounter = 0;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    uint256 public constant MAX_ELEMENTS = 5000;
    uint256 public constant PRICE = 0.1 ether;
	uint256 public constant CUSTOMPRICE = 0.25 ether;
	uint256 public constant WHITELISTPRICE = 0.03 ether;
    uint256 public constant maxBofPurchase = 10;
    uint256 public bofReserve = 125;
	uint256 public bofCustomReserve = 400;
    uint256 private supply;
    
    address public creator1Address = 0x3116303B3787e298e1735dD540e81eb547FBf77C;
    address public creator2Address = 0x5cA9cA6D35AFa49BCDAF8f23C400Ec6de1F0b627;
    bytes32 public merkleRoot;
    bool private PAUSE = true;
    bool public saleIsOpen = false;
    mapping(address => bool) private whitelisted_minters;
    mapping(address => uint) private max_mints_per_address;
    mapping (uint256 => string) private _tokenName;
    mapping (string => bool) private _nameReserved;
    mapping(uint256 => string) private _tokenURIs;
    
    Counters.Counter private _tokenIdTracker;

    string public baseTokenURI;

    event PauseEvent(bool pause);
    event BOF(uint256 indexed id);
    event WhitelistedMint(address minter);
    event MerkleRootUpdated(bytes32 new_merkle_root);
    event NameChange (uint256 indexed maskIndex, string newName);
    
    constructor() ERC721("BlockchainOfFame", "BOF"){}


    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function flipSaleState() public onlyOwner {
        saleIsOpen = !saleIsOpen;
    }
    
    function totalToken() public view returns (uint256) {
        return _tokenIdTracker.current();
    }

    function setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _setTokenURI(tokenId, _tokenURI);
    }

    function setCustomTokenURI(uint256 tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(tokenId, _tokenURI);
    }

    function getTokenURI(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        return(_tokenURIs[tokenId]);
    }

    function mintBof(string memory newName, string memory _tokenURI) public payable {
        require(saleIsOpen, "Sale must be active to mint NFT");
        require(msg.value == PRICE, "Ether value sent is not correct");
        require(max_mints_per_address[msg.sender].add(1) <= 10,"Max 10 mints per wallet allowed");
        
            if (tokenCounter < MAX_ELEMENTS) {
                
                _safeMint(msg.sender, tokenCounter);
				changeName(tokenCounter,newName);
                _setTokenURI(tokenCounter,_tokenURI);
                max_mints_per_address[msg.sender] = max_mints_per_address[msg.sender].add(1);
                tokenCounter = tokenCounter + 1;
            } else {
               saleIsOpen = !saleIsOpen;
               payable(msg.sender).transfer(PRICE);
            }
    }

    function mintCustom(string memory newName) public payable {
		require(bofCustomReserve >= 1, "All custom NFTs already minted");
        require(saleIsOpen, "Sale must be active to mint NFT");
        require(msg.value == CUSTOMPRICE, "Ether value sent is not correct");
        require(max_mints_per_address[msg.sender].add(1) <= 10,"Max 10 mints per wallet allowed");
        
            if (tokenCounter < MAX_ELEMENTS) {
                
                _safeMint(msg.sender, tokenCounter);
				changeName(tokenCounter,newName);
                max_mints_per_address[msg.sender] = max_mints_per_address[msg.sender].add(1);
				bofCustomReserve = bofCustomReserve.sub(1);
                tokenCounter = tokenCounter + 1;
            } else {
               saleIsOpen = !saleIsOpen;
               payable(msg.sender).transfer(PRICE);
            }
    }

    function whitelistedMints(string memory newName, string memory _tokenURI, bytes32[] calldata merkleProof ) payable external  {
        address user_ = msg.sender;

        require(saleIsOpen, "Sale must be active to mint NFT");
        require(msg.value == WHITELISTPRICE, "Ether value sent is not correct");
        require(max_mints_per_address[msg.sender].add(1) <= 10,"Max 10 mints per wallet allowed");

        // Verify the merkle proof
        require(MerkleProof.verify(merkleProof, merkleRoot,  keccak256(abi.encodePacked(user_))  ), "Invalid proof");
		
            if (tokenCounter < MAX_ELEMENTS) {
                
                _safeMint(msg.sender, tokenCounter);
				changeName(tokenCounter,newName);
                _setTokenURI(tokenCounter,_tokenURI);
                max_mints_per_address[msg.sender] = max_mints_per_address[msg.sender].add(1);
                tokenCounter = tokenCounter + 1;
            } else {
               saleIsOpen = !saleIsOpen;
               payable(msg.sender).transfer(PRICE);
            }

        emit WhitelistedMint(user_);
    }

    function price(uint256 _count) public pure returns (uint256) {
        return PRICE.mul(_count);
    }

    function setPause(bool _pause) public onlyOwner{
        PAUSE = _pause;
        emit PauseEvent(PAUSE);
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(creator2Address, balance.mul(50).div(100));
        _widthdraw(creator1Address, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function updateMerkleRoot(bytes32 newmerkleRoot) external onlyOwner {
        merkleRoot = newmerkleRoot;
        emit MerkleRootUpdated(merkleRoot);
    }
   
    function reserveBOF(address _to, string memory newName, string memory _tokenURI) public onlyOwner {        
        require(bofReserve >= 1, "Not enough reserve");
            supply = tokenCounter;
            _safeMint(_to, supply);
			changeName(supply,newName);
			_setTokenURI(tokenCounter,_tokenURI);
            bofReserve = bofReserve.sub(1);
            tokenCounter = tokenCounter + 1;
    }

    function changeName(uint256 tokenId, string memory newName) private {

        require(validateName(newName) == true, "Not a valid new name");
        require(sha256(bytes(newName)) != sha256(bytes(_tokenName[tokenId])), "New name is same as the current one");
        require(isNameReserved(newName) == false, "Name already reserved");
        
        // If already named, dereserve old name
        if (bytes(_tokenName[tokenId]).length > 0) {
            toggleReserveName(_tokenName[tokenId], false);
        }
        toggleReserveName(newName, true);
        _tokenName[tokenId] = newName;
        emit NameChange(tokenId, newName);
    }
    
        function validateName(string memory str) public pure returns (bool){
        bytes memory b = bytes(str);
        if(b.length < 1 || b.length > 25) return false;
        else
        return true;
    }
 
    function isNameReserved(string memory nameString) public view returns (bool) {
        return _nameReserved[nameString];
    }   
    
    function toggleReserveName(string memory str, bool isReserve) internal {
        _nameReserved[str] = isReserve;
    }
    
    function tokenNameByIndex(uint256 index) public view returns (string memory) {
        return _tokenName[index];
    }

    function _toLower(string memory _base)
        internal
        pure
        returns (string memory) {
        bytes memory _baseBytes = bytes(_base);
        for (uint i = 0; i < _baseBytes.length; i++) {
            _baseBytes[i] = _lower(_baseBytes[i]);
        }
        return string(_baseBytes);
    }

    function _lower(bytes1 _b1)
        private
        pure
        returns (bytes1) {

        if (_b1 >= 0x41 && _b1 <= 0x5A) {
            return bytes1(uint8(_b1) + 32);
        }

        return _b1;
    }
	
	function totalSupply() public view returns (uint256 tSupply) {
		return tokenCounter;
	}
	
}

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":"uint256","name":"id","type":"uint256"}],"name":"BOF","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"new_merkle_root","type":"bytes32"}],"name":"MerkleRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"maskIndex","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChange","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":false,"internalType":"bool","name":"pause","type":"bool"}],"name":"PauseEvent","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"WhitelistedMint","type":"event"},{"inputs":[],"name":"CUSTOMPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELISTPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bofCustomReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bofReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBofPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mintBof","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"mintCustom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"rawOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"reserveBOF","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":[],"name":"saleIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setCustomTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenNameByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"tSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalToken","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":"bytes32","name":"newmerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistedMints","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600855607d600955610190600a55600c80546001600160a01b0319908116733116303b3787e298e1735dd540e81eb547fbf77c17909155600d8054909116735ca9ca6d35afa49bcdaf8f23c400ec6de1f0b627179055600f805461ffff191660011790553480156200007757600080fd5b50604080518082018252601081526f426c6f636b636861696e4f6646616d6560801b6020808301918252835180850190945260038452622127a360e91b908401528151919291620000cb916000916200015a565b508051620000e19060019060208401906200015a565b505050620000fe620000f86200010460201b60201c565b62000108565b6200023d565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001689062000200565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b600181811c908216806200021557607f821691505b602082108114156200023757634e487b7160e01b600052602260045260246000fd5b50919050565b612f5a806200024d6000396000f3fe6080604052600436106102725760003560e01c80637f81be691161014f578063b6fb7279116100c1578063d09135051161007a578063d09135051461071f578063d547cfb71461073f578063e985e9c514610754578063f2fde38b1461079d578063f9a07444146107bd578063fd59e808146107d057600080fd5b8063b6fb72791461066d578063b88d4fde1461068d578063bcbdb335146106ad578063bedb86fb146106c9578063c4317b88146106e9578063c87b56dd146106ff57600080fd5b80638da5cb5b116101135780638da5cb5b146105bf57806395d89b41146105dd5780639ffdb65a146105f2578063a082499e14610612578063a22cb4651461062d578063aa3d92fb1461064d57600080fd5b80637f81be6914610522578063811d8ca314610558578063851fc4b61461056e578063853828b61461058e5780638d859f3e146105a357600080fd5b80632eb4a7ab116101e85780634783f0ef116101ac5780634783f0ef1461046d57806355f804b31461048d578063626be567146104ad5780636352211e146104c25780636d522418146104e257806370a082311461050257600080fd5b80632eb4a7ab146103ec57806334918dfd146104025780633502a716146104175780633bb3a24d1461042d57806342842e0e1461044d57600080fd5b80631211b0761161023a5780631211b0761461033b57806315b56d101461035a57806318160ddd1461037a5780631db12acf1461039957806323b872dd146103ac57806326a49e37146103cc57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b3146103065780630b9c66d414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612606565b6107e5565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610837565b6040516102a3919061267b565b3480156102da57600080fd5b506102ee6102e936600461268e565b6108c9565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506103266103213660046126c3565b610956565b005b610326610336366004612799565b610a6c565b34801561034757600080fd5b50600f5461029790610100900460ff1681565b34801561036657600080fd5b50610297610375366004612799565b610c0d565b34801561038657600080fd5b506008545b6040519081526020016102a3565b6103266103a73660046127ce565b610c38565b3480156103b857600080fd5b506103266103c7366004612832565b610d7e565b3480156103d857600080fd5b5061038b6103e736600461268e565b610daf565b3480156103f857600080fd5b5061038b600e5481565b34801561040e57600080fd5b50610326610dc3565b34801561042357600080fd5b5061038b61138881565b34801561043957600080fd5b506102c161044836600461268e565b610e0a565b34801561045957600080fd5b50610326610468366004612832565b610ecf565b34801561047957600080fd5b5061032661048836600461268e565b610eea565b34801561049957600080fd5b506103266104a8366004612799565b610f50565b3480156104b957600080fd5b5061038b610f8d565b3480156104ce57600080fd5b506102ee6104dd36600461268e565b610f9d565b3480156104ee57600080fd5b506102c16104fd36600461268e565b611014565b34801561050e57600080fd5b5061038b61051d36600461286e565b611031565b34801561052e57600080fd5b506102ee61053d36600461268e565b6000908152600260205260409020546001600160a01b031690565b34801561056457600080fd5b5061038b60095481565b34801561057a57600080fd5b50610326610589366004612889565b6110b8565b34801561059a57600080fd5b506103266110ec565b3480156105af57600080fd5b5061038b67016345785d8a000081565b3480156105cb57600080fd5b506007546001600160a01b03166102ee565b3480156105e957600080fd5b506102c1611162565b3480156105fe57600080fd5b5061029761060d366004612799565b611171565b34801561061e57600080fd5b5061038b666a94d74f43000081565b34801561063957600080fd5b506103266106483660046128d6565b6111a5565b34801561065957600080fd5b50600d546102ee906001600160a01b031681565b34801561067957600080fd5b50610326610688366004612909565b61126a565b34801561069957600080fd5b506103266106a836600461297d565b61132e565b3480156106b957600080fd5b5061038b6703782dace9d9000081565b3480156106d557600080fd5b506103266106e43660046129f9565b611366565b3480156106f557600080fd5b5061038b600a5481565b34801561070b57600080fd5b506102c161071a36600461268e565b6113d7565b34801561072b57600080fd5b50600c546102ee906001600160a01b031681565b34801561074b57600080fd5b506102c1611541565b34801561076057600080fd5b5061029761076f366004612a14565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a957600080fd5b506103266107b836600461286e565b6115cf565b6103266107cb366004612a3e565b611667565b3480156107dc57600080fd5b5061038b600a81565b60006001600160e01b031982166380ac58cd60e01b148061081657506001600160e01b03198216635b5e139f60e01b145b8061083157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461084690612af7565b80601f016020809104026020016040519081016040528092919081815260200182805461087290612af7565b80156108bf5780601f10610894576101008083540402835291602001916108bf565b820191906000526020600020905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b60006108d4826118a5565b61093a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096182610f9d565b9050806001600160a01b0316836001600160a01b031614156109cf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610931565b336001600160a01b03821614806109eb57506109eb813361076f565b610a5d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610931565b610a6783836118c2565b505050565b6001600a541015610abf5760405162461bcd60e51b815260206004820152601e60248201527f416c6c20637573746f6d204e46547320616c7265616479206d696e74656400006044820152606401610931565b600f54610100900460ff16610ae65760405162461bcd60e51b815260040161093190612b2c565b6703782dace9d900003414610b0d5760405162461bcd60e51b815260040161093190612b63565b33600090815260116020526040902054600a90610b2b906001611930565b1115610b495760405162461bcd60e51b815260040161093190612b9a565b6113886008541015610bbd57610b6133600854611943565b610b6d6008548261195d565b33600090815260116020526040902054610b88906001611930565b33600090815260116020526040902055600a54610ba6906001611c2f565b600a55600854610bb7906001612be7565b60085550565b600f805461ff001981166101009182900460ff1615909102179055604051339060009067016345785d8a00009082818181858883f19350505050158015610c08573d6000803e3d6000fd5b505b50565b6000601382604051610c1f9190612bff565b9081526040519081900360200190205460ff1692915050565b600f54610100900460ff16610c5f5760405162461bcd60e51b815260040161093190612b2c565b67016345785d8a00003414610c865760405162461bcd60e51b815260040161093190612b63565b33600090815260116020526040902054600a90610ca4906001611930565b1115610cc25760405162461bcd60e51b815260040161093190612b9a565b6113886008541015610d3357610cda33600854611943565b610ce66008548361195d565b610cf260085482611c3b565b33600090815260116020526040902054610d0d906001611930565b33600090815260116020526040902055600854610d2b906001612be7565b600855610c08565b600f805461ff001981166101009182900460ff1615909102179055604051339060009067016345785d8a00009082818181858883f19350505050158015610a67573d6000803e3d6000fd5b610d883382611c7f565b610da45760405162461bcd60e51b815260040161093190612c1b565b610a67838383611d65565b600061083167016345785d8a000083611f05565b6007546001600160a01b03163314610ded5760405162461bcd60e51b815260040161093190612c6c565b600f805461ff001981166101009182900460ff1615909102179055565b6060610e15826118a5565b610e315760405162461bcd60e51b815260040161093190612ca1565b60008281526014602052604090208054610e4a90612af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7690612af7565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b50505050509050919050565b610a678383836040518060200160405280600081525061132e565b6007546001600160a01b03163314610f145760405162461bcd60e51b815260040161093190612c6c565b600e8190556040518181527f90004c04698bc3322499a575ed3752dd4abf33e0a7294c06a787a0fe01bea941906020015b60405180910390a150565b6007546001600160a01b03163314610f7a5760405162461bcd60e51b815260040161093190612c6c565b8051610c08906016906020840190612557565b6000610f9860155490565b905090565b6000818152600260205260408120546001600160a01b0316806108315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610931565b6000818152601260205260409020805460609190610e4a90612af7565b60006001600160a01b03821661109c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610931565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146110e25760405162461bcd60e51b815260040161093190612c6c565b610c088282611c3b565b6007546001600160a01b031633146111165760405162461bcd60e51b815260040161093190612c6c565b478061112157600080fd5b600d5461114c906001600160a01b03166111476064611141856032611f05565b90611f11565b611f1d565b600c54610c0a906001600160a01b031647611f1d565b60606001805461084690612af7565b600080829050600181511080611188575060198151115b156111965750600092915050565b50600192915050565b50919050565b6001600160a01b0382163314156111fe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610931565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146112945760405162461bcd60e51b815260040161093190612c6c565b600160095410156112dc5760405162461bcd60e51b81526020600482015260126024820152714e6f7420656e6f756768207265736572766560701b6044820152606401610931565b600854600b8190556112ef908490611943565b6112fb600b548361195d565b61130760085482611c3b565b600954611315906001611c2f565b600955600854611326906001612be7565b600855505050565b6113383383611c7f565b6113545760405162461bcd60e51b815260040161093190612c1b565b61136084848484611fb3565b50505050565b6007546001600160a01b031633146113905760405162461bcd60e51b815260040161093190612c6c565b600f805460ff191682151590811790915560405160ff909116151581527f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d390602001610f45565b60606113e2826118a5565b6114485760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610931565b6000828152600660205260408120805461146190612af7565b80601f016020809104026020016040519081016040528092919081815260200182805461148d90612af7565b80156114da5780601f106114af576101008083540402835291602001916114da565b820191906000526020600020905b8154815290600101906020018083116114bd57829003601f168201915b5050505050905060006114eb611fe6565b90508051600014156114fe575092915050565b815115611530578082604051602001611518929190612cef565b60405160208183030381529060405292505050919050565b61153984611ff5565b949350505050565b6016805461154e90612af7565b80601f016020809104026020016040519081016040528092919081815260200182805461157a90612af7565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b505050505081565b6007546001600160a01b031633146115f95760405162461bcd60e51b815260040161093190612c6c565b6001600160a01b03811661165e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610931565b610c0a816120bf565b600f543390610100900460ff166116905760405162461bcd60e51b815260040161093190612b2c565b666a94d74f43000034146116b65760405162461bcd60e51b815260040161093190612b63565b33600090815260116020526040902054600a906116d4906001611930565b11156116f25760405162461bcd60e51b815260040161093190612b9a565b61176883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff19606088901b166020820152909250603401905060405160208183030381529060405280519060200120612111565b6117a45760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610931565b6113886008541015611815576117bc33600854611943565b6117c86008548661195d565b6117d460085485611c3b565b336000908152601160205260409020546117ef906001611930565b3360009081526011602052604090205560085461180d906001612be7565b600855611862565b600f805461ff001981166101009182900460ff1615909102179055604051339060009067016345785d8a00009082818181858883f19350505050158015611860573d6000803e3d6000fd5b505b6040516001600160a01b03821681527f67c400238edbf2cfe078e9c46b03af4a14f535dafde7829c4ebd8ffc76448bee9060200160405180910390a15050505050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f782610f9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061193c8284612be7565b9392505050565b610c088282604051806020016040528060008152506121c0565b61196681611171565b15156001146119ae5760405162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b6044820152606401610931565b6000828152601260205260409081902090516002916119cc91612d1e565b602060405180830381855afa1580156119e9573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611a0c9190612dba565b600282604051611a1c9190612bff565b602060405180830381855afa158015611a39573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611a5c9190612dba565b1415611ab65760405162461bcd60e51b815260206004820152602360248201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206044820152626f6e6560e81b6064820152608401610931565b611abf81610c0d565b15611b045760405162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b6044820152606401610931565b60008281526012602052604081208054611b1d90612af7565b90501115611bc85760008281526012602052604090208054611bc89190611b4390612af7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6f90612af7565b8015611bbc5780601f10611b9157610100808354040283529160200191611bbc565b820191906000526020600020905b815481529060010190602001808311611b9f57829003601f168201915b505050505060006121f3565b611bd38160016121f3565b60008281526012602090815260409091208251611bf292840190612557565b50817f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b82604051611c23919061267b565b60405180910390a25050565b600061193c8284612dd3565b611c44826118a5565b611c605760405162461bcd60e51b815260040161093190612ca1565b60008281526006602090815260409091208251610a6792840190612557565b6000611c8a826118a5565b611ceb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610931565b6000611cf683610f9d565b9050806001600160a01b0316846001600160a01b03161480611d315750836001600160a01b0316611d26846108c9565b6001600160a01b0316145b8061153957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611539565b826001600160a01b0316611d7882610f9d565b6001600160a01b031614611de05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610931565b6001600160a01b038216611e425760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610931565b611e4d6000826118c2565b6001600160a01b0383166000908152600360205260408120805460019290611e76908490612dd3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ea4908490612be7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061193c8284612dea565b600061193c8284612e1f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f6a576040519150601f19603f3d011682016040523d82523d6000602084013e611f6f565b606091505b5050905080610a675760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610931565b611fbe848484611d65565b611fca84848484612228565b6113605760405162461bcd60e51b815260040161093190612e33565b60606016805461084690612af7565b6060612000826118a5565b6120645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610931565b600061206e611fe6565b9050600081511161208e576040518060200160405280600081525061193c565b8061209884612326565b6040516020016120a9929190612cef565b6040516020818303038152906040529392505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b85518110156121b557600086828151811061213357612133612e85565b602002602001015190508083116121755760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506121a2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806121ad81612e9b565b915050612116565b509092149392505050565b6121ca8383612424565b6121d76000848484612228565b610a675760405162461bcd60e51b815260040161093190612e33565b806013836040516122049190612bff565b908152604051908190036020019020805491151560ff199092169190911790555050565b60006001600160a01b0384163b1561231b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061226c903390899088908890600401612eb6565b6020604051808303816000875af19250505080156122a7575060408051601f3d908101601f191682019092526122a491810190612ef3565b60015b612301573d8080156122d5576040519150601f19603f3d011682016040523d82523d6000602084013e6122da565b606091505b5080516122f95760405162461bcd60e51b815260040161093190612e33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611539565b506001949350505050565b60608161234a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612374578061235e81612e9b565b915061236d9050600a83612e1f565b915061234e565b60008167ffffffffffffffff81111561238f5761238f6126ed565b6040519080825280601f01601f1916602001820160405280156123b9576020820181803683370190505b5090505b8415611539576123ce600183612dd3565b91506123db600a86612f10565b6123e6906030612be7565b60f81b8183815181106123fb576123fb612e85565b60200101906001600160f81b031916908160001a90535061241d600a86612e1f565b94506123bd565b6001600160a01b03821661247a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610931565b612483816118a5565b156124d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610931565b6001600160a01b03821660009081526003602052604081208054600192906124f9908490612be7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461256390612af7565b90600052602060002090601f01602090048101928261258557600085556125cb565b82601f1061259e57805160ff19168380011785556125cb565b828001600101855582156125cb579182015b828111156125cb5782518255916020019190600101906125b0565b506125d79291506125db565b5090565b5b808211156125d757600081556001016125dc565b6001600160e01b031981168114610c0a57600080fd5b60006020828403121561261857600080fd5b813561193c816125f0565b60005b8381101561263e578181015183820152602001612626565b838111156113605750506000910152565b60008151808452612667816020860160208601612623565b601f01601f19169290920160200192915050565b60208152600061193c602083018461264f565b6000602082840312156126a057600080fd5b5035919050565b80356001600160a01b03811681146126be57600080fd5b919050565b600080604083850312156126d657600080fd5b6126df836126a7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561271e5761271e6126ed565b604051601f8501601f19908116603f01168101908282118183101715612746576127466126ed565b8160405280935085815286868601111561275f57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261278a57600080fd5b61193c83833560208501612703565b6000602082840312156127ab57600080fd5b813567ffffffffffffffff8111156127c257600080fd5b61153984828501612779565b600080604083850312156127e157600080fd5b823567ffffffffffffffff808211156127f957600080fd5b61280586838701612779565b9350602085013591508082111561281b57600080fd5b5061282885828601612779565b9150509250929050565b60008060006060848603121561284757600080fd5b612850846126a7565b925061285e602085016126a7565b9150604084013590509250925092565b60006020828403121561288057600080fd5b61193c826126a7565b6000806040838503121561289c57600080fd5b82359150602083013567ffffffffffffffff8111156128ba57600080fd5b61282885828601612779565b803580151581146126be57600080fd5b600080604083850312156128e957600080fd5b6128f2836126a7565b9150612900602084016128c6565b90509250929050565b60008060006060848603121561291e57600080fd5b612927846126a7565b9250602084013567ffffffffffffffff8082111561294457600080fd5b61295087838801612779565b9350604086013591508082111561296657600080fd5b5061297386828701612779565b9150509250925092565b6000806000806080858703121561299357600080fd5b61299c856126a7565b93506129aa602086016126a7565b925060408501359150606085013567ffffffffffffffff8111156129cd57600080fd5b8501601f810187136129de57600080fd5b6129ed87823560208401612703565b91505092959194509250565b600060208284031215612a0b57600080fd5b61193c826128c6565b60008060408385031215612a2757600080fd5b612a30836126a7565b9150612900602084016126a7565b60008060008060608587031215612a5457600080fd5b843567ffffffffffffffff80821115612a6c57600080fd5b612a7888838901612779565b95506020870135915080821115612a8e57600080fd5b612a9a88838901612779565b94506040870135915080821115612ab057600080fd5b818701915087601f830112612ac457600080fd5b813581811115612ad357600080fd5b8860208260051b8501011115612ae857600080fd5b95989497505060200194505050565b600181811c90821680612b0b57607f821691505b6020821081141561119f57634e487b7160e01b600052602260045260246000fd5b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204e465400604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601f908201527f4d6178203130206d696e7473207065722077616c6c657420616c6c6f77656400604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612bfa57612bfa612bd1565b500190565b60008251612c11818460208701612623565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60008351612d01818460208801612623565b835190830190612d15818360208801612623565b01949350505050565b600080835481600182811c915080831680612d3a57607f831692505b6020808410821415612d5a57634e487b7160e01b86526022600452602486fd5b818015612d6e5760018114612d7f57612dac565b60ff19861689528489019650612dac565b60008a81526020902060005b86811015612da45781548b820152908501908301612d8b565b505084890196505b509498975050505050505050565b600060208284031215612dcc57600080fd5b5051919050565b600082821015612de557612de5612bd1565b500390565b6000816000190483118215151615612e0457612e04612bd1565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e2e57612e2e612e09565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612eaf57612eaf612bd1565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ee99083018461264f565b9695505050505050565b600060208284031215612f0557600080fd5b815161193c816125f0565b600082612f1f57612f1f612e09565b50069056fea2646970667358221220ebed78a4ada712b203587839f047257c9e13ada7cf51ebab033390121be6b60c64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80637f81be691161014f578063b6fb7279116100c1578063d09135051161007a578063d09135051461071f578063d547cfb71461073f578063e985e9c514610754578063f2fde38b1461079d578063f9a07444146107bd578063fd59e808146107d057600080fd5b8063b6fb72791461066d578063b88d4fde1461068d578063bcbdb335146106ad578063bedb86fb146106c9578063c4317b88146106e9578063c87b56dd146106ff57600080fd5b80638da5cb5b116101135780638da5cb5b146105bf57806395d89b41146105dd5780639ffdb65a146105f2578063a082499e14610612578063a22cb4651461062d578063aa3d92fb1461064d57600080fd5b80637f81be6914610522578063811d8ca314610558578063851fc4b61461056e578063853828b61461058e5780638d859f3e146105a357600080fd5b80632eb4a7ab116101e85780634783f0ef116101ac5780634783f0ef1461046d57806355f804b31461048d578063626be567146104ad5780636352211e146104c25780636d522418146104e257806370a082311461050257600080fd5b80632eb4a7ab146103ec57806334918dfd146104025780633502a716146104175780633bb3a24d1461042d57806342842e0e1461044d57600080fd5b80631211b0761161023a5780631211b0761461033b57806315b56d101461035a57806318160ddd1461037a5780631db12acf1461039957806323b872dd146103ac57806326a49e37146103cc57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b3146103065780630b9c66d414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612606565b6107e5565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610837565b6040516102a3919061267b565b3480156102da57600080fd5b506102ee6102e936600461268e565b6108c9565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506103266103213660046126c3565b610956565b005b610326610336366004612799565b610a6c565b34801561034757600080fd5b50600f5461029790610100900460ff1681565b34801561036657600080fd5b50610297610375366004612799565b610c0d565b34801561038657600080fd5b506008545b6040519081526020016102a3565b6103266103a73660046127ce565b610c38565b3480156103b857600080fd5b506103266103c7366004612832565b610d7e565b3480156103d857600080fd5b5061038b6103e736600461268e565b610daf565b3480156103f857600080fd5b5061038b600e5481565b34801561040e57600080fd5b50610326610dc3565b34801561042357600080fd5b5061038b61138881565b34801561043957600080fd5b506102c161044836600461268e565b610e0a565b34801561045957600080fd5b50610326610468366004612832565b610ecf565b34801561047957600080fd5b5061032661048836600461268e565b610eea565b34801561049957600080fd5b506103266104a8366004612799565b610f50565b3480156104b957600080fd5b5061038b610f8d565b3480156104ce57600080fd5b506102ee6104dd36600461268e565b610f9d565b3480156104ee57600080fd5b506102c16104fd36600461268e565b611014565b34801561050e57600080fd5b5061038b61051d36600461286e565b611031565b34801561052e57600080fd5b506102ee61053d36600461268e565b6000908152600260205260409020546001600160a01b031690565b34801561056457600080fd5b5061038b60095481565b34801561057a57600080fd5b50610326610589366004612889565b6110b8565b34801561059a57600080fd5b506103266110ec565b3480156105af57600080fd5b5061038b67016345785d8a000081565b3480156105cb57600080fd5b506007546001600160a01b03166102ee565b3480156105e957600080fd5b506102c1611162565b3480156105fe57600080fd5b5061029761060d366004612799565b611171565b34801561061e57600080fd5b5061038b666a94d74f43000081565b34801561063957600080fd5b506103266106483660046128d6565b6111a5565b34801561065957600080fd5b50600d546102ee906001600160a01b031681565b34801561067957600080fd5b50610326610688366004612909565b61126a565b34801561069957600080fd5b506103266106a836600461297d565b61132e565b3480156106b957600080fd5b5061038b6703782dace9d9000081565b3480156106d557600080fd5b506103266106e43660046129f9565b611366565b3480156106f557600080fd5b5061038b600a5481565b34801561070b57600080fd5b506102c161071a36600461268e565b6113d7565b34801561072b57600080fd5b50600c546102ee906001600160a01b031681565b34801561074b57600080fd5b506102c1611541565b34801561076057600080fd5b5061029761076f366004612a14565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a957600080fd5b506103266107b836600461286e565b6115cf565b6103266107cb366004612a3e565b611667565b3480156107dc57600080fd5b5061038b600a81565b60006001600160e01b031982166380ac58cd60e01b148061081657506001600160e01b03198216635b5e139f60e01b145b8061083157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461084690612af7565b80601f016020809104026020016040519081016040528092919081815260200182805461087290612af7565b80156108bf5780601f10610894576101008083540402835291602001916108bf565b820191906000526020600020905b8154815290600101906020018083116108a257829003601f168201915b5050505050905090565b60006108d4826118a5565b61093a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096182610f9d565b9050806001600160a01b0316836001600160a01b031614156109cf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610931565b336001600160a01b03821614806109eb57506109eb813361076f565b610a5d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610931565b610a6783836118c2565b505050565b6001600a541015610abf5760405162461bcd60e51b815260206004820152601e60248201527f416c6c20637573746f6d204e46547320616c7265616479206d696e74656400006044820152606401610931565b600f54610100900460ff16610ae65760405162461bcd60e51b815260040161093190612b2c565b6703782dace9d900003414610b0d5760405162461bcd60e51b815260040161093190612b63565b33600090815260116020526040902054600a90610b2b906001611930565b1115610b495760405162461bcd60e51b815260040161093190612b9a565b6113886008541015610bbd57610b6133600854611943565b610b6d6008548261195d565b33600090815260116020526040902054610b88906001611930565b33600090815260116020526040902055600a54610ba6906001611c2f565b600a55600854610bb7906001612be7565b60085550565b600f805461ff001981166101009182900460ff1615909102179055604051339060009067016345785d8a00009082818181858883f19350505050158015610c08573d6000803e3d6000fd5b505b50565b6000601382604051610c1f9190612bff565b9081526040519081900360200190205460ff1692915050565b600f54610100900460ff16610c5f5760405162461bcd60e51b815260040161093190612b2c565b67016345785d8a00003414610c865760405162461bcd60e51b815260040161093190612b63565b33600090815260116020526040902054600a90610ca4906001611930565b1115610cc25760405162461bcd60e51b815260040161093190612b9a565b6113886008541015610d3357610cda33600854611943565b610ce66008548361195d565b610cf260085482611c3b565b33600090815260116020526040902054610d0d906001611930565b33600090815260116020526040902055600854610d2b906001612be7565b600855610c08565b600f805461ff001981166101009182900460ff1615909102179055604051339060009067016345785d8a00009082818181858883f19350505050158015610a67573d6000803e3d6000fd5b610d883382611c7f565b610da45760405162461bcd60e51b815260040161093190612c1b565b610a67838383611d65565b600061083167016345785d8a000083611f05565b6007546001600160a01b03163314610ded5760405162461bcd60e51b815260040161093190612c6c565b600f805461ff001981166101009182900460ff1615909102179055565b6060610e15826118a5565b610e315760405162461bcd60e51b815260040161093190612ca1565b60008281526014602052604090208054610e4a90612af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7690612af7565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b50505050509050919050565b610a678383836040518060200160405280600081525061132e565b6007546001600160a01b03163314610f145760405162461bcd60e51b815260040161093190612c6c565b600e8190556040518181527f90004c04698bc3322499a575ed3752dd4abf33e0a7294c06a787a0fe01bea941906020015b60405180910390a150565b6007546001600160a01b03163314610f7a5760405162461bcd60e51b815260040161093190612c6c565b8051610c08906016906020840190612557565b6000610f9860155490565b905090565b6000818152600260205260408120546001600160a01b0316806108315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610931565b6000818152601260205260409020805460609190610e4a90612af7565b60006001600160a01b03821661109c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610931565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146110e25760405162461bcd60e51b815260040161093190612c6c565b610c088282611c3b565b6007546001600160a01b031633146111165760405162461bcd60e51b815260040161093190612c6c565b478061112157600080fd5b600d5461114c906001600160a01b03166111476064611141856032611f05565b90611f11565b611f1d565b600c54610c0a906001600160a01b031647611f1d565b60606001805461084690612af7565b600080829050600181511080611188575060198151115b156111965750600092915050565b50600192915050565b50919050565b6001600160a01b0382163314156111fe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610931565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146112945760405162461bcd60e51b815260040161093190612c6c565b600160095410156112dc5760405162461bcd60e51b81526020600482015260126024820152714e6f7420656e6f756768207265736572766560701b6044820152606401610931565b600854600b8190556112ef908490611943565b6112fb600b548361195d565b61130760085482611c3b565b600954611315906001611c2f565b600955600854611326906001612be7565b600855505050565b6113383383611c7f565b6113545760405162461bcd60e51b815260040161093190612c1b565b61136084848484611fb3565b50505050565b6007546001600160a01b031633146113905760405162461bcd60e51b815260040161093190612c6c565b600f805460ff191682151590811790915560405160ff909116151581527f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d390602001610f45565b60606113e2826118a5565b6114485760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610931565b6000828152600660205260408120805461146190612af7565b80601f016020809104026020016040519081016040528092919081815260200182805461148d90612af7565b80156114da5780601f106114af576101008083540402835291602001916114da565b820191906000526020600020905b8154815290600101906020018083116114bd57829003601f168201915b5050505050905060006114eb611fe6565b90508051600014156114fe575092915050565b815115611530578082604051602001611518929190612cef565b60405160208183030381529060405292505050919050565b61153984611ff5565b949350505050565b6016805461154e90612af7565b80601f016020809104026020016040519081016040528092919081815260200182805461157a90612af7565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b505050505081565b6007546001600160a01b031633146115f95760405162461bcd60e51b815260040161093190612c6c565b6001600160a01b03811661165e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610931565b610c0a816120bf565b600f543390610100900460ff166116905760405162461bcd60e51b815260040161093190612b2c565b666a94d74f43000034146116b65760405162461bcd60e51b815260040161093190612b63565b33600090815260116020526040902054600a906116d4906001611930565b11156116f25760405162461bcd60e51b815260040161093190612b9a565b61176883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff19606088901b166020820152909250603401905060405160208183030381529060405280519060200120612111565b6117a45760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610931565b6113886008541015611815576117bc33600854611943565b6117c86008548661195d565b6117d460085485611c3b565b336000908152601160205260409020546117ef906001611930565b3360009081526011602052604090205560085461180d906001612be7565b600855611862565b600f805461ff001981166101009182900460ff1615909102179055604051339060009067016345785d8a00009082818181858883f19350505050158015611860573d6000803e3d6000fd5b505b6040516001600160a01b03821681527f67c400238edbf2cfe078e9c46b03af4a14f535dafde7829c4ebd8ffc76448bee9060200160405180910390a15050505050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f782610f9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061193c8284612be7565b9392505050565b610c088282604051806020016040528060008152506121c0565b61196681611171565b15156001146119ae5760405162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b6044820152606401610931565b6000828152601260205260409081902090516002916119cc91612d1e565b602060405180830381855afa1580156119e9573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611a0c9190612dba565b600282604051611a1c9190612bff565b602060405180830381855afa158015611a39573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611a5c9190612dba565b1415611ab65760405162461bcd60e51b815260206004820152602360248201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206044820152626f6e6560e81b6064820152608401610931565b611abf81610c0d565b15611b045760405162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b6044820152606401610931565b60008281526012602052604081208054611b1d90612af7565b90501115611bc85760008281526012602052604090208054611bc89190611b4390612af7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6f90612af7565b8015611bbc5780601f10611b9157610100808354040283529160200191611bbc565b820191906000526020600020905b815481529060010190602001808311611b9f57829003601f168201915b505050505060006121f3565b611bd38160016121f3565b60008281526012602090815260409091208251611bf292840190612557565b50817f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b82604051611c23919061267b565b60405180910390a25050565b600061193c8284612dd3565b611c44826118a5565b611c605760405162461bcd60e51b815260040161093190612ca1565b60008281526006602090815260409091208251610a6792840190612557565b6000611c8a826118a5565b611ceb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610931565b6000611cf683610f9d565b9050806001600160a01b0316846001600160a01b03161480611d315750836001600160a01b0316611d26846108c9565b6001600160a01b0316145b8061153957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611539565b826001600160a01b0316611d7882610f9d565b6001600160a01b031614611de05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610931565b6001600160a01b038216611e425760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610931565b611e4d6000826118c2565b6001600160a01b0383166000908152600360205260408120805460019290611e76908490612dd3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ea4908490612be7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061193c8284612dea565b600061193c8284612e1f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f6a576040519150601f19603f3d011682016040523d82523d6000602084013e611f6f565b606091505b5050905080610a675760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610931565b611fbe848484611d65565b611fca84848484612228565b6113605760405162461bcd60e51b815260040161093190612e33565b60606016805461084690612af7565b6060612000826118a5565b6120645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610931565b600061206e611fe6565b9050600081511161208e576040518060200160405280600081525061193c565b8061209884612326565b6040516020016120a9929190612cef565b6040516020818303038152906040529392505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b85518110156121b557600086828151811061213357612133612e85565b602002602001015190508083116121755760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506121a2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806121ad81612e9b565b915050612116565b509092149392505050565b6121ca8383612424565b6121d76000848484612228565b610a675760405162461bcd60e51b815260040161093190612e33565b806013836040516122049190612bff565b908152604051908190036020019020805491151560ff199092169190911790555050565b60006001600160a01b0384163b1561231b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061226c903390899088908890600401612eb6565b6020604051808303816000875af19250505080156122a7575060408051601f3d908101601f191682019092526122a491810190612ef3565b60015b612301573d8080156122d5576040519150601f19603f3d011682016040523d82523d6000602084013e6122da565b606091505b5080516122f95760405162461bcd60e51b815260040161093190612e33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611539565b506001949350505050565b60608161234a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612374578061235e81612e9b565b915061236d9050600a83612e1f565b915061234e565b60008167ffffffffffffffff81111561238f5761238f6126ed565b6040519080825280601f01601f1916602001820160405280156123b9576020820181803683370190505b5090505b8415611539576123ce600183612dd3565b91506123db600a86612f10565b6123e6906030612be7565b60f81b8183815181106123fb576123fb612e85565b60200101906001600160f81b031916908160001a90535061241d600a86612e1f565b94506123bd565b6001600160a01b03821661247a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610931565b612483816118a5565b156124d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610931565b6001600160a01b03821660009081526003602052604081208054600192906124f9908490612be7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461256390612af7565b90600052602060002090601f01602090048101928261258557600085556125cb565b82601f1061259e57805160ff19168380011785556125cb565b828001600101855582156125cb579182015b828111156125cb5782518255916020019190600101906125b0565b506125d79291506125db565b5090565b5b808211156125d757600081556001016125dc565b6001600160e01b031981168114610c0a57600080fd5b60006020828403121561261857600080fd5b813561193c816125f0565b60005b8381101561263e578181015183820152602001612626565b838111156113605750506000910152565b60008151808452612667816020860160208601612623565b601f01601f19169290920160200192915050565b60208152600061193c602083018461264f565b6000602082840312156126a057600080fd5b5035919050565b80356001600160a01b03811681146126be57600080fd5b919050565b600080604083850312156126d657600080fd5b6126df836126a7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561271e5761271e6126ed565b604051601f8501601f19908116603f01168101908282118183101715612746576127466126ed565b8160405280935085815286868601111561275f57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261278a57600080fd5b61193c83833560208501612703565b6000602082840312156127ab57600080fd5b813567ffffffffffffffff8111156127c257600080fd5b61153984828501612779565b600080604083850312156127e157600080fd5b823567ffffffffffffffff808211156127f957600080fd5b61280586838701612779565b9350602085013591508082111561281b57600080fd5b5061282885828601612779565b9150509250929050565b60008060006060848603121561284757600080fd5b612850846126a7565b925061285e602085016126a7565b9150604084013590509250925092565b60006020828403121561288057600080fd5b61193c826126a7565b6000806040838503121561289c57600080fd5b82359150602083013567ffffffffffffffff8111156128ba57600080fd5b61282885828601612779565b803580151581146126be57600080fd5b600080604083850312156128e957600080fd5b6128f2836126a7565b9150612900602084016128c6565b90509250929050565b60008060006060848603121561291e57600080fd5b612927846126a7565b9250602084013567ffffffffffffffff8082111561294457600080fd5b61295087838801612779565b9350604086013591508082111561296657600080fd5b5061297386828701612779565b9150509250925092565b6000806000806080858703121561299357600080fd5b61299c856126a7565b93506129aa602086016126a7565b925060408501359150606085013567ffffffffffffffff8111156129cd57600080fd5b8501601f810187136129de57600080fd5b6129ed87823560208401612703565b91505092959194509250565b600060208284031215612a0b57600080fd5b61193c826128c6565b60008060408385031215612a2757600080fd5b612a30836126a7565b9150612900602084016126a7565b60008060008060608587031215612a5457600080fd5b843567ffffffffffffffff80821115612a6c57600080fd5b612a7888838901612779565b95506020870135915080821115612a8e57600080fd5b612a9a88838901612779565b94506040870135915080821115612ab057600080fd5b818701915087601f830112612ac457600080fd5b813581811115612ad357600080fd5b8860208260051b8501011115612ae857600080fd5b95989497505060200194505050565b600181811c90821680612b0b57607f821691505b6020821081141561119f57634e487b7160e01b600052602260045260246000fd5b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204e465400604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601f908201527f4d6178203130206d696e7473207065722077616c6c657420616c6c6f77656400604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612bfa57612bfa612bd1565b500190565b60008251612c11818460208701612623565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60008351612d01818460208801612623565b835190830190612d15818360208801612623565b01949350505050565b600080835481600182811c915080831680612d3a57607f831692505b6020808410821415612d5a57634e487b7160e01b86526022600452602486fd5b818015612d6e5760018114612d7f57612dac565b60ff19861689528489019650612dac565b60008a81526020902060005b86811015612da45781548b820152908501908301612d8b565b505084890196505b509498975050505050505050565b600060208284031215612dcc57600080fd5b5051919050565b600082821015612de557612de5612bd1565b500390565b6000816000190483118215151615612e0457612e04612bd1565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e2e57612e2e612e09565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612eaf57612eaf612bd1565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ee99083018461264f565b9695505050505050565b600060208284031215612f0557600080fd5b815161193c816125f0565b600082612f1f57612f1f612e09565b50069056fea2646970667358221220ebed78a4ada712b203587839f047257c9e13ada7cf51ebab033390121be6b60c64736f6c634300080a0033

Deployed Bytecode Sourcemap

55315:8594:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34029:293;;;;;;;;;;-1:-1:-1;34029:293:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34029:293:0;;;;;;;;35136:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36695:221::-;;;;;;;;;;-1:-1:-1;36695:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;36695:221:0;1528:203:1;36218:411:0;;;;;;;;;;-1:-1:-1;36218:411:0;;;;;:::i;:::-;;:::i;:::-;;58703:874;;;;;;:::i;:::-;;:::i;56082:30::-;;;;;;;;;;-1:-1:-1;56082:30:0;;;;;;;;;;;62863:128;;;;;;;;;;-1:-1:-1;62863:128:0;;;;;:::i;:::-;;:::i;63813:90::-;;;;;;;;;;-1:-1:-1;63886:12:0;;63813:90;;;3642:25:1;;;3630:2;3615:18;63813:90:0;3496:177:1;57868:827:0;;;;;;:::i;:::-;;:::i;37585:339::-;;;;;;;;;;-1:-1:-1;37585:339:0;;;;;:::i;:::-;;:::i;60704:104::-;;;;;;;;;;-1:-1:-1;60704:104:0;;;;;:::i;:::-;;:::i;56018:25::-;;;;;;;;;;;;;;;;57019:85;;;;;;;;;;;;;:::i;55485:43::-;;;;;;;;;;;;55524:4;55485:43;;57654:206;;;;;;;;;;-1:-1:-1;57654:206:0;;;;;:::i;:::-;;:::i;37995:185::-;;;;;;;;;;-1:-1:-1;37995:185:0;;;;;:::i;:::-;;:::i;61388:158::-;;;;;;;;;;-1:-1:-1;61388:158:0;;;;;:::i;:::-;;:::i;56910:101::-;;;;;;;;;;-1:-1:-1;56910:101:0;;;;;:::i;:::-;;:::i;57116:103::-;;;;;;;;;;;;;:::i;34656:239::-;;;;;;;;;;-1:-1:-1;34656:239:0;;;;;:::i;:::-;;:::i;63138:120::-;;;;;;;;;;-1:-1:-1;63138:120:0;;;;;:::i;:::-;;:::i;34386:208::-;;;;;;;;;;-1:-1:-1;34386:208:0;;;;;:::i;:::-;;:::i;34960:109::-;;;;;;;;;;-1:-1:-1;34960:109:0;;;;;:::i;:::-;35018:7;35045:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35045:16:0;;34960:109;55740:31;;;;;;;;;;;;;;;;57509:137;;;;;;;;;;-1:-1:-1;57509:137:0;;;;;:::i;:::-;;:::i;60937:254::-;;;;;;;;;;;;;:::i;55535:41::-;;;;;;;;;;;;55567:9;55535:41;;14051:87;;;;;;;;;;-1:-1:-1;14124:6:0;;-1:-1:-1;;;;;14124:6:0;14051:87;;35305:104;;;;;;;;;;;;;:::i;62648:206::-;;;;;;;;;;-1:-1:-1;62648:206:0;;;;;:::i;:::-;;:::i;55632:51::-;;;;;;;;;;;;55673:10;55632:51;;36988:295;;;;;;;;;;-1:-1:-1;36988:295:0;;;;;:::i;:::-;;:::i;55936:75::-;;;;;;;;;;-1:-1:-1;55936:75:0;;;;-1:-1:-1;;;;;55936:75:0;;;61557:409;;;;;;;;;;-1:-1:-1;61557:409:0;;;;;:::i;:::-;;:::i;38251:328::-;;;;;;;;;;-1:-1:-1;38251:328:0;;;;;:::i;:::-;;:::i;55580:48::-;;;;;;;;;;;;55618:10;55580:48;;60816:113;;;;;;;;;;-1:-1:-1;60816:113:0;;;;;:::i;:::-;;:::i;55775:37::-;;;;;;;;;;;;;;;;53748:679;;;;;;;;;;-1:-1:-1;53748:679:0;;;;;:::i;:::-;;:::i;55854:75::-;;;;;;;;;;-1:-1:-1;55854:75:0;;;;-1:-1:-1;;;;;55854:75:0;;;56452:26;;;;;;;;;;;;;:::i;37354:164::-;;;;;;;;;;-1:-1:-1;37354:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37475:25:0;;;37451:4;37475:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37354:164;14957:192;;;;;;;;;;-1:-1:-1;14957:192:0;;;;;:::i;:::-;;:::i;59585:1111::-;;;;;;:::i;:::-;;:::i;55690:43::-;;;;;;;;;;;;55731:2;55690:43;;34029:293;34131:4;-1:-1:-1;;;;;;34164:40:0;;-1:-1:-1;;;34164:40:0;;:101;;-1:-1:-1;;;;;;;34217:48:0;;-1:-1:-1;;;34217:48:0;34164:101;:150;;;-1:-1:-1;;;;;;;;;;26152:40:0;;;34278:36;34148:166;34029:293;-1:-1:-1;;34029:293:0:o;35136:100::-;35190:13;35223:5;35216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35136:100;:::o;36695:221::-;36771:7;36799:16;36807:7;36799;:16::i;:::-;36791:73;;;;-1:-1:-1;;;36791:73:0;;9287:2:1;36791:73:0;;;9269:21:1;9326:2;9306:18;;;9299:30;9365:34;9345:18;;;9338:62;-1:-1:-1;;;9416:18:1;;;9409:42;9468:19;;36791:73:0;;;;;;;;;-1:-1:-1;36884:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36884:24:0;;36695:221::o;36218:411::-;36299:13;36315:23;36330:7;36315:14;:23::i;:::-;36299:39;;36363:5;-1:-1:-1;;;;;36357:11:0;:2;-1:-1:-1;;;;;36357:11:0;;;36349:57;;;;-1:-1:-1;;;36349:57:0;;9700:2:1;36349:57:0;;;9682:21:1;9739:2;9719:18;;;9712:30;9778:34;9758:18;;;9751:62;-1:-1:-1;;;9829:18:1;;;9822:31;9870:19;;36349:57:0;9498:397:1;36349:57:0;12919:10;-1:-1:-1;;;;;36441:21:0;;;;:62;;-1:-1:-1;36466:37:0;36483:5;12919:10;37354:164;:::i;36466:37::-;36419:168;;;;-1:-1:-1;;;36419:168:0;;10102:2:1;36419:168:0;;;10084:21:1;10141:2;10121:18;;;10114:30;10180:34;10160:18;;;10153:62;10251:26;10231:18;;;10224:54;10295:19;;36419:168:0;9900:420:1;36419:168:0;36600:21;36609:2;36613:7;36600:8;:21::i;:::-;36288:341;36218:411;;:::o;58703:874::-;58794:1;58774:16;;:21;;58766:64;;;;-1:-1:-1;;;58766:64:0;;10527:2:1;58766:64:0;;;10509:21:1;10566:2;10546:18;;;10539:30;10605:32;10585:18;;;10578:60;10655:18;;58766:64:0;10325:354:1;58766:64:0;58849:10;;;;;;;58841:54;;;;-1:-1:-1;;;58841:54:0;;;;;;;:::i;:::-;55618:10;58914:9;:24;58906:68;;;;-1:-1:-1;;;58906:68:0;;;;;;;:::i;:::-;59015:10;58993:33;;;;:21;:33;;;;;;59037:2;;58993:40;;59031:1;58993:37;:40::i;:::-;:46;;58985:89;;;;-1:-1:-1;;;58985:89:0;;;;;;;:::i;:::-;55524:4;59103:12;;:27;59099:471;;;59169:35;59179:10;59191:12;;59169:9;:35::i;:::-;59211:32;59222:12;;59235:7;59211:10;:32::i;:::-;59320:10;59298:33;;;;:21;:33;;;;;;:40;;59336:1;59298:37;:40::i;:::-;59284:10;59262:33;;;;:21;:33;;;;;:76;59364:16;;:23;;59385:1;59364:20;:23::i;:::-;59345:16;:42;59421:12;;:16;;59436:1;59421:16;:::i;:::-;59406:12;:31;58703:874;:::o;59099:471::-;59491:10;;;-1:-1:-1;;59477:24:0;;59491:10;;;;;;;59490:11;59477:24;;;;;;59519:35;;59527:10;;-1:-1:-1;;55567:9:0;;-1:-1:-1;59519:35:0;-1:-1:-1;59519:35:0;55567:9;59527:10;-1:-1:-1;59519:35:0;;;;;;;;;;;;;;;;;;;;59099:471;58703:874;:::o;62863:128::-;62934:4;62958:13;62972:10;62958:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;62863:128;-1:-1:-1;;62863:128:0:o;57868:827::-;57967:10;;;;;;;57959:54;;;;-1:-1:-1;;;57959:54:0;;;;;;;:::i;:::-;55567:9;58032;:18;58024:62;;;;-1:-1:-1;;;58024:62:0;;;;;;;:::i;:::-;58127:10;58105:33;;;;:21;:33;;;;;;58149:2;;58105:40;;58143:1;58105:37;:40::i;:::-;:46;;58097:89;;;;-1:-1:-1;;;58097:89:0;;;;;;;:::i;:::-;55524:4;58215:12;;:27;58211:477;;;58281:35;58291:10;58303:12;;58281:9;:35::i;:::-;58323:32;58334:12;;58347:7;58323:10;:32::i;:::-;58374:36;58387:12;;58400:9;58374:12;:36::i;:::-;58487:10;58465:33;;;;:21;:33;;;;;;:40;;58503:1;58465:37;:40::i;:::-;58451:10;58429:33;;;;:21;:33;;;;;:76;58539:12;;:16;;58554:1;58539:16;:::i;:::-;58524:12;:31;58211:477;;;58609:10;;;-1:-1:-1;;58595:24:0;;58609:10;;;;;;;58608:11;58595:24;;;;;;58637:35;;58645:10;;-1:-1:-1;;55567:9:0;;-1:-1:-1;58637:35:0;-1:-1:-1;58637:35:0;55567:9;58645:10;-1:-1:-1;58637:35:0;;;;;;;;;;;;;;;;;;37585:339;37780:41;12919:10;37813:7;37780:18;:41::i;:::-;37772:103;;;;-1:-1:-1;;;37772:103:0;;;;;;;:::i;:::-;37888:28;37898:4;37904:2;37908:7;37888:9;:28::i;60704:104::-;60756:7;60783:17;55567:9;60793:6;60783:9;:17::i;57019:85::-;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;57086:10:::1;::::0;;-1:-1:-1;;57072:24:0;::::1;57086:10;::::0;;;::::1;;;57085:11;57072:24:::0;;::::1;;::::0;;57019:85::o;57654:206::-;57713:13;57747:16;57755:7;57747;:16::i;:::-;57739:75;;;;-1:-1:-1;;;57739:75:0;;;;;;;:::i;:::-;57832:19;;;;:10;:19;;;;;57825:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57654:206;;;:::o;37995:185::-;38133:39;38150:4;38156:2;38160:7;38133:39;;;;;;;;;;;;:16;:39::i;61388:158::-;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;61467:10:::1;:26:::0;;;61509:29:::1;::::0;3642:25:1;;;61509:29:0::1;::::0;3630:2:1;3615:18;61509:29:0::1;;;;;;;;61388:158:::0;:::o;56910:101::-;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;56981:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;57116:103::-:0;57159:7;57186:25;:15;2698:14;;2606:114;57186:25;57179:32;;57116:103;:::o;34656:239::-;34728:7;34764:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34764:16:0;34799:19;34791:73;;;;-1:-1:-1;;;34791:73:0;;13706:2:1;34791:73:0;;;13688:21:1;13745:2;13725:18;;;13718:30;13784:34;13764:18;;;13757:62;-1:-1:-1;;;13835:18:1;;;13828:39;13884:19;;34791:73:0;13504:405:1;63138:120:0;63233:17;;;;:10;:17;;;;;63226:24;;63200:13;;63233:17;63226:24;;;:::i;34386:208::-;34458:7;-1:-1:-1;;;;;34486:19:0;;34478:74;;;;-1:-1:-1;;;34478:74:0;;14116:2:1;34478:74:0;;;14098:21:1;14155:2;14135:18;;;14128:30;14194:34;14174:18;;;14167:62;-1:-1:-1;;;14245:18:1;;;14238:40;14295:19;;34478:74:0;13914:406:1;34478:74:0;-1:-1:-1;;;;;;34570:16:0;;;;;:9;:16;;;;;;;34386:208::o;57509:137::-;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;57606:32:::1;57619:7;57628:9;57606:12;:32::i;60937:254::-:0;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;61006:21:::1;61046:11:::0;61038:20:::1;;;::::0;::::1;;61080:15;::::0;61069:53:::1;::::0;-1:-1:-1;;;;;61080:15:0::1;61097:24;61117:3;61097:15;:7:::0;61109:2:::1;61097:11;:15::i;:::-;:19:::0;::::1;:24::i;:::-;61069:10;:53::i;:::-;61144:15;::::0;61133:50:::1;::::0;-1:-1:-1;;;;;61144:15:0::1;61161:21;61133:10;:50::i;35305:104::-:0;35361:13;35394:7;35387:14;;;;;:::i;62648:206::-;62710:4;62726:14;62749:3;62726:27;;62778:1;62767;:8;:12;:29;;;;62794:2;62783:1;:8;:13;62767:29;62764:82;;;-1:-1:-1;62805:5:0;;62648:206;-1:-1:-1;;62648:206:0:o;62764:82::-;-1:-1:-1;62842:4:0;;62648:206;-1:-1:-1;;62648:206:0:o;62764:82::-;62715:139;62648:206;;;:::o;36988:295::-;-1:-1:-1;;;;;37091:24:0;;12919:10;37091:24;;37083:62;;;;-1:-1:-1;;;37083:62:0;;14527:2:1;37083:62:0;;;14509:21:1;14566:2;14546:18;;;14539:30;14605:27;14585:18;;;14578:55;14650:18;;37083:62:0;14325:349:1;37083:62:0;12919:10;37158:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37158:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37158:53:0;;;;;;;;;;37227:48;;540:41:1;;;37158:42:0;;12919:10;37227:48;;513:18:1;37227:48:0;;;;;;;36988:295;;:::o;61557:409::-;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;61696:1:::1;61682:10;;:15;;61674:46;;;::::0;-1:-1:-1;;;61674:46:0;;14881:2:1;61674:46:0::1;::::0;::::1;14863:21:1::0;14920:2;14900:18;;;14893:30;-1:-1:-1;;;14939:18:1;;;14932:48;14997:18;;61674:46:0::1;14679:342:1::0;61674:46:0::1;61744:12;::::0;61735:6:::1;:21:::0;;;61771:22:::1;::::0;61781:3;;61771:9:::1;:22::i;:::-;61799:26;61810:6;;61817:7;61799:10;:26::i;:::-;61831:36;61844:12;;61857:9;61831:12;:36::i;:::-;61895:10;::::0;:17:::1;::::0;61910:1:::1;61895:14;:17::i;:::-;61882:10;:30:::0;61942:12:::1;::::0;:16:::1;::::0;61957:1:::1;61942:16;:::i;:::-;61927:12;:31:::0;-1:-1:-1;;;61557:409:0:o;38251:328::-;38426:41;12919:10;38459:7;38426:18;:41::i;:::-;38418:103;;;;-1:-1:-1;;;38418:103:0;;;;;;;:::i;:::-;38532:39;38546:4;38552:2;38556:7;38565:5;38532:13;:39::i;:::-;38251:328;;;;:::o;60816:113::-;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;60874:5:::1;:14:::0;;-1:-1:-1;;60874:14:0::1;::::0;::::1;;::::0;;::::1;::::0;;;60904:17:::1;::::0;60874:14:::1;60915:5:::0;;;565:14:1;558:22;540:41;;60904:17:0::1;::::0;528:2:1;513:18;60904:17:0::1;400:187:1::0;53748:679:0;53821:13;53855:16;53863:7;53855;:16::i;:::-;53847:78;;;;-1:-1:-1;;;53847:78:0;;15228:2:1;53847:78:0;;;15210:21:1;15267:2;15247:18;;;15240:30;15306:34;15286:18;;;15279:62;-1:-1:-1;;;15357:18:1;;;15350:47;15414:19;;53847:78:0;15026:413:1;53847:78:0;53938:23;53964:19;;;:10;:19;;;;;53938:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53994:18;54015:10;:8;:10::i;:::-;53994:31;;54107:4;54101:18;54123:1;54101:23;54097:72;;;-1:-1:-1;54148:9:0;53748:679;-1:-1:-1;;53748:679:0:o;54097:72::-;54273:23;;:27;54269:108;;54348:4;54354:9;54331:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54317:48;;;;53748:679;;;:::o;54269:108::-;54396:23;54411:7;54396:14;:23::i;:::-;54389:30;53748:679;-1:-1:-1;;;;53748:679:0:o;56452:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14957:192::-;14124:6;;-1:-1:-1;;;;;14124:6:0;12919:10;14271:23;14263:68;;;;-1:-1:-1;;;14263:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15046:22:0;::::1;15038:73;;;::::0;-1:-1:-1;;;15038:73:0;;16121:2:1;15038:73:0::1;::::0;::::1;16103:21:1::0;16160:2;16140:18;;;16133:30;16199:34;16179:18;;;16172:62;-1:-1:-1;;;16250:18:1;;;16243:36;16296:19;;15038:73:0::1;15919:402:1::0;15038:73:0::1;15122:19;15132:8;15122:9;:19::i;59585:1111::-:0;59768:10;;59737;;59768;;;;;59760:54;;;;-1:-1:-1;;;59760:54:0;;;;;;;:::i;:::-;55673:10;59833:9;:27;59825:71;;;;-1:-1:-1;;;59825:71:0;;;;;;;:::i;:::-;59937:10;59915:33;;;;:21;:33;;;;;;59959:2;;59915:40;;59953:1;59915:37;:40::i;:::-;:46;;59907:89;;;;-1:-1:-1;;;59907:89:0;;;;;;;:::i;:::-;60053:82;60072:11;;60053:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;60085:10:0;;60108:23;;-1:-1:-1;;16475:2:1;16471:15;;;16467:53;60108:23:0;;;16455:66:1;60085:10:0;;-1:-1:-1;16537:12:1;;;-1:-1:-1;60108:23:0;;;;;;;;;;;;60098:34;;;;;;60053:18;:82::i;:::-;60045:108;;;;-1:-1:-1;;;60045:108:0;;16762:2:1;60045:108:0;;;16744:21:1;16801:2;16781:18;;;16774:30;-1:-1:-1;;;16820:18:1;;;16813:43;16873:18;;60045:108:0;16560:337:1;60045:108:0;55524:4;60176:12;;:27;60172:477;;;60242:35;60252:10;60264:12;;60242:9;:35::i;:::-;60284:32;60295:12;;60308:7;60284:10;:32::i;:::-;60335:36;60348:12;;60361:9;60335:12;:36::i;:::-;60448:10;60426:33;;;;:21;:33;;;;;;:40;;60464:1;60426:37;:40::i;:::-;60412:10;60390:33;;;;:21;:33;;;;;:76;60500:12;;:16;;60515:1;60500:16;:::i;:::-;60485:12;:31;60172:477;;;60570:10;;;-1:-1:-1;;60556:24:0;;60570:10;;;;;;;60569:11;60556:24;;;;;;60598:35;;60606:10;;-1:-1:-1;;55567:9:0;;-1:-1:-1;60598:35:0;-1:-1:-1;60598:35:0;55567:9;60606:10;-1:-1:-1;60598:35:0;;;;;;;;;;;;;;;;;;;;60172:477;60666:22;;-1:-1:-1;;;;;1692:32:1;;1674:51;;60666:22:0;;1662:2:1;1647:18;60666:22:0;;;;;;;59710:986;59585:1111;;;;:::o;40089:127::-;40154:4;40178:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40178:16:0;:30;;;40089:127::o;44089:174::-;44164:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44164:29:0;-1:-1:-1;;;;;44164:29:0;;;;;;;;:24;;44218:23;44164:24;44218:14;:23::i;:::-;-1:-1:-1;;;;;44209:46:0;;;;;;;;;;;44089:174;;:::o;5987:98::-;6045:7;6072:5;6076:1;6072;:5;:::i;:::-;6065:12;5987:98;-1:-1:-1;;;5987:98:0:o;41073:110::-;41149:26;41159:2;41163:7;41149:26;;;;;;;;;;;;:9;:26::i;61974:658::-;62063:21;62076:7;62063:12;:21::i;:::-;:29;;62088:4;62063:29;62055:62;;;;-1:-1:-1;;;62055:62:0;;17104:2:1;62055:62:0;;;17086:21:1;17143:2;17123:18;;;17116:30;-1:-1:-1;;;17162:18:1;;;17155:50;17222:18;;62055:62:0;16902:344:1;62055:62:0;62175:19;;;;:10;:19;;;;;;;62162:34;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62136:22;62149:7;62136:22;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;62128:108;;;;-1:-1:-1;;;62128:108:0;;19159:2:1;62128:108:0;;;19141:21:1;19198:2;19178:18;;;19171:30;19237:34;19217:18;;;19210:62;-1:-1:-1;;;19288:18:1;;;19281:33;19331:19;;62128:108:0;18957:399:1;62128:108:0;62255:23;62270:7;62255:14;:23::i;:::-;:32;62247:66;;;;-1:-1:-1;;;62247:66:0;;19563:2:1;62247:66:0;;;19545:21:1;19602:2;19582:18;;;19575:30;-1:-1:-1;;;19621:18:1;;;19614:51;19682:18;;62247:66:0;19361:345:1;62247:66:0;62423:1;62393:19;;;:10;:19;;;;;62387:33;;;;;:::i;:::-;;;:37;62383:115;;;62459:19;;;;:10;:19;;;;;62441:45;;;;62459:19;62441:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62480:5;62441:17;:45::i;:::-;62508:32;62526:7;62535:4;62508:17;:32::i;:::-;62551:19;;;;:10;:19;;;;;;;;:29;;;;;;;;:::i;:::-;;62607:7;62596:28;62616:7;62596:28;;;;;;:::i;:::-;;;;;;;;61974:658;;:::o;6368:98::-;6426:7;6453:5;6457:1;6453;:5;:::i;54583:217::-;54683:16;54691:7;54683;:16::i;:::-;54675:75;;;;-1:-1:-1;;;54675:75:0;;;;;;;:::i;:::-;54761:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;40383:348::-;40476:4;40501:16;40509:7;40501;:16::i;:::-;40493:73;;;;-1:-1:-1;;;40493:73:0;;20043:2:1;40493:73:0;;;20025:21:1;20082:2;20062:18;;;20055:30;20121:34;20101:18;;;20094:62;-1:-1:-1;;;20172:18:1;;;20165:42;20224:19;;40493:73:0;19841:408:1;40493:73:0;40577:13;40593:23;40608:7;40593:14;:23::i;:::-;40577:39;;40646:5;-1:-1:-1;;;;;40635:16:0;:7;-1:-1:-1;;;;;40635:16:0;;:51;;;;40679:7;-1:-1:-1;;;;;40655:31:0;:20;40667:7;40655:11;:20::i;:::-;-1:-1:-1;;;;;40655:31:0;;40635:51;:87;;;-1:-1:-1;;;;;;37475:25:0;;;37451:4;37475:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40690:32;37354:164;43393:578;43552:4;-1:-1:-1;;;;;43525:31:0;:23;43540:7;43525:14;:23::i;:::-;-1:-1:-1;;;;;43525:31:0;;43517:85;;;;-1:-1:-1;;;43517:85:0;;20456:2:1;43517:85:0;;;20438:21:1;20495:2;20475:18;;;20468:30;20534:34;20514:18;;;20507:62;-1:-1:-1;;;20585:18:1;;;20578:39;20634:19;;43517:85:0;20254:405:1;43517:85:0;-1:-1:-1;;;;;43621:16:0;;43613:65;;;;-1:-1:-1;;;43613:65:0;;20866:2:1;43613:65:0;;;20848:21:1;20905:2;20885:18;;;20878:30;20944:34;20924:18;;;20917:62;-1:-1:-1;;;20995:18:1;;;20988:34;21039:19;;43613:65:0;20664:400:1;43613:65:0;43795:29;43812:1;43816:7;43795:8;:29::i;:::-;-1:-1:-1;;;;;43837:15:0;;;;;;:9;:15;;;;;:20;;43856:1;;43837:15;:20;;43856:1;;43837:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43868:13:0;;;;;;:9;:13;;;;;:18;;43885:1;;43868:13;:18;;43885:1;;43868:18;:::i;:::-;;;;-1:-1:-1;;43897:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43897:21:0;-1:-1:-1;;;;;43897:21:0;;;;;;;;;43936:27;;43897:16;;43936:27;;;;;;;43393:578;;;:::o;6725:98::-;6783:7;6810:5;6814:1;6810;:5;:::i;7124:98::-;7182:7;7209:5;7213:1;7209;:5;:::i;61199:181::-;61274:12;61292:8;-1:-1:-1;;;;;61292:13:0;61313:7;61292:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61273:52;;;61344:7;61336:36;;;;-1:-1:-1;;;61336:36:0;;21911:2:1;61336:36:0;;;21893:21:1;21950:2;21930:18;;;21923:30;-1:-1:-1;;;21969:18:1;;;21962:46;22025:18;;61336:36:0;21709:340:1;39461:315:0;39618:28;39628:4;39634:2;39638:7;39618:9;:28::i;:::-;39665:48;39688:4;39694:2;39698:7;39707:5;39665:22;:48::i;:::-;39657:111;;;;-1:-1:-1;;;39657:111:0;;;;;;;:::i;56789:113::-;56849:13;56882:12;56875:19;;;;;:::i;35480:334::-;35553:13;35587:16;35595:7;35587;:16::i;:::-;35579:76;;;;-1:-1:-1;;;35579:76:0;;22675:2:1;35579:76:0;;;22657:21:1;22714:2;22694:18;;;22687:30;22753:34;22733:18;;;22726:62;-1:-1:-1;;;22804:18:1;;;22797:45;22859:19;;35579:76:0;22473:411:1;35579:76:0;35668:21;35692:10;:8;:10::i;:::-;35668:34;;35744:1;35726:7;35720:21;:25;:86;;;;;;;;;;;;;;;;;35772:7;35781:18;:7;:16;:18::i;:::-;35755:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35713:93;35480:334;-1:-1:-1;;;35480:334:0:o;15157:173::-;15232:6;;;-1:-1:-1;;;;;15249:17:0;;;-1:-1:-1;;;;;;15249:17:0;;;;;;;15282:40;;15232:6;;;15249:17;15232:6;;15282:40;;15213:16;;15282:40;15202:128;15157:173;:::o;927:830::-;1052:4;1092;1052;1109:525;1133:5;:12;1129:1;:16;1109:525;;;1167:20;1190:5;1196:1;1190:8;;;;;;;;:::i;:::-;;;;;;;1167:31;;1235:12;1219;:28;1215:408;;1372:44;;;;;;23178:19:1;;;23213:12;;;23206:28;;;23250:12;;1372:44:0;;;;;;;;;;;;1362:55;;;;;;1347:70;;1215:408;;;1562:44;;;;;;23178:19:1;;;23213:12;;;23206:28;;;23250:12;;1562:44:0;;;;;;;;;;;;1552:55;;;;;;1537:70;;1215:408;-1:-1:-1;1147:3:0;;;;:::i;:::-;;;;1109:525;;;-1:-1:-1;1729:20:0;;;;927:830;-1:-1:-1;;;927:830:0:o;41410:321::-;41540:18;41546:2;41550:7;41540:5;:18::i;:::-;41591:54;41622:1;41626:2;41630:7;41639:5;41591:22;:54::i;:::-;41569:154;;;;-1:-1:-1;;;41569:154:0;;;;;;;:::i;63006:120::-;63109:9;63088:13;63102:3;63088:18;;;;;;:::i;:::-;;;;;;;;;;;;;;:30;;;;;-1:-1:-1;;63088:30:0;;;;;;;;;-1:-1:-1;;63006:120:0:o;44828:803::-;44983:4;-1:-1:-1;;;;;45004:13:0;;16426:20;16474:8;45000:624;;45040:72;;-1:-1:-1;;;45040:72:0;;-1:-1:-1;;;;;45040:36:0;;;;;:72;;12919:10;;45091:4;;45097:7;;45106:5;;45040:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45040:72:0;;;;;;;;-1:-1:-1;;45040:72:0;;;;;;;;;;;;:::i;:::-;;;45036:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45286:13:0;;45282:272;;45329:60;;-1:-1:-1;;;45329:60:0;;;;;;;:::i;45282:272::-;45504:6;45498:13;45489:6;45485:2;45481:15;45474:38;45036:533;-1:-1:-1;;;;;;45163:55:0;-1:-1:-1;;;45163:55:0;;-1:-1:-1;45156:62:0;;45000:624;-1:-1:-1;45608:4:0;44828:803;;;;;;:::o;10459:723::-;10515:13;10736:10;10732:53;;-1:-1:-1;;10763:10:0;;;;;;;;;;;;-1:-1:-1;;;10763:10:0;;;;;10459:723::o;10732:53::-;10810:5;10795:12;10851:78;10858:9;;10851:78;;10884:8;;;;:::i;:::-;;-1:-1:-1;10907:10:0;;-1:-1:-1;10915:2:0;10907:10;;:::i;:::-;;;10851:78;;;10939:19;10971:6;10961:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10961:17:0;;10939:39;;10989:154;10996:10;;10989:154;;11023:11;11033:1;11023:11;;:::i;:::-;;-1:-1:-1;11092:10:0;11100:2;11092:5;:10;:::i;:::-;11079:24;;:2;:24;:::i;:::-;11066:39;;11049:6;11056;11049:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11049:56:0;;;;;;;;-1:-1:-1;11120:11:0;11129:2;11120:11;;:::i;:::-;;;10989:154;;42067:382;-1:-1:-1;;;;;42147:16:0;;42139:61;;;;-1:-1:-1;;;42139:61:0;;24480:2:1;42139:61:0;;;24462:21:1;;;24499:18;;;24492:30;24558:34;24538:18;;;24531:62;24610:18;;42139:61:0;24278:356:1;42139:61:0;42220:16;42228:7;42220;:16::i;:::-;42219:17;42211:58;;;;-1:-1:-1;;;42211:58:0;;24841:2:1;42211:58:0;;;24823:21:1;24880:2;24860:18;;;24853:30;24919;24899:18;;;24892:58;24967:18;;42211:58:0;24639:352:1;42211:58:0;-1:-1:-1;;;;;42340:13:0;;;;;;:9;:13;;;;;:18;;42357:1;;42340:13;:18;;42357:1;;42340:18;:::i;:::-;;;;-1:-1:-1;;42369:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42369:21:0;-1:-1:-1;;;;;42369:21:0;;;;;;;;42408:33;;42369:16;;;42408:33;;42369:16;;42408:33;42067:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:222::-;2985:5;3038:3;3031:4;3023:6;3019:17;3015:27;3005:55;;3056:1;3053;3046:12;3005:55;3078:80;3154:3;3145:6;3132:20;3125:4;3117:6;3113:17;3078:80;:::i;3169:322::-;3238:6;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;3347:9;3334:23;3380:18;3372:6;3369:30;3366:50;;;3412:1;3409;3402:12;3366:50;3435;3477:7;3468:6;3457:9;3453:22;3435:50;:::i;3678:543::-;3766:6;3774;3827:2;3815:9;3806:7;3802:23;3798:32;3795:52;;;3843:1;3840;3833:12;3795:52;3883:9;3870:23;3912:18;3953:2;3945:6;3942:14;3939:34;;;3969:1;3966;3959:12;3939:34;3992:50;4034:7;4025:6;4014:9;4010:22;3992:50;:::i;:::-;3982:60;;4095:2;4084:9;4080:18;4067:32;4051:48;;4124:2;4114:8;4111:16;4108:36;;;4140:1;4137;4130:12;4108:36;;4163:52;4207:7;4196:8;4185:9;4181:24;4163:52;:::i;:::-;4153:62;;;3678:543;;;;;:::o;4226:328::-;4303:6;4311;4319;4372:2;4360:9;4351:7;4347:23;4343:32;4340:52;;;4388:1;4385;4378:12;4340:52;4411:29;4430:9;4411:29;:::i;:::-;4401:39;;4459:38;4493:2;4482:9;4478:18;4459:38;:::i;:::-;4449:48;;4544:2;4533:9;4529:18;4516:32;4506:42;;4226:328;;;;;:::o;4926:186::-;4985:6;5038:2;5026:9;5017:7;5013:23;5009:32;5006:52;;;5054:1;5051;5044:12;5006:52;5077:29;5096:9;5077:29;:::i;5117:390::-;5195:6;5203;5256:2;5244:9;5235:7;5231:23;5227:32;5224:52;;;5272:1;5269;5262:12;5224:52;5308:9;5295:23;5285:33;;5369:2;5358:9;5354:18;5341:32;5396:18;5388:6;5385:30;5382:50;;;5428:1;5425;5418:12;5382:50;5451;5493:7;5484:6;5473:9;5469:22;5451:50;:::i;5512:160::-;5577:20;;5633:13;;5626:21;5616:32;;5606:60;;5662:1;5659;5652:12;5677:254;5742:6;5750;5803:2;5791:9;5782:7;5778:23;5774:32;5771:52;;;5819:1;5816;5809:12;5771:52;5842:29;5861:9;5842:29;:::i;:::-;5832:39;;5890:35;5921:2;5910:9;5906:18;5890:35;:::i;:::-;5880:45;;5677:254;;;;;:::o;5936:617::-;6033:6;6041;6049;6102:2;6090:9;6081:7;6077:23;6073:32;6070:52;;;6118:1;6115;6108:12;6070:52;6141:29;6160:9;6141:29;:::i;:::-;6131:39;;6221:2;6210:9;6206:18;6193:32;6244:18;6285:2;6277:6;6274:14;6271:34;;;6301:1;6298;6291:12;6271:34;6324:50;6366:7;6357:6;6346:9;6342:22;6324:50;:::i;:::-;6314:60;;6427:2;6416:9;6412:18;6399:32;6383:48;;6456:2;6446:8;6443:16;6440:36;;;6472:1;6469;6462:12;6440:36;;6495:52;6539:7;6528:8;6517:9;6513:24;6495:52;:::i;:::-;6485:62;;;5936:617;;;;;:::o;6558:667::-;6653:6;6661;6669;6677;6730:3;6718:9;6709:7;6705:23;6701:33;6698:53;;;6747:1;6744;6737:12;6698:53;6770:29;6789:9;6770:29;:::i;:::-;6760:39;;6818:38;6852:2;6841:9;6837:18;6818:38;:::i;:::-;6808:48;;6903:2;6892:9;6888:18;6875:32;6865:42;;6958:2;6947:9;6943:18;6930:32;6985:18;6977:6;6974:30;6971:50;;;7017:1;7014;7007:12;6971:50;7040:22;;7093:4;7085:13;;7081:27;-1:-1:-1;7071:55:1;;7122:1;7119;7112:12;7071:55;7145:74;7211:7;7206:2;7193:16;7188:2;7184;7180:11;7145:74;:::i;:::-;7135:84;;;6558:667;;;;;;;:::o;7230:180::-;7286:6;7339:2;7327:9;7318:7;7314:23;7310:32;7307:52;;;7355:1;7352;7345:12;7307:52;7378:26;7394:9;7378:26;:::i;7415:260::-;7483:6;7491;7544:2;7532:9;7523:7;7519:23;7515:32;7512:52;;;7560:1;7557;7550:12;7512:52;7583:29;7602:9;7583:29;:::i;:::-;7573:39;;7631:38;7665:2;7654:9;7650:18;7631:38;:::i;7680:1015::-;7804:6;7812;7820;7828;7881:2;7869:9;7860:7;7856:23;7852:32;7849:52;;;7897:1;7894;7887:12;7849:52;7937:9;7924:23;7966:18;8007:2;7999:6;7996:14;7993:34;;;8023:1;8020;8013:12;7993:34;8046:50;8088:7;8079:6;8068:9;8064:22;8046:50;:::i;:::-;8036:60;;8149:2;8138:9;8134:18;8121:32;8105:48;;8178:2;8168:8;8165:16;8162:36;;;8194:1;8191;8184:12;8162:36;8217:52;8261:7;8250:8;8239:9;8235:24;8217:52;:::i;:::-;8207:62;;8322:2;8311:9;8307:18;8294:32;8278:48;;8351:2;8341:8;8338:16;8335:36;;;8367:1;8364;8357:12;8335:36;8405:8;8394:9;8390:24;8380:34;;8452:7;8445:4;8441:2;8437:13;8433:27;8423:55;;8474:1;8471;8464:12;8423:55;8514:2;8501:16;8540:2;8532:6;8529:14;8526:34;;;8556:1;8553;8546:12;8526:34;8609:7;8604:2;8594:6;8591:1;8587:14;8583:2;8579:23;8575:32;8572:45;8569:65;;;8630:1;8627;8620:12;8569:65;7680:1015;;;;-1:-1:-1;;8661:2:1;8653:11;;-1:-1:-1;;;7680:1015:1:o;8700:380::-;8779:1;8775:12;;;;8822;;;8843:61;;8897:4;8889:6;8885:17;8875:27;;8843:61;8950:2;8942:6;8939:14;8919:18;8916:38;8913:161;;;8996:10;8991:3;8987:20;8984:1;8977:31;9031:4;9028:1;9021:15;9059:4;9056:1;9049:15;10684:355;10886:2;10868:21;;;10925:2;10905:18;;;10898:30;10964:33;10959:2;10944:18;;10937:61;11030:2;11015:18;;10684:355::o;11044:::-;11246:2;11228:21;;;11285:2;11265:18;;;11258:30;11324:33;11319:2;11304:18;;11297:61;11390:2;11375:18;;11044:355::o;11404:::-;11606:2;11588:21;;;11645:2;11625:18;;;11618:30;11684:33;11679:2;11664:18;;11657:61;11750:2;11735:18;;11404:355::o;11764:127::-;11825:10;11820:3;11816:20;11813:1;11806:31;11856:4;11853:1;11846:15;11880:4;11877:1;11870:15;11896:128;11936:3;11967:1;11963:6;11960:1;11957:13;11954:39;;;11973:18;;:::i;:::-;-1:-1:-1;12009:9:1;;11896:128::o;12029:276::-;12160:3;12198:6;12192:13;12214:53;12260:6;12255:3;12248:4;12240:6;12236:17;12214:53;:::i;:::-;12283:16;;;;;12029:276;-1:-1:-1;;12029:276:1:o;12310:413::-;12512:2;12494:21;;;12551:2;12531:18;;;12524:30;12590:34;12585:2;12570:18;;12563:62;-1:-1:-1;;;12656:2:1;12641:18;;12634:47;12713:3;12698:19;;12310:413::o;12728:356::-;12930:2;12912:21;;;12949:18;;;12942:30;13008:34;13003:2;12988:18;;12981:62;13075:2;13060:18;;12728:356::o;13089:410::-;13291:2;13273:21;;;13330:2;13310:18;;;13303:30;13369:34;13364:2;13349:18;;13342:62;-1:-1:-1;;;13435:2:1;13420:18;;13413:44;13489:3;13474:19;;13089:410::o;15444:470::-;15623:3;15661:6;15655:13;15677:53;15723:6;15718:3;15711:4;15703:6;15699:17;15677:53;:::i;:::-;15793:13;;15752:16;;;;15815:57;15793:13;15752:16;15849:4;15837:17;;15815:57;:::i;:::-;15888:20;;15444:470;-1:-1:-1;;;;15444:470:1:o;17380:1104::-;17510:3;17539:1;17572:6;17566:13;17602:3;17624:1;17652:9;17648:2;17644:18;17634:28;;17712:2;17701:9;17697:18;17734;17724:61;;17778:4;17770:6;17766:17;17756:27;;17724:61;17804:2;17852;17844:6;17841:14;17821:18;17818:38;17815:165;;;-1:-1:-1;;;17879:33:1;;17935:4;17932:1;17925:15;17965:4;17886:3;17953:17;17815:165;17996:18;18023:104;;;;18141:1;18136:323;;;;17989:470;;18023:104;-1:-1:-1;;18056:24:1;;18044:37;;18101:16;;;;-1:-1:-1;18023:104:1;;18136:323;17327:1;17320:14;;;17364:4;17351:18;;18234:1;18248:165;18262:6;18259:1;18256:13;18248:165;;;18340:14;;18327:11;;;18320:35;18383:16;;;;18277:10;;18248:165;;;18252:3;;18442:6;18437:3;18433:16;18426:23;;17989:470;-1:-1:-1;18475:3:1;;17380:1104;-1:-1:-1;;;;;;;;17380:1104:1:o;18489:184::-;18559:6;18612:2;18600:9;18591:7;18587:23;18583:32;18580:52;;;18628:1;18625;18618:12;18580:52;-1:-1:-1;18651:16:1;;18489:184;-1:-1:-1;18489:184:1:o;19711:125::-;19751:4;19779:1;19776;19773:8;19770:34;;;19784:18;;:::i;:::-;-1:-1:-1;19821:9:1;;19711:125::o;21069:168::-;21109:7;21175:1;21171;21167:6;21163:14;21160:1;21157:21;21152:1;21145:9;21138:17;21134:45;21131:71;;;21182:18;;:::i;:::-;-1:-1:-1;21222:9:1;;21069:168::o;21242:127::-;21303:10;21298:3;21294:20;21291:1;21284:31;21334:4;21331:1;21324:15;21358:4;21355:1;21348:15;21374:120;21414:1;21440;21430:35;;21445:18;;:::i;:::-;-1:-1:-1;21479:9:1;;21374:120::o;22054:414::-;22256:2;22238:21;;;22295:2;22275:18;;;22268:30;22334:34;22329:2;22314:18;;22307:62;-1:-1:-1;;;22400:2:1;22385:18;;22378:48;22458:3;22443:19;;22054:414::o;22889:127::-;22950:10;22945:3;22941:20;22938:1;22931:31;22981:4;22978:1;22971:15;23005:4;23002:1;22995:15;23273:135;23312:3;-1:-1:-1;;23333:17:1;;23330:43;;;23353:18;;:::i;:::-;-1:-1:-1;23400:1:1;23389:13;;23273:135::o;23413:489::-;-1:-1:-1;;;;;23682:15:1;;;23664:34;;23734:15;;23729:2;23714:18;;23707:43;23781:2;23766:18;;23759:34;;;23829:3;23824:2;23809:18;;23802:31;;;23607:4;;23850:46;;23876:19;;23868:6;23850:46;:::i;:::-;23842:54;23413:489;-1:-1:-1;;;;;;23413:489:1:o;23907:249::-;23976:6;24029:2;24017:9;24008:7;24004:23;24000:32;23997:52;;;24045:1;24042;24035:12;23997:52;24077:9;24071:16;24096:30;24120:5;24096:30;:::i;24161:112::-;24193:1;24219;24209:35;;24224:18;;:::i;:::-;-1:-1:-1;24258:9:1;;24161:112::o

Swarm Source

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