ETH Price: $3,056.45 (+2.55%)
Gas: 1 Gwei

Token

Parallel Theatre NFT (PT-16)
 

Overview

Max Total Supply

76 PT-16

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xAfC6f259b238FCB10E58ad61aE8599BA51e2239E
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:
ParallelTheatreNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-16
*/

// SPDX-License-Identifier: MIT

// File: 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: contracts/access/IAccessControl.sol



pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: contracts/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: 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: 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: contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: 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: 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: 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: contracts/access/AccessControl.sol



pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/token/ERC1155/IERC1155Receiver.sol



pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: contracts/token/ERC1155/IERC1155.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: contracts/token/ERC1155/ERC1155.sol



pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/token/ERC1155/extensions/ERC1155Pausable.sol



pragma solidity ^0.8.0;



/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

// File: contracts/token/ERC1155/extensions/ERC1155Burnable.sol



pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: contracts/token/ERC1155/extensions/ERC1155Supply.sol



pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates weither any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}

// File: contracts/token/ERC1155/ParallelTheatreNFT.sol


pragma solidity 0.8.7;









abstract contract ExtractHelper is AccessControl, Ownable {
    address private _extractAddress;
    address private _erc20Address;
    IERC20 public erc20Token;

    bytes32 public constant EXADMIN_ROLE = keccak256("EXADMIN_ROLE");

    constructor() {
        _setRoleAdmin(EXADMIN_ROLE, EXADMIN_ROLE);
        _setupRole(EXADMIN_ROLE, msg.sender);
        setExtractAddress(_msgSender());
    }

    function setErc20TokenContractAddress(address erc20ContractAddress) external onlyRole(EXADMIN_ROLE)
    {
        IERC20 candidateContract = IERC20(erc20ContractAddress);
        _erc20Address = erc20ContractAddress;
        erc20Token = candidateContract;
    }

    function setExtractAddress(address newExtractAddress) public onlyRole(EXADMIN_ROLE) {
        _extractAddress = newExtractAddress;
    }

    function getExtractAddress() external view onlyRole(EXADMIN_ROLE) returns(address) {
        return _extractAddress;
    }

    function extractCoin() external onlyRole(EXADMIN_ROLE)
    {
        require(payable(address(this)).balance > 0,"balance is zero");

        uint256 costNumber = payable(address(this)).balance;
        address payable account = payable(_extractAddress);
        account.transfer(costNumber);
    }
    
    function extractToken() external onlyRole(EXADMIN_ROLE)
    {
        uint256 dexBalance = erc20Token.balanceOf(address(this));
        require(dexBalance > 0, "Not enough tokens in the reserve");
        
        erc20Token.transfer(_extractAddress, dexBalance);
    }
}

contract ParallelTheatreNFT is AccessControl, Ownable, ERC1155, ERC1155Supply, ERC1155Burnable, ERC1155Pausable, ExtractHelper {
    
    using Strings for uint256;
    
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURN_ROLE = keccak256("BURN_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    
    mapping(address => uint8) private _whiteList;
    mapping(address => uint8) private _mintedList;
    mapping(uint256 => uint256) private _idsLimit;
    mapping(uint256 => uint256) private _idsCount;
    bool private _mintState;

    string public name = "Parallel Theatre NFT";
    string public symbol = "PT-16";

    constructor(string memory uri) ERC1155(uri){
    
    _setRoleAdmin(ADMIN_ROLE, ADMIN_ROLE);
    _setRoleAdmin(MINTER_ROLE, ADMIN_ROLE);
    _setRoleAdmin(BURN_ROLE, ADMIN_ROLE);
    _setRoleAdmin(PAUSER_ROLE, ADMIN_ROLE);
    
    _setupRole(ADMIN_ROLE, msg.sender);
    _setupRole(MINTER_ROLE, msg.sender);
    _setupRole(BURN_ROLE, msg.sender);
    _setupRole(PAUSER_ROLE, msg.sender);
    }

    function pause() external onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() external onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    function setURI(string memory newuri)external onlyRole(ADMIN_ROLE){
        _setURI(newuri);
    }

    function tokenURI(uint256 _optionId)external view returns (string memory) {
            return string(abi.encodePacked(uri(_optionId), Strings.toString(_optionId)));
    }

    function setWhiteList(address[] memory whiteAddressList)external onlyRole(ADMIN_ROLE){
        for (uint256 i = 0; i < whiteAddressList.length; i++) {
            _setWhiteList(whiteAddressList[i]);
        }
    }

    function _setWhiteList(address _whiteAddress) internal virtual {
        _whiteList[_whiteAddress] = 1;
    }

    event SetIdsLimitEvent(uint256 indexed id, uint256 indexed limit);
    function setIdsLimit(uint256 id, uint256 limit) external onlyRole(ADMIN_ROLE){
        _setIdsLimit(id, limit);
        emit SetIdsLimitEvent(id, limit);
    }

    function _setIdsLimit(uint256 _id, uint256 _limit) internal virtual {
        _idsLimit[_id] = _limit;
    }

    function getIdsLimit(uint256 id) external view returns(uint256){
        return _getIdsLimit(id);
    }

    function _getIdsLimit(uint256 _id) internal view returns(uint256){
        return _idsLimit[_id];
    }

    event MFWL(address indexed account,uint256 indexed id, uint256 indexed amount);
    function mintFromWhiteList()external{
        require(this.checkAddress(msg.sender) == true, "Sorry, you are not eligible to free mint.");
        require(_mintState == true, "Free mint has not started yet. / Free mint ended.");
        require(_mintedList[msg.sender] == 0,"You already owned the NFT(PT-16).");
        require(_idsCount[1] < _idsLimit[1], "Sold out.");
        _mint(msg.sender, 1,1,"");
        _mintedList[msg.sender] = 1;
        _idsCount[1] += 1;

        emit MFWL(msg.sender, 1, 1);
    }

    function checkAddressMintState(address account) external view returns(bool){
        if(_mintedList[account] == 0){
            return false;
        }else{
            return true;
        }
    }

    function airdropMintList(address[] memory to, uint256 id, uint256 amount)external onlyRole(MINTER_ROLE){
        require(_idsCount[id] < _idsLimit[id], "Maximum Supply");
        for(uint256 index=0; index < to.length; index++){
            _mint(to[index],id,amount,"");
            _idsCount[id] += amount;
        }
    }

    function airdropMint(address to, uint256 id, uint256 amount)external onlyRole(MINTER_ROLE){
        require(_idsCount[id] < _idsLimit[id], "Maximum Supply");
        _mint(to, id, amount, "");
        _idsCount[id] += amount;
    }

    function checkAddress(address account) external view returns(bool){
        if(_whiteList[account] == 1){
            return true;
        }else{
            return false;
        }
    }

    function mint (address account, uint256 id, uint256 amount)external onlyRole(MINTER_ROLE){
        _mint(account, id, amount, "");
    }

    function setMintState(bool state)external onlyRole(ADMIN_ROLE){
        _setMintState(state);
    }

    function _setMintState(bool _state) internal virtual {
        _mintState = _state;
    }

    function getMintState() external view returns(bool){
        return _getMintState();
    }

    function _getMintState() internal view returns(bool){
        return _mintState;
    }

    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Supply) {
        super._mint(account,id,amount,data);
    }

    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Supply) {
        super._mintBatch(to,ids,amounts,data);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Pausable) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override(ERC1155, ERC1155Supply){
        super._burn(account,id,amount);
    }

    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override(ERC1155,ERC1155Supply){
        super._burnBatch(account,ids,amounts);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(AccessControl, ERC1155)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function _setURI(string memory newuri) internal virtual override(ERC1155){
        super._setURI(newuri);
    }

    function _string2Uint(string memory _str)internal pure returns (uint256 res){
        for(uint256 i = 0; i < bytes(_str).length; i++){
            if((uint8(bytes(_str)[i])-48) < 0 || (uint8(bytes(_str)[i])-48) > 9){
                return 0;
            }
            res += (uint8(bytes(_str)[i]) - 48) * 10 ** (bytes(_str).length - i - 1);
        }
        return res;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MFWL","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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"limit","type":"uint256"}],"name":"SetIdsLimitEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropMintList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkAddressMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20Token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extractCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"extractToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getExtractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getIdsLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFromWhiteList","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20ContractAddress","type":"address"}],"name":"setErc20TokenContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newExtractAddress","type":"address"}],"name":"setExtractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setIdsLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteAddressList","type":"address[]"}],"name":"setWhiteList","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":"_optionId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60c0604052601460808190527f506172616c6c656c2054686561747265204e465400000000000000000000000060a09081526200004091600e919062000633565b5060408051808201909152600580825264282a16989b60d91b60209092019182526200006f91600f9162000633565b503480156200007d57600080fd5b5060405162003ff038038062003ff0833981016040819052620000a091620006d9565b80620000ac336200020f565b620000b78162000261565b506006805460ff19169055620000dd60008051602062003f70833981519152806200027a565b620000f860008051602062003f7083398151915233620002c5565b6200010333620002d5565b6200011e60008051602062003fb0833981519152806200027a565b6200014860008051602062003f9083398151915260008051602062003fb08339815191526200027a565b6200017260008051602062003fd083398151915260008051602062003fb08339815191526200027a565b6200019c60008051602062003f5083398151915260008051602062003fb08339815191526200027a565b620001b760008051602062003fb083398151915233620002c5565b620001d260008051602062003f9083398151915233620002c5565b620001ed60008051602062003fd083398151915233620002c5565b6200020860008051602062003f5083398151915233620002c5565b5062000948565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000277816200031a60201b6200181b1760201c565b50565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b620002d182826200032f565b5050565b60008051602062003f70833981519152620002f18133620003cf565b50600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b8051620002d190600490602084019062000633565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620002d1576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200038b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620002d15762000419816001600160a01b031660146200047360201b6200182e1760201c565b6200042f8360206200182e62000473821b17811c565b6040516020016200044292919062000791565b60408051601f198184030181529082905262461bcd60e51b82526200046a916004016200080a565b60405180910390fd5b60606000620004848360026200085a565b620004919060026200083f565b6001600160401b03811115620004ab57620004ab62000932565b6040519080825280601f01601f191660200182016040528015620004d6576020820181803683370190505b509050600360fc1b81600081518110620004f457620004f46200091c565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106200052657620005266200091c565b60200101906001600160f81b031916908160001a90535060006200054c8460026200085a565b620005599060016200083f565b90505b6001811115620005db576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200059157620005916200091c565b1a60f81b828281518110620005aa57620005aa6200091c565b60200101906001600160f81b031916908160001a90535060049490941c93620005d381620008af565b90506200055c565b5083156200062c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200046a565b9392505050565b8280546200064190620008c9565b90600052602060002090601f016020900481019282620006655760008555620006b0565b82601f106200068057805160ff1916838001178555620006b0565b82800160010185558215620006b0579182015b82811115620006b057825182559160200191906001019062000693565b50620006be929150620006c2565b5090565b5b80821115620006be5760008155600101620006c3565b600060208284031215620006ec57600080fd5b81516001600160401b03808211156200070457600080fd5b818401915084601f8301126200071957600080fd5b8151818111156200072e576200072e62000932565b604051601f8201601f19908116603f0116810190838211818310171562000759576200075962000932565b816040528281528760208487010111156200077357600080fd5b620007868360208301602088016200087c565b979650505050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620007cb8160178501602088016200087c565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620007fe8160288401602088016200087c565b01602801949350505050565b60208152600082518060208401526200082b8160408501602087016200087c565b601f01601f19169190910160400192915050565b6000821982111562000855576200085562000906565b500190565b600081600019048311821515161562000877576200087762000906565b500290565b60005b83811015620008995781810151838201526020016200087f565b83811115620008a9576000848401525b50505050565b600081620008c157620008c162000906565b506000190190565b600181811c90821680620008de57607f821691505b602082108114156200090057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6135f880620009586000396000f3fe608060405234801561001057600080fd5b50600436106102d55760003560e01c80638456cb5911610182578063c87b56dd116100e9578063e985e9c5116100a2578063f4b2eab41161007c578063f4b2eab4146106a6578063f5298aca146106b9578063f8aaa344146106cc578063f962e57c146106d457600080fd5b8063e985e9c514610644578063f242432a14610680578063f2fde38b1461069357600080fd5b8063c87b56dd146105bc578063d2abdf82146105cf578063d5391393146105e2578063d547741f146105f7578063d56892d81461060a578063e63ab1e91461061d57600080fd5b8063a217fddf1161013b578063a217fddf14610534578063a22cb4651461053c578063a92b484e1461054f578063b8ec76f214610562578063b930908f14610575578063bd85b0391461059c57600080fd5b80638456cb59146104c05780638a13eea7146104c85780638da5cb5b146104f357806391d148541461050457806395d89b41146105175780639ed03b381461051f57600080fd5b806336568abe116102415780635c975abb116101fa57806375b238fc116101d457806375b238fc14610488578063774a88351461049d578063775b9c13146104a55780637b5e4e03146104b857600080fd5b80635c975abb146104625780636b20c4541461046d578063715018a61461048057600080fd5b806336568abe146103f55780633f4ba83a146104085780634e1273f4146104105780634f558e79146104305780635afd5086146104525780635baaa3401461045a57600080fd5b8063156e29f611610293578063156e29f614610373578063248a9ca31461038657806326412aca146103a957806328ecc34e146103bc5780632eb2c2d6146103cf5780632f2ff15d146103e257600080fd5b8062fdd58e146102da57806301ffc9a71461030057806302fe53051461032357806306fdde03146103385780630ddcfe8e1461034d5780630e89341c14610360575b600080fd5b6102ed6102e8366004612c7e565b6106e7565b6040519081526020015b60405180910390f35b61031361030e366004612e35565b610780565b60405190151581526020016102f7565b610336610331366004612e6f565b610791565b005b6103406107b7565b6040516102f791906130e1565b61031361035b366004612a79565b610845565b61034061036e366004612df9565b61087e565b610336610381366004612ca8565b610912565b6102ed610394366004612df9565b60009081526020819052604090206001015490565b6103366103b7366004612dbf565b61094c565b6103366103ca366004612a79565b610977565b6103366103dd366004612ac7565b6109bd565b6103366103f0366004612e12565b610a54565b610336610403366004612e12565b610a7f565b610336610af9565b61042361041e366004612d0f565b610b2f565b6040516102f791906130a0565b61031361043e366004612df9565b600090815260056020526040902054151590565b610336610c58565b610336610dcc565b60065460ff16610313565b61033661047b366004612bd4565b6110ab565b6103366110ee565b6102ed6000805160206135a383398151915281565b610313611154565b6103366104b3366004612cdb565b611167565b6103366111df565b61033661127a565b6008546104db906001600160a01b031681565b6040516001600160a01b0390911681526020016102f7565b6001546001600160a01b03166104db565b610313610512366004612e12565b6112ad565b6103406112d6565b6102ed60008051602061356383398151915281565b6102ed600081565b61033661054a366004612c47565b6112e3565b6102ed61055d366004612df9565b6113ba565b610336610570366004612ca8565b6113ce565b6102ed7fe97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa2281565b6102ed6105aa366004612df9565b60009081526005602052604090205490565b6103406105ca366004612df9565b611484565b6103366105dd366004612ed0565b6114bf565b6102ed60008051602061358383398151915281565b610336610605366004612e12565b611518565b610336610618366004612a79565b61153e565b6102ed7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610313610652366004612a94565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b61033661068e366004612b70565b611580565b6103366106a1366004612a79565b6115c5565b6103136106b4366004612a79565b61168d565b6103366106c7366004612ca8565b6116bd565b6104db611700565b6103366106e2366004612d72565b611733565b60006001600160a01b0383166107585760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526002602090815260408083206001600160a01b03949094168352929052205490565b600061078b826119d0565b92915050565b6000805160206135a38339815191526107aa8133611a10565b6107b382611a74565b5050565b600e80546107c4906133ab565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906133ab565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b505050505081565b6001600160a01b03811660009081526009602052604081205460ff166001141561087157506001919050565b506000919050565b919050565b60606004805461088d906133ab565b80601f01602080910402602001604051908101604052809291908181526020018280546108b9906133ab565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b50505050509050919050565b60008051602061358383398151915261092b8133611a10565b61094684848460405180602001604052806000815250611a7d565b50505050565b6000805160206135a38339815191526109658133611a10565b600d805460ff19168315151790555050565b6000805160206135638339815191526109908133611a10565b50600780546001600160a01b039092166001600160a01b0319928316811790915560088054909216179055565b6001600160a01b0385163314806109d957506109d98533610652565b610a405760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161074f565b610a4d8585858585611a89565b5050505050565b600082815260208190526040902060010154610a708133611a10565b610a7a8383611c36565b505050565b6001600160a01b0381163314610aef5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161074f565b6107b38282611cba565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b248133611a10565b610b2c611d1f565b50565b60608151835114610b945760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161074f565b600083516001600160401b03811115610baf57610baf613483565b604051908082528060200260200182016040528015610bd8578160200160208202803683370190505b50905060005b8451811015610c5057610c23858281518110610bfc57610bfc61346d565b6020026020010151858381518110610c1657610c1661346d565b60200260200101516106e7565b828281518110610c3557610c3561346d565b6020908102919091010152610c4981613412565b9050610bde565b509392505050565b600080516020613563833981519152610c718133611a10565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610cb557600080fd5b505afa158015610cc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ced9190612eb7565b905060008111610d3f5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f75676820746f6b656e7320696e207468652072657365727665604482015260640161074f565b60085460065460405163a9059cbb60e01b81526001600160a01b03610100909204821660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b158015610d9457600080fd5b505af1158015610da8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7a9190612ddc565b6040516306ee7f4760e11b81523360048201523090630ddcfe8e9060240160206040518083038186803b158015610e0257600080fd5b505afa158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190612ddc565b1515600114610e9d5760405162461bcd60e51b815260206004820152602960248201527f536f7272792c20796f7520617265206e6f7420656c696769626c6520746f20666044820152683932b29036b4b73a1760b91b606482015260840161074f565b600d5460ff161515600114610f0e5760405162461bcd60e51b815260206004820152603160248201527f46726565206d696e7420686173206e6f742073746172746564207965742e202f60448201527010233932b29036b4b73a1032b73232b21760791b606482015260840161074f565b336000908152600a602052604090205460ff1615610f785760405162461bcd60e51b815260206004820152602160248201527f596f7520616c7265616479206f776e656420746865204e46542850542d3136296044820152601760f91b606482015260840161074f565b60016000527f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5cf54600c6020527fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5c5410610fff5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161074f565b61101b3360018060405180602001604052806000815250611a7d565b336000908152600a602090815260408220805460ff19166001908117909155808352600c9091527fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5c805491929091611074908490613306565b9091555050604051600190819033907f9b2fbb233a04734e249e7d7f8316ec4a97d96b2461ee2c213b856e1832e5932090600090a4565b6001600160a01b0383163314806110c757506110c78333610652565b6110e35760405162461bcd60e51b815260040161074f90613180565b610a7a838383611db2565b6001546001600160a01b031633146111485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074f565b6111526000611dbd565b565b6000611162600d5460ff1690565b905090565b6000805160206135a38339815191526111808133611a10565b60005b8251811015610a7a576111cd8382815181106111a1576111a161346d565b60200260200101516001600160a01b03166000908152600960205260409020805460ff19166001179055565b806111d781613412565b915050611183565b6000805160206135638339815191526111f88133611a10565b30316112385760405162461bcd60e51b815260206004820152600f60248201526e62616c616e6365206973207a65726f60881b604482015260640161074f565b60065460405130319161010090046001600160a01b031690819083156108fc029084906000818181858888f19350505050158015610946573d6000803e3d6000fd5b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6112a58133611a10565b610b2c611e0f565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600f80546107c4906133ab565b336001600160a01b038316141561134e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161074f565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600b602052604081205461078b565b6000805160206135838339815191526113e78133611a10565b6000838152600b6020908152604080832054600c90925290912054106114405760405162461bcd60e51b815260206004820152600e60248201526d4d6178696d756d20537570706c7960901b604482015260640161074f565b61145b84848460405180602001604052806000815250611a7d565b6000838152600c602052604081208054849290611479908490613306565b909155505050505050565b606061148f8261087e565b61149883611e8a565b6040516020016114a9929190612f59565b6040516020818303038152906040529050919050565b6000805160206135a38339815191526114d88133611a10565b6000838152600b602052604080822084905551839185917f32e7e4c707bab7d25c2485c9f91f06fc897f1bd13a2460fdd7610498498465379190a3505050565b6000828152602081905260409020600101546115348133611a10565b610a7a8383611cba565b6000805160206135638339815191526115578133611a10565b50600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03851633148061159c575061159c8533610652565b6115b85760405162461bcd60e51b815260040161074f90613180565b610a4d8585858585611f8f565b6001546001600160a01b0316331461161f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074f565b6001600160a01b0381166116845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b610b2c81611dbd565b6001600160a01b0381166000908152600a602052604081205460ff166116b557506000919050565b506001919050565b6001600160a01b0383163314806116d957506116d98333610652565b6116f55760405162461bcd60e51b815260040161074f90613180565b610a7a8383836120bf565b600060008051602061356383398151915261171b8133611a10565b60065461010090046001600160a01b031691505b5090565b60008051602061358383398151915261174c8133611a10565b6000838152600b6020908152604080832054600c90925290912054106117a55760405162461bcd60e51b815260206004820152600e60248201526d4d6178696d756d20537570706c7960901b604482015260640161074f565b60005b8451811015610a4d576117e58582815181106117c6576117c661346d565b6020026020010151858560405180602001604052806000815250611a7d565b6000848152600c602052604081208054859290611803908490613306565b9091555081905061181381613412565b9150506117a8565b80516107b390600490602084019061286d565b6060600061183d836002613332565b611848906002613306565b6001600160401b0381111561185f5761185f613483565b6040519080825280601f01601f191660200182016040528015611889576020820181803683370190505b509050600360fc1b816000815181106118a4576118a461346d565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106118d3576118d361346d565b60200101906001600160f81b031916908160001a90535060006118f7846002613332565b611902906001613306565b90505b600181111561197a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106119365761193661346d565b1a60f81b82828151811061194c5761194c61346d565b60200101906001600160f81b031916908160001a90535060049490941c9361197381613394565b9050611905565b5083156119c95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161074f565b9392505050565b60006001600160e01b03198216636cdb3d1360e11b1480611a0157506001600160e01b031982166303a24d0760e21b145b8061078b575061078b826120ca565b611a1a82826112ad565b6107b357611a32816001600160a01b0316601461182e565b611a3d83602061182e565b604051602001611a4e929190612f88565b60408051601f198184030181529082905262461bcd60e51b825261074f916004016130e1565b610b2c8161181b565b610946848484846120ff565b8151835114611aaa5760405162461bcd60e51b815260040161074f9061329b565b6001600160a01b038416611ad05760405162461bcd60e51b815260040161074f906131c9565b33611adf818787878787612129565b60005b8451811015611bc8576000858281518110611aff57611aff61346d565b602002602001015190506000858381518110611b1d57611b1d61346d565b60209081029190910181015160008481526002835260408082206001600160a01b038e168352909352919091205490915081811015611b6e5760405162461bcd60e51b815260040161074f90613251565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611bad908490613306565b9250508190555050505080611bc190613412565b9050611ae2565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c189291906130b3565b60405180910390a4611c2e818787878787612137565b505050505050565b611c4082826112ad565b6107b3576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611c763390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611cc482826112ad565b156107b3576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16611d685760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161074f565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610a7a8383836122a2565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff1615611e555760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161074f565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d953390565b606081611eae5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed85780611ec281613412565b9150611ed19050600a8361331e565b9150611eb2565b6000816001600160401b03811115611ef257611ef2613483565b6040519080825280601f01601f191660200182016040528015611f1c576020820181803683370190505b5090505b8415611f8757611f31600183613351565b9150611f3e600a8661342d565b611f49906030613306565b60f81b818381518110611f5e57611f5e61346d565b60200101906001600160f81b031916908160001a905350611f80600a8661331e565b9450611f20565b949350505050565b6001600160a01b038416611fb55760405162461bcd60e51b815260040161074f906131c9565b33611fd4818787611fc588612324565b611fce88612324565b87612129565b60008481526002602090815260408083206001600160a01b038a168452909152902054838110156120175760405162461bcd60e51b815260040161074f90613251565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612056908490613306565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46120b682888888888861236f565b50505050505050565b610a7a838383612439565b60006001600160e01b03198216637965db0b60e01b148061078b57506301ffc9a760e01b6001600160e01b031983161461078b565b61210b8484848461246c565b60008381526005602052604081208054849290611479908490613306565b611c2e86868686868661256f565b6001600160a01b0384163b15611c2e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061217b9089908990889088908890600401612ffd565b602060405180830381600087803b15801561219557600080fd5b505af19250505080156121c5575060408051601f3d908101601f191682019092526121c291810190612e52565b60015b612272576121d1613499565b806308c379a0141561220b57506121e66134b5565b806121f1575061220d565b8060405162461bcd60e51b815260040161074f91906130e1565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161074f565b6001600160e01b0319811663bc197c8160e01b146120b65760405162461bcd60e51b815260040161074f906130f4565b6122ad8383836125d7565b60005b8251811015610946578181815181106122cb576122cb61346d565b6020026020010151600560008584815181106122e9576122e961346d565b60200260200101518152602001908152602001600020600082825461230e9190613351565b9091555061231d905081613412565b90506122b0565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061235e5761235e61346d565b602090810291909101015292915050565b6001600160a01b0384163b15611c2e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906123b3908990899088908890889060040161305b565b602060405180830381600087803b1580156123cd57600080fd5b505af19250505080156123fd575060408051601f3d908101601f191682019092526123fa91810190612e52565b60015b612409576121d1613499565b6001600160e01b0319811663f23a6e6160e01b146120b65760405162461bcd60e51b815260040161074f906130f4565b612444838383612768565b60008281526005602052604081208054839290612462908490613351565b9091555050505050565b6001600160a01b0384166124cc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161074f565b336124dd81600087611fc588612324565b60008481526002602090815260408083206001600160a01b03891684529091528120805485929061250f908490613306565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610a4d8160008787878761236f565b60065460ff1615611c2e5760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b606482015260840161074f565b6001600160a01b0383166125fd5760405162461bcd60e51b815260040161074f9061320e565b805182511461261e5760405162461bcd60e51b815260040161074f9061329b565b600033905061264181856000868660405180602001604052806000815250612129565b60005b83518110156127095760008482815181106126615761266161346d565b60200260200101519050600084838151811061267f5761267f61346d565b60209081029190910181015160008481526002835260408082206001600160a01b038c1683529093529190912054909150818110156126d05760405162461bcd60e51b815260040161074f9061313c565b60009283526002602090815260408085206001600160a01b038b168652909152909220910390558061270181613412565b915050612644565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161275a9291906130b3565b60405180910390a450505050565b6001600160a01b03831661278e5760405162461bcd60e51b815260040161074f9061320e565b336127bd8185600061279f87612324565b6127a887612324565b60405180602001604052806000815250612129565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156128005760405162461bcd60e51b815260040161074f9061313c565b60008481526002602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b828054612879906133ab565b90600052602060002090601f01602090048101928261289b57600085556128e1565b82601f106128b457805160ff19168380011785556128e1565b828001600101855582156128e1579182015b828111156128e15782518255916020019190600101906128c6565b5061172f9291505b8082111561172f57600081556001016128e9565b60006001600160401b0383111561291657612916613483565b60405161292d601f8501601f1916602001826133e6565b80915083815284848401111561294257600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461087957600080fd5b600082601f83011261298257600080fd5b8135602061298f826132e3565b60405161299c82826133e6565b8381528281019150858301600585901b870184018810156129bc57600080fd5b60005b858110156129e2576129d08261295a565b845292840192908401906001016129bf565b5090979650505050505050565b600082601f830112612a0057600080fd5b81356020612a0d826132e3565b604051612a1a82826133e6565b8381528281019150858301600585901b87018401881015612a3a57600080fd5b60005b858110156129e257813584529284019290840190600101612a3d565b600082601f830112612a6a57600080fd5b6119c9838335602085016128fd565b600060208284031215612a8b57600080fd5b6119c98261295a565b60008060408385031215612aa757600080fd5b612ab08361295a565b9150612abe6020840161295a565b90509250929050565b600080600080600060a08688031215612adf57600080fd5b612ae88661295a565b9450612af66020870161295a565b935060408601356001600160401b0380821115612b1257600080fd5b612b1e89838a016129ef565b94506060880135915080821115612b3457600080fd5b612b4089838a016129ef565b93506080880135915080821115612b5657600080fd5b50612b6388828901612a59565b9150509295509295909350565b600080600080600060a08688031215612b8857600080fd5b612b918661295a565b9450612b9f6020870161295a565b9350604086013592506060860135915060808601356001600160401b03811115612bc857600080fd5b612b6388828901612a59565b600080600060608486031215612be957600080fd5b612bf28461295a565b925060208401356001600160401b0380821115612c0e57600080fd5b612c1a878388016129ef565b93506040860135915080821115612c3057600080fd5b50612c3d868287016129ef565b9150509250925092565b60008060408385031215612c5a57600080fd5b612c638361295a565b91506020830135612c738161353e565b809150509250929050565b60008060408385031215612c9157600080fd5b612c9a8361295a565b946020939093013593505050565b600080600060608486031215612cbd57600080fd5b612cc68461295a565b95602085013595506040909401359392505050565b600060208284031215612ced57600080fd5b81356001600160401b03811115612d0357600080fd5b611f8784828501612971565b60008060408385031215612d2257600080fd5b82356001600160401b0380821115612d3957600080fd5b612d4586838701612971565b93506020850135915080821115612d5b57600080fd5b50612d68858286016129ef565b9150509250929050565b600080600060608486031215612d8757600080fd5b83356001600160401b03811115612d9d57600080fd5b612da986828701612971565b9660208601359650604090950135949350505050565b600060208284031215612dd157600080fd5b81356119c98161353e565b600060208284031215612dee57600080fd5b81516119c98161353e565b600060208284031215612e0b57600080fd5b5035919050565b60008060408385031215612e2557600080fd5b82359150612abe6020840161295a565b600060208284031215612e4757600080fd5b81356119c98161354c565b600060208284031215612e6457600080fd5b81516119c98161354c565b600060208284031215612e8157600080fd5b81356001600160401b03811115612e9757600080fd5b8201601f81018413612ea857600080fd5b611f87848235602084016128fd565b600060208284031215612ec957600080fd5b5051919050565b60008060408385031215612ee357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612f2257815187529582019590820190600101612f06565b509495945050505050565b60008151808452612f45816020860160208601613368565b601f01601f19169290920160200192915050565b60008351612f6b818460208801613368565b835190830190612f7f818360208801613368565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612fc0816017850160208801613368565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612ff1816028840160208801613368565b01602801949350505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061302990830186612ef2565b828103606084015261303b8186612ef2565b9050828103608084015261304f8185612f2d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061309590830184612f2d565b979650505050505050565b6020815260006119c96020830184612ef2565b6040815260006130c66040830185612ef2565b82810360208401526130d88185612ef2565b95945050505050565b6020815260006119c96020830184612f2d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b038211156132fc576132fc613483565b5060051b60200190565b6000821982111561331957613319613441565b500190565b60008261332d5761332d613457565b500490565b600081600019048311821515161561334c5761334c613441565b500290565b60008282101561336357613363613441565b500390565b60005b8381101561338357818101518382015260200161336b565b838111156109465750506000910152565b6000816133a3576133a3613441565b506000190190565b600181811c908216806133bf57607f821691505b602082108114156133e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561340b5761340b613483565b6040525050565b600060001982141561342657613426613441565b5060010190565b60008261343c5761343c613457565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156134b25760046000803e5060005160e01c5b90565b600060443d10156134c35790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156134f257505050505090565b828501915081518181111561350a5750505050505090565b843d87010160208285010111156135245750505050505090565b613533602082860101876133e6565b509095945050505050565b8015158114610b2c57600080fd5b6001600160e01b031981168114610b2c57600080fdfe51ada25f7cf0859910926228d277aca0add8f50f444c7c5ee9b5b4086760654f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a26469706673582212200e054b6bee03dd0ed753ef50064a61ed32fa10dcc74c30c365be8417ed599efa64736f6c6343000807003365d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a51ada25f7cf0859910926228d277aca0add8f50f444c7c5ee9b5b4086760654f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775e97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa2200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e4d3231584859733145574752757a5461424b683242386b34456f505253467352446a457878687847676d422f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102d55760003560e01c80638456cb5911610182578063c87b56dd116100e9578063e985e9c5116100a2578063f4b2eab41161007c578063f4b2eab4146106a6578063f5298aca146106b9578063f8aaa344146106cc578063f962e57c146106d457600080fd5b8063e985e9c514610644578063f242432a14610680578063f2fde38b1461069357600080fd5b8063c87b56dd146105bc578063d2abdf82146105cf578063d5391393146105e2578063d547741f146105f7578063d56892d81461060a578063e63ab1e91461061d57600080fd5b8063a217fddf1161013b578063a217fddf14610534578063a22cb4651461053c578063a92b484e1461054f578063b8ec76f214610562578063b930908f14610575578063bd85b0391461059c57600080fd5b80638456cb59146104c05780638a13eea7146104c85780638da5cb5b146104f357806391d148541461050457806395d89b41146105175780639ed03b381461051f57600080fd5b806336568abe116102415780635c975abb116101fa57806375b238fc116101d457806375b238fc14610488578063774a88351461049d578063775b9c13146104a55780637b5e4e03146104b857600080fd5b80635c975abb146104625780636b20c4541461046d578063715018a61461048057600080fd5b806336568abe146103f55780633f4ba83a146104085780634e1273f4146104105780634f558e79146104305780635afd5086146104525780635baaa3401461045a57600080fd5b8063156e29f611610293578063156e29f614610373578063248a9ca31461038657806326412aca146103a957806328ecc34e146103bc5780632eb2c2d6146103cf5780632f2ff15d146103e257600080fd5b8062fdd58e146102da57806301ffc9a71461030057806302fe53051461032357806306fdde03146103385780630ddcfe8e1461034d5780630e89341c14610360575b600080fd5b6102ed6102e8366004612c7e565b6106e7565b6040519081526020015b60405180910390f35b61031361030e366004612e35565b610780565b60405190151581526020016102f7565b610336610331366004612e6f565b610791565b005b6103406107b7565b6040516102f791906130e1565b61031361035b366004612a79565b610845565b61034061036e366004612df9565b61087e565b610336610381366004612ca8565b610912565b6102ed610394366004612df9565b60009081526020819052604090206001015490565b6103366103b7366004612dbf565b61094c565b6103366103ca366004612a79565b610977565b6103366103dd366004612ac7565b6109bd565b6103366103f0366004612e12565b610a54565b610336610403366004612e12565b610a7f565b610336610af9565b61042361041e366004612d0f565b610b2f565b6040516102f791906130a0565b61031361043e366004612df9565b600090815260056020526040902054151590565b610336610c58565b610336610dcc565b60065460ff16610313565b61033661047b366004612bd4565b6110ab565b6103366110ee565b6102ed6000805160206135a383398151915281565b610313611154565b6103366104b3366004612cdb565b611167565b6103366111df565b61033661127a565b6008546104db906001600160a01b031681565b6040516001600160a01b0390911681526020016102f7565b6001546001600160a01b03166104db565b610313610512366004612e12565b6112ad565b6103406112d6565b6102ed60008051602061356383398151915281565b6102ed600081565b61033661054a366004612c47565b6112e3565b6102ed61055d366004612df9565b6113ba565b610336610570366004612ca8565b6113ce565b6102ed7fe97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa2281565b6102ed6105aa366004612df9565b60009081526005602052604090205490565b6103406105ca366004612df9565b611484565b6103366105dd366004612ed0565b6114bf565b6102ed60008051602061358383398151915281565b610336610605366004612e12565b611518565b610336610618366004612a79565b61153e565b6102ed7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610313610652366004612a94565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b61033661068e366004612b70565b611580565b6103366106a1366004612a79565b6115c5565b6103136106b4366004612a79565b61168d565b6103366106c7366004612ca8565b6116bd565b6104db611700565b6103366106e2366004612d72565b611733565b60006001600160a01b0383166107585760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526002602090815260408083206001600160a01b03949094168352929052205490565b600061078b826119d0565b92915050565b6000805160206135a38339815191526107aa8133611a10565b6107b382611a74565b5050565b600e80546107c4906133ab565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906133ab565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b505050505081565b6001600160a01b03811660009081526009602052604081205460ff166001141561087157506001919050565b506000919050565b919050565b60606004805461088d906133ab565b80601f01602080910402602001604051908101604052809291908181526020018280546108b9906133ab565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b50505050509050919050565b60008051602061358383398151915261092b8133611a10565b61094684848460405180602001604052806000815250611a7d565b50505050565b6000805160206135a38339815191526109658133611a10565b600d805460ff19168315151790555050565b6000805160206135638339815191526109908133611a10565b50600780546001600160a01b039092166001600160a01b0319928316811790915560088054909216179055565b6001600160a01b0385163314806109d957506109d98533610652565b610a405760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161074f565b610a4d8585858585611a89565b5050505050565b600082815260208190526040902060010154610a708133611a10565b610a7a8383611c36565b505050565b6001600160a01b0381163314610aef5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161074f565b6107b38282611cba565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b248133611a10565b610b2c611d1f565b50565b60608151835114610b945760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161074f565b600083516001600160401b03811115610baf57610baf613483565b604051908082528060200260200182016040528015610bd8578160200160208202803683370190505b50905060005b8451811015610c5057610c23858281518110610bfc57610bfc61346d565b6020026020010151858381518110610c1657610c1661346d565b60200260200101516106e7565b828281518110610c3557610c3561346d565b6020908102919091010152610c4981613412565b9050610bde565b509392505050565b600080516020613563833981519152610c718133611a10565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610cb557600080fd5b505afa158015610cc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ced9190612eb7565b905060008111610d3f5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f75676820746f6b656e7320696e207468652072657365727665604482015260640161074f565b60085460065460405163a9059cbb60e01b81526001600160a01b03610100909204821660048201526024810184905291169063a9059cbb90604401602060405180830381600087803b158015610d9457600080fd5b505af1158015610da8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7a9190612ddc565b6040516306ee7f4760e11b81523360048201523090630ddcfe8e9060240160206040518083038186803b158015610e0257600080fd5b505afa158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190612ddc565b1515600114610e9d5760405162461bcd60e51b815260206004820152602960248201527f536f7272792c20796f7520617265206e6f7420656c696769626c6520746f20666044820152683932b29036b4b73a1760b91b606482015260840161074f565b600d5460ff161515600114610f0e5760405162461bcd60e51b815260206004820152603160248201527f46726565206d696e7420686173206e6f742073746172746564207965742e202f60448201527010233932b29036b4b73a1032b73232b21760791b606482015260840161074f565b336000908152600a602052604090205460ff1615610f785760405162461bcd60e51b815260206004820152602160248201527f596f7520616c7265616479206f776e656420746865204e46542850542d3136296044820152601760f91b606482015260840161074f565b60016000527f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5cf54600c6020527fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5c5410610fff5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161074f565b61101b3360018060405180602001604052806000815250611a7d565b336000908152600a602090815260408220805460ff19166001908117909155808352600c9091527fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5c805491929091611074908490613306565b9091555050604051600190819033907f9b2fbb233a04734e249e7d7f8316ec4a97d96b2461ee2c213b856e1832e5932090600090a4565b6001600160a01b0383163314806110c757506110c78333610652565b6110e35760405162461bcd60e51b815260040161074f90613180565b610a7a838383611db2565b6001546001600160a01b031633146111485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074f565b6111526000611dbd565b565b6000611162600d5460ff1690565b905090565b6000805160206135a38339815191526111808133611a10565b60005b8251811015610a7a576111cd8382815181106111a1576111a161346d565b60200260200101516001600160a01b03166000908152600960205260409020805460ff19166001179055565b806111d781613412565b915050611183565b6000805160206135638339815191526111f88133611a10565b30316112385760405162461bcd60e51b815260206004820152600f60248201526e62616c616e6365206973207a65726f60881b604482015260640161074f565b60065460405130319161010090046001600160a01b031690819083156108fc029084906000818181858888f19350505050158015610946573d6000803e3d6000fd5b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6112a58133611a10565b610b2c611e0f565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600f80546107c4906133ab565b336001600160a01b038316141561134e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161074f565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600b602052604081205461078b565b6000805160206135838339815191526113e78133611a10565b6000838152600b6020908152604080832054600c90925290912054106114405760405162461bcd60e51b815260206004820152600e60248201526d4d6178696d756d20537570706c7960901b604482015260640161074f565b61145b84848460405180602001604052806000815250611a7d565b6000838152600c602052604081208054849290611479908490613306565b909155505050505050565b606061148f8261087e565b61149883611e8a565b6040516020016114a9929190612f59565b6040516020818303038152906040529050919050565b6000805160206135a38339815191526114d88133611a10565b6000838152600b602052604080822084905551839185917f32e7e4c707bab7d25c2485c9f91f06fc897f1bd13a2460fdd7610498498465379190a3505050565b6000828152602081905260409020600101546115348133611a10565b610a7a8383611cba565b6000805160206135638339815191526115578133611a10565b50600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03851633148061159c575061159c8533610652565b6115b85760405162461bcd60e51b815260040161074f90613180565b610a4d8585858585611f8f565b6001546001600160a01b0316331461161f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074f565b6001600160a01b0381166116845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b610b2c81611dbd565b6001600160a01b0381166000908152600a602052604081205460ff166116b557506000919050565b506001919050565b6001600160a01b0383163314806116d957506116d98333610652565b6116f55760405162461bcd60e51b815260040161074f90613180565b610a7a8383836120bf565b600060008051602061356383398151915261171b8133611a10565b60065461010090046001600160a01b031691505b5090565b60008051602061358383398151915261174c8133611a10565b6000838152600b6020908152604080832054600c90925290912054106117a55760405162461bcd60e51b815260206004820152600e60248201526d4d6178696d756d20537570706c7960901b604482015260640161074f565b60005b8451811015610a4d576117e58582815181106117c6576117c661346d565b6020026020010151858560405180602001604052806000815250611a7d565b6000848152600c602052604081208054859290611803908490613306565b9091555081905061181381613412565b9150506117a8565b80516107b390600490602084019061286d565b6060600061183d836002613332565b611848906002613306565b6001600160401b0381111561185f5761185f613483565b6040519080825280601f01601f191660200182016040528015611889576020820181803683370190505b509050600360fc1b816000815181106118a4576118a461346d565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106118d3576118d361346d565b60200101906001600160f81b031916908160001a90535060006118f7846002613332565b611902906001613306565b90505b600181111561197a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106119365761193661346d565b1a60f81b82828151811061194c5761194c61346d565b60200101906001600160f81b031916908160001a90535060049490941c9361197381613394565b9050611905565b5083156119c95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161074f565b9392505050565b60006001600160e01b03198216636cdb3d1360e11b1480611a0157506001600160e01b031982166303a24d0760e21b145b8061078b575061078b826120ca565b611a1a82826112ad565b6107b357611a32816001600160a01b0316601461182e565b611a3d83602061182e565b604051602001611a4e929190612f88565b60408051601f198184030181529082905262461bcd60e51b825261074f916004016130e1565b610b2c8161181b565b610946848484846120ff565b8151835114611aaa5760405162461bcd60e51b815260040161074f9061329b565b6001600160a01b038416611ad05760405162461bcd60e51b815260040161074f906131c9565b33611adf818787878787612129565b60005b8451811015611bc8576000858281518110611aff57611aff61346d565b602002602001015190506000858381518110611b1d57611b1d61346d565b60209081029190910181015160008481526002835260408082206001600160a01b038e168352909352919091205490915081811015611b6e5760405162461bcd60e51b815260040161074f90613251565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611bad908490613306565b9250508190555050505080611bc190613412565b9050611ae2565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c189291906130b3565b60405180910390a4611c2e818787878787612137565b505050505050565b611c4082826112ad565b6107b3576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611c763390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611cc482826112ad565b156107b3576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16611d685760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161074f565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610a7a8383836122a2565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff1615611e555760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161074f565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d953390565b606081611eae5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed85780611ec281613412565b9150611ed19050600a8361331e565b9150611eb2565b6000816001600160401b03811115611ef257611ef2613483565b6040519080825280601f01601f191660200182016040528015611f1c576020820181803683370190505b5090505b8415611f8757611f31600183613351565b9150611f3e600a8661342d565b611f49906030613306565b60f81b818381518110611f5e57611f5e61346d565b60200101906001600160f81b031916908160001a905350611f80600a8661331e565b9450611f20565b949350505050565b6001600160a01b038416611fb55760405162461bcd60e51b815260040161074f906131c9565b33611fd4818787611fc588612324565b611fce88612324565b87612129565b60008481526002602090815260408083206001600160a01b038a168452909152902054838110156120175760405162461bcd60e51b815260040161074f90613251565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612056908490613306565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46120b682888888888861236f565b50505050505050565b610a7a838383612439565b60006001600160e01b03198216637965db0b60e01b148061078b57506301ffc9a760e01b6001600160e01b031983161461078b565b61210b8484848461246c565b60008381526005602052604081208054849290611479908490613306565b611c2e86868686868661256f565b6001600160a01b0384163b15611c2e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061217b9089908990889088908890600401612ffd565b602060405180830381600087803b15801561219557600080fd5b505af19250505080156121c5575060408051601f3d908101601f191682019092526121c291810190612e52565b60015b612272576121d1613499565b806308c379a0141561220b57506121e66134b5565b806121f1575061220d565b8060405162461bcd60e51b815260040161074f91906130e1565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161074f565b6001600160e01b0319811663bc197c8160e01b146120b65760405162461bcd60e51b815260040161074f906130f4565b6122ad8383836125d7565b60005b8251811015610946578181815181106122cb576122cb61346d565b6020026020010151600560008584815181106122e9576122e961346d565b60200260200101518152602001908152602001600020600082825461230e9190613351565b9091555061231d905081613412565b90506122b0565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061235e5761235e61346d565b602090810291909101015292915050565b6001600160a01b0384163b15611c2e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906123b3908990899088908890889060040161305b565b602060405180830381600087803b1580156123cd57600080fd5b505af19250505080156123fd575060408051601f3d908101601f191682019092526123fa91810190612e52565b60015b612409576121d1613499565b6001600160e01b0319811663f23a6e6160e01b146120b65760405162461bcd60e51b815260040161074f906130f4565b612444838383612768565b60008281526005602052604081208054839290612462908490613351565b9091555050505050565b6001600160a01b0384166124cc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161074f565b336124dd81600087611fc588612324565b60008481526002602090815260408083206001600160a01b03891684529091528120805485929061250f908490613306565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610a4d8160008787878761236f565b60065460ff1615611c2e5760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b606482015260840161074f565b6001600160a01b0383166125fd5760405162461bcd60e51b815260040161074f9061320e565b805182511461261e5760405162461bcd60e51b815260040161074f9061329b565b600033905061264181856000868660405180602001604052806000815250612129565b60005b83518110156127095760008482815181106126615761266161346d565b60200260200101519050600084838151811061267f5761267f61346d565b60209081029190910181015160008481526002835260408082206001600160a01b038c1683529093529190912054909150818110156126d05760405162461bcd60e51b815260040161074f9061313c565b60009283526002602090815260408085206001600160a01b038b168652909152909220910390558061270181613412565b915050612644565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161275a9291906130b3565b60405180910390a450505050565b6001600160a01b03831661278e5760405162461bcd60e51b815260040161074f9061320e565b336127bd8185600061279f87612324565b6127a887612324565b60405180602001604052806000815250612129565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156128005760405162461bcd60e51b815260040161074f9061313c565b60008481526002602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b828054612879906133ab565b90600052602060002090601f01602090048101928261289b57600085556128e1565b82601f106128b457805160ff19168380011785556128e1565b828001600101855582156128e1579182015b828111156128e15782518255916020019190600101906128c6565b5061172f9291505b8082111561172f57600081556001016128e9565b60006001600160401b0383111561291657612916613483565b60405161292d601f8501601f1916602001826133e6565b80915083815284848401111561294257600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461087957600080fd5b600082601f83011261298257600080fd5b8135602061298f826132e3565b60405161299c82826133e6565b8381528281019150858301600585901b870184018810156129bc57600080fd5b60005b858110156129e2576129d08261295a565b845292840192908401906001016129bf565b5090979650505050505050565b600082601f830112612a0057600080fd5b81356020612a0d826132e3565b604051612a1a82826133e6565b8381528281019150858301600585901b87018401881015612a3a57600080fd5b60005b858110156129e257813584529284019290840190600101612a3d565b600082601f830112612a6a57600080fd5b6119c9838335602085016128fd565b600060208284031215612a8b57600080fd5b6119c98261295a565b60008060408385031215612aa757600080fd5b612ab08361295a565b9150612abe6020840161295a565b90509250929050565b600080600080600060a08688031215612adf57600080fd5b612ae88661295a565b9450612af66020870161295a565b935060408601356001600160401b0380821115612b1257600080fd5b612b1e89838a016129ef565b94506060880135915080821115612b3457600080fd5b612b4089838a016129ef565b93506080880135915080821115612b5657600080fd5b50612b6388828901612a59565b9150509295509295909350565b600080600080600060a08688031215612b8857600080fd5b612b918661295a565b9450612b9f6020870161295a565b9350604086013592506060860135915060808601356001600160401b03811115612bc857600080fd5b612b6388828901612a59565b600080600060608486031215612be957600080fd5b612bf28461295a565b925060208401356001600160401b0380821115612c0e57600080fd5b612c1a878388016129ef565b93506040860135915080821115612c3057600080fd5b50612c3d868287016129ef565b9150509250925092565b60008060408385031215612c5a57600080fd5b612c638361295a565b91506020830135612c738161353e565b809150509250929050565b60008060408385031215612c9157600080fd5b612c9a8361295a565b946020939093013593505050565b600080600060608486031215612cbd57600080fd5b612cc68461295a565b95602085013595506040909401359392505050565b600060208284031215612ced57600080fd5b81356001600160401b03811115612d0357600080fd5b611f8784828501612971565b60008060408385031215612d2257600080fd5b82356001600160401b0380821115612d3957600080fd5b612d4586838701612971565b93506020850135915080821115612d5b57600080fd5b50612d68858286016129ef565b9150509250929050565b600080600060608486031215612d8757600080fd5b83356001600160401b03811115612d9d57600080fd5b612da986828701612971565b9660208601359650604090950135949350505050565b600060208284031215612dd157600080fd5b81356119c98161353e565b600060208284031215612dee57600080fd5b81516119c98161353e565b600060208284031215612e0b57600080fd5b5035919050565b60008060408385031215612e2557600080fd5b82359150612abe6020840161295a565b600060208284031215612e4757600080fd5b81356119c98161354c565b600060208284031215612e6457600080fd5b81516119c98161354c565b600060208284031215612e8157600080fd5b81356001600160401b03811115612e9757600080fd5b8201601f81018413612ea857600080fd5b611f87848235602084016128fd565b600060208284031215612ec957600080fd5b5051919050565b60008060408385031215612ee357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612f2257815187529582019590820190600101612f06565b509495945050505050565b60008151808452612f45816020860160208601613368565b601f01601f19169290920160200192915050565b60008351612f6b818460208801613368565b835190830190612f7f818360208801613368565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612fc0816017850160208801613368565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612ff1816028840160208801613368565b01602801949350505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061302990830186612ef2565b828103606084015261303b8186612ef2565b9050828103608084015261304f8185612f2d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061309590830184612f2d565b979650505050505050565b6020815260006119c96020830184612ef2565b6040815260006130c66040830185612ef2565b82810360208401526130d88185612ef2565b95945050505050565b6020815260006119c96020830184612f2d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b038211156132fc576132fc613483565b5060051b60200190565b6000821982111561331957613319613441565b500190565b60008261332d5761332d613457565b500490565b600081600019048311821515161561334c5761334c613441565b500290565b60008282101561336357613363613441565b500390565b60005b8381101561338357818101518382015260200161336b565b838111156109465750506000910152565b6000816133a3576133a3613441565b506000190190565b600181811c908216806133bf57607f821691505b602082108114156133e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561340b5761340b613483565b6040525050565b600060001982141561342657613426613441565b5060010190565b60008261343c5761343c613457565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156134b25760046000803e5060005160e01c5b90565b600060443d10156134c35790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156134f257505050505090565b828501915081518181111561350a5750505050505090565b843d87010160208285010111156135245750505050505090565b613533602082860101876133e6565b509095945050505050565b8015158114610b2c57600080fd5b6001600160e01b031981168114610b2c57600080fdfe51ada25f7cf0859910926228d277aca0add8f50f444c7c5ee9b5b4086760654f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a26469706673582212200e054b6bee03dd0ed753ef50064a61ed32fa10dcc74c30c365be8417ed599efa64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e4d3231584859733145574752757a5461424b683242386b34456f505253467352446a457878687847676d422f00000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): ipfs://QmNM21XHYs1EWGRuzTaBKh2B8k4EoPRSFsRDjExxhxGgmB/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e4d3231584859733145574752757a5461424b68324238
Arg [3] : 6b34456f505253467352446a457878687847676d422f00000000000000000000


Deployed Bytecode Sourcemap

58657:6757:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39320:231;;;;;;:::i;:::-;;:::i;:::-;;;14864:25:1;;;14852:2;14837:18;39320:231:0;;;;;;;;64669:227;;;;;;:::i;:::-;;:::i;:::-;;;14691:14:1;;14684:22;14666:41;;14654:2;14639:18;64669:227:0;14526:187:1;60022:100:0;;;;;;:::i;:::-;;:::i;:::-;;59350:43;;;:::i;:::-;;;;;;;:::i;62650:193::-;;;;;;:::i;:::-;;:::i;39064:105::-;;;;;;:::i;:::-;;:::i;62851:138::-;;;;;;:::i;:::-;;:::i;26988:123::-;;;;;;:::i;:::-;27054:7;27081:12;;;;;;;;;;:22;;;;26988:123;62997:101;;;;;;:::i;:::-;;:::i;57506:267::-;;;;;;:::i;:::-;;:::i;41415:442::-;;;;;;:::i;:::-;;:::i;27373:147::-;;;;;;:::i;:::-;;:::i;28421:218::-;;;;;;:::i;:::-;;:::i;59935:79::-;;;:::i;39717:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55504:122::-;;;;;;:::i;:::-;55561:4;55382:16;;;:12;:16;;;;;;-1:-1:-1;;;55504:122:0;58375:275;;;:::i;61327:523::-;;;:::i;12024:86::-;12095:7;;;;12024:86;;54301:353;;;;;;:::i;:::-;;:::i;10335:94::-;;;:::i;58835:60::-;;-1:-1:-1;;;;;;;;;;;58835:60:0;;63205:92;;;:::i;60311:218::-;;;;;;:::i;:::-;;:::i;58059:304::-;;;:::i;59852:75::-;;;:::i;57229:24::-;;;;;-1:-1:-1;;;;;57229:24:0;;;;;;-1:-1:-1;;;;;12071:32:1;;;12053:51;;12041:2;12026:18;57229:24:0;11907:203:1;9684:87:0;9757:6;;-1:-1:-1;;;;;9757:6:0;9684:87;;25873:139;;;;;;:::i;:::-;;:::i;59400:30::-;;;:::i;57262:64::-;;-1:-1:-1;;;;;;;;;;;57262:64:0;;24964:49;;25009:4;24964:49;;40314:311;;;;;;:::i;:::-;;:::i;61016:105::-;;;;;;:::i;:::-;;:::i;62407:235::-;;;;;;:::i;:::-;;:::i;58971:58::-;;59007:22;58971:58;;55293:113;;;;;;:::i;:::-;55355:7;55382:16;;;:12;:16;;;;;;;55293:113;60130:173;;;;;;:::i;:::-;;:::i;60728:162::-;;;;;;:::i;:::-;;:::i;58902:62::-;;-1:-1:-1;;;;;;;;;;;58902:62:0;;27765:149;;;;;;:::i;:::-;;:::i;57781:138::-;;;;;;:::i;:::-;;:::i;59036:62::-;;59074:24;59036:62;;40697:168;;;;;;:::i;:::-;-1:-1:-1;;;;;40820:27:0;;;40796:4;40820:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;40697:168;40937:401;;;;;;:::i;:::-;;:::i;10584:192::-;;;;;;:::i;:::-;;:::i;61858:203::-;;;;;;:::i;:::-;;:::i;53972:321::-;;;;;;:::i;:::-;;:::i;57927:124::-;;;:::i;62069:330::-;;;;;;:::i;:::-;;:::i;39320:231::-;39406:7;-1:-1:-1;;;;;39434:21:0;;39426:77;;;;-1:-1:-1;;;39426:77:0;;17498:2:1;39426:77:0;;;17480:21:1;17537:2;17517:18;;;17510:30;17576:34;17556:18;;;17549:62;-1:-1:-1;;;17627:18:1;;;17620:41;17678:19;;39426:77:0;;;;;;;;;-1:-1:-1;39521:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;39521:22:0;;;;;;;;;;;;39320:231::o;64669:227::-;64823:4;64852:36;64876:11;64852:23;:36::i;:::-;64845:43;64669:227;-1:-1:-1;;64669:227:0:o;60022:100::-;-1:-1:-1;;;;;;;;;;;25455:30:0;58872:23;8566:10;25455;:30::i;:::-;60099:15:::1;60107:6;60099:7;:15::i;:::-;60022:100:::0;;:::o;59350:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62650:193::-;-1:-1:-1;;;;;62730:19:0;;62711:4;62730:19;;;:10;:19;;;;;;;;;:24;62727:109;;;-1:-1:-1;62777:4:0;;62650:193;-1:-1:-1;62650:193:0:o;62727:109::-;-1:-1:-1;62819:5:0;;62650:193;-1:-1:-1;62650:193:0:o;62727:109::-;62650:193;;;:::o;39064:105::-;39124:13;39157:4;39150:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39064:105;;;:::o;62851:138::-;-1:-1:-1;;;;;;;;;;;25455:30:0;58940:24;8566:10;25455;:30::i;:::-;62951::::1;62957:7;62966:2;62970:6;62951:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;62851:138:::0;;;;:::o;62997:101::-;-1:-1:-1;;;;;;;;;;;25455:30:0;58872:23;8566:10;25455;:30::i;:::-;63170:10;:19;;-1:-1:-1;;63170:19:0;;;;;;;60022:100;;:::o;57506:267::-;-1:-1:-1;;;;;;;;;;;25455:30:0;57301:25;8566:10;25455;:30::i;:::-;-1:-1:-1;57688:13:0::1;:36:::0;;-1:-1:-1;;;;;57688:36:0;;::::1;-1:-1:-1::0;;;;;;57688:36:0;;::::1;::::0;::::1;::::0;;;57735:10:::1;:30:::0;;;;::::1;;::::0;;57506:267::o;41415:442::-;-1:-1:-1;;;;;41648:20:0;;8566:10;41648:20;;:60;;-1:-1:-1;41672:36:0;41689:4;8566:10;40697:168;:::i;41672:36::-;41626:160;;;;-1:-1:-1;;;41626:160:0;;21803:2:1;41626:160:0;;;21785:21:1;21842:2;21822:18;;;21815:30;21881:34;21861:18;;;21854:62;-1:-1:-1;;;21932:18:1;;;21925:48;21990:19;;41626:160:0;21601:414:1;41626:160:0;41797:52;41820:4;41826:2;41830:3;41835:7;41844:4;41797:22;:52::i;:::-;41415:442;;;;;:::o;27373:147::-;27054:7;27081:12;;;;;;;;;;:22;;;25455:30;25466:4;8566:10;25455;:30::i;:::-;27487:25:::1;27498:4;27504:7;27487:10;:25::i;:::-;27373:147:::0;;;:::o;28421:218::-;-1:-1:-1;;;;;28517:23:0;;8566:10;28517:23;28509:83;;;;-1:-1:-1;;;28509:83:0;;25727:2:1;28509:83:0;;;25709:21:1;25766:2;25746:18;;;25739:30;25805:34;25785:18;;;25778:62;-1:-1:-1;;;25856:18:1;;;25849:45;25911:19;;28509:83:0;25525:411:1;28509:83:0;28605:26;28617:4;28623:7;28605:11;:26::i;59935:79::-;59074:24;25455:30;59074:24;8566:10;25455;:30::i;:::-;59996:10:::1;:8;:10::i;:::-;59935:79:::0;:::o;39717:524::-;39873:16;39934:3;:10;39915:8;:15;:29;39907:83;;;;-1:-1:-1;;;39907:83:0;;24506:2:1;39907:83:0;;;24488:21:1;24545:2;24525:18;;;24518:30;24584:34;24564:18;;;24557:62;-1:-1:-1;;;24635:18:1;;;24628:39;24684:19;;39907:83:0;24304:405:1;39907:83:0;40003:30;40050:8;:15;-1:-1:-1;;;;;40036:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40036:30:0;;40003:63;;40084:9;40079:122;40103:8;:15;40099:1;:19;40079:122;;;40159:30;40169:8;40178:1;40169:11;;;;;;;;:::i;:::-;;;;;;;40182:3;40186:1;40182:6;;;;;;;;:::i;:::-;;;;;;;40159:9;:30::i;:::-;40140:13;40154:1;40140:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;40120:3;;;:::i;:::-;;;40079:122;;;-1:-1:-1;40220:13:0;39717:524;-1:-1:-1;;;39717:524:0:o;58375:275::-;-1:-1:-1;;;;;;;;;;;25455:30:0;57301:25;8566:10;25455;:30::i;:::-;58468:10:::1;::::0;:35:::1;::::0;-1:-1:-1;;;58468:35:0;;58497:4:::1;58468:35;::::0;::::1;12053:51:1::0;58447:18:0::1;::::0;-1:-1:-1;;;;;58468:10:0::1;::::0;:20:::1;::::0;12026:18:1;;58468:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58447:56;;58535:1;58522:10;:14;58514:59;;;::::0;-1:-1:-1;;;58514:59:0;;24145:2:1;58514:59:0::1;::::0;::::1;24127:21:1::0;;;24164:18;;;24157:30;24223:34;24203:18;;;24196:62;24275:18;;58514:59:0::1;23943:356:1::0;58514:59:0::1;58594:10;::::0;58614:15:::1;::::0;58594:48:::1;::::0;-1:-1:-1;;;58594:48:0;;-1:-1:-1;;;;;58594:10:0::1;58614:15:::0;;::::1;::::0;::::1;58594:48;::::0;::::1;13685:51:1::0;13752:18;;;13745:34;;;58594:10:0;::::1;::::0;:19:::1;::::0;13658:18:1;;58594:48:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;61327:523::-:0;61382:29;;-1:-1:-1;;;61382:29:0;;61400:10;61382:29;;;12053:51:1;61382:4:0;;:17;;12026:18:1;;61382:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;61415:4;61382:37;61374:91;;;;-1:-1:-1;;;61374:91:0;;16739:2:1;61374:91:0;;;16721:21:1;16778:2;16758:18;;;16751:30;16817:34;16797:18;;;16790:62;-1:-1:-1;;;16868:18:1;;;16861:39;16917:19;;61374:91:0;16537:405:1;61374:91:0;61484:10;;;;:18;;:10;:18;61476:80;;;;-1:-1:-1;;;61476:80:0;;20634:2:1;61476:80:0;;;20616:21:1;20673:2;20653:18;;;20646:30;20712:34;20692:18;;;20685:62;-1:-1:-1;;;20763:18:1;;;20756:47;20820:19;;61476:80:0;20432:413:1;61476:80:0;61587:10;61575:23;;;;:11;:23;;;;;;;;:28;61567:73;;;;-1:-1:-1;;;61567:73:0;;20232:2:1;61567:73:0;;;20214:21:1;20271:2;20251:18;;;20244:30;20310:34;20290:18;;;20283:62;-1:-1:-1;;;20361:18:1;;;20354:31;20402:19;;61567:73:0;20030:397:1;61567:73:0;61684:1;61674:12;;;;61659:9;61674:12;61659;;;:27;61651:49;;;;-1:-1:-1;;;61651:49:0;;23398:2:1;61651:49:0;;;23380:21:1;23437:1;23417:18;;;23410:29;-1:-1:-1;;;23455:18:1;;;23448:39;23504:18;;61651:49:0;23196:332:1;61651:49:0;61711:25;61717:10;61729:1;61731;61711:25;;;;;;;;;;;;:5;:25::i;:::-;61759:10;61747:23;;;;:11;:23;;;;;;;:27;;-1:-1:-1;;61747:27:0;61773:1;61747:27;;;;;;61785:12;;;:9;:12;;;;:17;;61773:1;;61785:12;;:17;;61773:1;;61785:17;:::i;:::-;;;;-1:-1:-1;;61820:22:0;;61840:1;;;;61825:10;;61820:22;;;;;61327:523::o;54301:353::-;-1:-1:-1;;;;;54466:23:0;;8566:10;54466:23;;:66;;-1:-1:-1;54493:39:0;54510:7;8566:10;40697:168;:::i;54493:39::-;54444:157;;;;-1:-1:-1;;;54444:157:0;;;;;;;:::i;:::-;54614:32;54625:7;54634:3;54639:6;54614:10;:32::i;10335:94::-;9757:6;;-1:-1:-1;;;;;9757:6:0;8566:10;9904:23;9896:68;;;;-1:-1:-1;;;9896:68:0;;23037:2:1;9896:68:0;;;23019:21:1;;;23056:18;;;23049:30;23115:34;23095:18;;;23088:62;23167:18;;9896:68:0;22835:356:1;9896:68:0;10400:21:::1;10418:1;10400:9;:21::i;:::-;10335:94::o:0;63205:92::-;63251:4;63274:15;63375:10;;;;;63305:88;63274:15;63267:22;;63205:92;:::o;60311:218::-;-1:-1:-1;;;;;;;;;;;25455:30:0;58872:23;8566:10;25455;:30::i;:::-;60412:9:::1;60407:115;60431:16;:23;60427:1;:27;60407:115;;;60476:34;60490:16;60507:1;60490:19;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;60611:25:0;;;;;:10;:25;;;;;:29;;-1:-1:-1;;60611:29:0;60639:1;60611:29;;;60537:111;60476:34:::1;60456:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60407:115;;58059:304:::0;-1:-1:-1;;;;;;;;;;;25455:30:0;57301:25;8566:10;25455;:30::i;:::-;58154:4:::1;58138:30;58130:61;;;::::0;-1:-1:-1;;;58130:61:0;;17910:2:1;58130:61:0::1;::::0;::::1;17892:21:1::0;17949:2;17929:18;;;17922:30;-1:-1:-1;;;17968:18:1;;;17961:45;18023:18;;58130:61:0::1;17708:339:1::0;58130:61:0::1;58300:15;::::0;58327:28:::1;::::0;58241:4:::1;58225:30;::::0;58300:15:::1;::::0;::::1;-1:-1:-1::0;;;;;58300:15:0::1;::::0;;;58327:28;::::1;;;::::0;58225:30;;58204:18:::1;58327:28:::0;58204:18;58327:28;58225:30;58300:15;58327:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;59852:75:::0;59074:24;25455:30;59074:24;8566:10;25455;:30::i;:::-;59911:8:::1;:6;:8::i;25873:139::-:0;25951:4;25975:12;;;;;;;;;;;-1:-1:-1;;;;;25975:29:0;;;;;;;;;;;;;;;25873:139::o;59400:30::-;;;;;;;:::i;40314:311::-;8566:10;-1:-1:-1;;;;;40417:24:0;;;;40409:78;;;;-1:-1:-1;;;40409:78:0;;23735:2:1;40409:78:0;;;23717:21:1;23774:2;23754:18;;;23747:30;23813:34;23793:18;;;23786:62;-1:-1:-1;;;23864:18:1;;;23857:39;23913:19;;40409:78:0;23533:405:1;40409:78:0;8566:10;40500:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40500:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40500:53:0;;;;;;;;;;40569:48;;14666:41:1;;;40500:42:0;;8566:10;40569:48;;14639:18:1;40569:48:0;;;;;;;40314:311;;:::o;61016:105::-;61071:7;61212:14;;;:9;:14;;;;;;61097:16;61129:105;62407:235;-1:-1:-1;;;;;;;;;;;25455:30:0;58940:24;8566:10;25455;:30::i;:::-;62532:13:::1;::::0;;;:9:::1;:13;::::0;;;;;;;;62516:9:::1;:13:::0;;;;;;;:29:::1;62508:56;;;::::0;-1:-1:-1;;;62508:56:0;;19066:2:1;62508:56:0::1;::::0;::::1;19048:21:1::0;19105:2;19085:18;;;19078:30;-1:-1:-1;;;19124:18:1;;;19117:44;19178:18;;62508:56:0::1;18864:338:1::0;62508:56:0::1;62575:25;62581:2;62585;62589:6;62575:25;;;;;;;;;;;::::0;:5:::1;:25::i;:::-;62611:13;::::0;;;:9:::1;:13;::::0;;;;:23;;62628:6;;62611:13;:23:::1;::::0;62628:6;;62611:23:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;62407:235:0:o;60130:173::-;60189:13;60250:14;60254:9;60250:3;:14::i;:::-;60266:27;60283:9;60266:16;:27::i;:::-;60233:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60219:76;;60130:173;;;:::o;60728:162::-;-1:-1:-1;;;;;;;;;;;25455:30:0;58872:23;8566:10;25455;:30::i;:::-;60977:14;;;;:9;:14;;;;;;:23;;;60855:27;60977:23;;:14;;60855:27:::1;::::0;60977:14;60855:27:::1;60728:162:::0;;;:::o;27765:149::-;27054:7;27081:12;;;;;;;;;;:22;;;25455:30;25466:4;8566:10;25455;:30::i;:::-;27880:26:::1;27892:4;27898:7;27880:11;:26::i;57781:138::-:0;-1:-1:-1;;;;;;;;;;;25455:30:0;57301:25;8566:10;25455;:30::i;:::-;-1:-1:-1;57876:15:0::1;:35:::0;;-1:-1:-1;;;;;57876:35:0;;::::1;;;-1:-1:-1::0;;;;;;57876:35:0;;::::1;::::0;;;::::1;::::0;;57781:138::o;40937:401::-;-1:-1:-1;;;;;41145:20:0;;8566:10;41145:20;;:60;;-1:-1:-1;41169:36:0;41186:4;8566:10;40697:168;:::i;41169:36::-;41123:151;;;;-1:-1:-1;;;41123:151:0;;;;;;;:::i;:::-;41285:45;41303:4;41309:2;41313;41317:6;41325:4;41285:17;:45::i;10584:192::-;9757:6;;-1:-1:-1;;;;;9757:6:0;8566:10;9904:23;9896:68;;;;-1:-1:-1;;;9896:68:0;;23037:2:1;9896:68:0;;;23019:21:1;;;23056:18;;;23049:30;23115:34;23095:18;;;23088:62;23167:18;;9896:68:0;22835:356:1;9896:68:0;-1:-1:-1;;;;;10673:22:0;::::1;10665:73;;;::::0;-1:-1:-1;;;10665:73:0;;18254:2:1;10665:73:0::1;::::0;::::1;18236:21:1::0;18293:2;18273:18;;;18266:30;18332:34;18312:18;;;18305:62;-1:-1:-1;;;18383:18:1;;;18376:36;18429:19;;10665:73:0::1;18052:402:1::0;10665:73:0::1;10749:19;10759:8;10749:9;:19::i;61858:203::-:0;-1:-1:-1;;;;;61947:20:0;;61928:4;61947:20;;;:11;:20;;;;;;;;61944:110;;-1:-1:-1;61995:5:0;;61858:203;-1:-1:-1;61858:203:0:o;61944:110::-;-1:-1:-1;62038:4:0;;61858:203;-1:-1:-1;61858:203:0:o;53972:321::-;-1:-1:-1;;;;;54112:23:0;;8566:10;54112:23;;:66;;-1:-1:-1;54139:39:0;54156:7;8566:10;40697:168;:::i;54139:39::-;54090:157;;;;-1:-1:-1;;;54090:157:0;;;;;;;:::i;:::-;54260:25;54266:7;54275:2;54279:5;54260;:25::i;57927:124::-;58001:7;-1:-1:-1;;;;;;;;;;;25455:30:0;57301:25;8566:10;25455;:30::i;:::-;58028:15:::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;58028:15:0::1;::::0;-1:-1:-1;25496:1:0::1;57927:124:::0;;:::o;62069:330::-;-1:-1:-1;;;;;;;;;;;25455:30:0;58940:24;8566:10;25455;:30::i;:::-;62207:13:::1;::::0;;;:9:::1;:13;::::0;;;;;;;;62191:9:::1;:13:::0;;;;;;;:29:::1;62183:56;;;::::0;-1:-1:-1;;;62183:56:0;;19066:2:1;62183:56:0::1;::::0;::::1;19048:21:1::0;19105:2;19085:18;;;19078:30;-1:-1:-1;;;19124:18:1;;;19117:44;19178:18;;62183:56:0::1;18864:338:1::0;62183:56:0::1;62254:13;62250:142;62279:2;:9;62271:5;:17;62250:142;;;62313:29;62319:2;62322:5;62319:9;;;;;;;;:::i;:::-;;;;;;;62329:2;62332:6;62313:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;62357:13;::::0;;;:9:::1;:13;::::0;;;;:23;;62374:6;;62357:13;:23:::1;::::0;62374:6;;62357:23:::1;:::i;:::-;::::0;;;-1:-1:-1;62290:7:0;;-1:-1:-1;62290:7:0::1;::::0;::::1;:::i;:::-;;;;62250:142;;45417:88:::0;45484:13;;;;:4;;:13;;;;;:::i;1629:451::-;1704:13;1730:19;1762:10;1766:6;1762:1;:10;:::i;:::-;:14;;1775:1;1762:14;:::i;:::-;-1:-1:-1;;;;;1752:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1752:25:0;;1730:47;;-1:-1:-1;;;1788:6:0;1795:1;1788:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1788:15:0;;;;;;;;;-1:-1:-1;;;1814:6:0;1821:1;1814:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1814:15:0;;;;;;;;-1:-1:-1;1845:9:0;1857:10;1861:6;1857:1;:10;:::i;:::-;:14;;1870:1;1857:14;:::i;:::-;1845:26;;1840:135;1877:1;1873;:5;1840:135;;;-1:-1:-1;;;1925:5:0;1933:3;1925:11;1912:25;;;;;;;:::i;:::-;;;;1900:6;1907:1;1900:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;1900:37:0;;;;;;;;-1:-1:-1;1962:1:0;1952:11;;;;;1880:3;;;:::i;:::-;;;1840:135;;;-1:-1:-1;1993:10:0;;1985:55;;;;-1:-1:-1;;;1985:55:0;;15969:2:1;1985:55:0;;;15951:21:1;;;15988:18;;;15981:30;16047:34;16027:18;;;16020:62;16099:18;;1985:55:0;15767:356:1;1985:55:0;2065:6;1629:451;-1:-1:-1;;;1629:451:0:o;38343:310::-;38445:4;-1:-1:-1;;;;;;38482:41:0;;-1:-1:-1;;;38482:41:0;;:110;;-1:-1:-1;;;;;;;38540:52:0;;-1:-1:-1;;;38540:52:0;38482:110;:163;;;;38609:36;38633:11;38609:23;:36::i;26302:497::-;26383:22;26391:4;26397:7;26383;:22::i;:::-;26378:414;;26571:41;26599:7;-1:-1:-1;;;;;26571:41:0;26609:2;26571:19;:41::i;:::-;26685:38;26713:4;26720:2;26685:19;:38::i;:::-;26476:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26476:270:0;;;;;;;;;;-1:-1:-1;;;26422:358:0;;;;;;;:::i;64904:113::-;64988:21;65002:6;64988:13;:21::i;63401:226::-;63584:35;63596:7;63604:2;63607:6;63614:4;63584:11;:35::i;43499:1074::-;43726:7;:14;43712:3;:10;:28;43704:81;;;;-1:-1:-1;;;43704:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43804:16:0;;43796:66;;;;-1:-1:-1;;;43796:66:0;;;;;;;:::i;:::-;8566:10;43919:60;8566:10;43950:4;43956:2;43960:3;43965:7;43974:4;43919:20;:60::i;:::-;43997:9;43992:421;44016:3;:10;44012:1;:14;43992:421;;;44048:10;44061:3;44065:1;44061:6;;;;;;;;:::i;:::-;;;;;;;44048:19;;44082:14;44099:7;44107:1;44099:10;;;;;;;;:::i;:::-;;;;;;;;;;;;44126:19;44148:13;;;:9;:13;;;;;;-1:-1:-1;;;;;44148:19:0;;;;;;;;;;;;44099:10;;-1:-1:-1;44190:21:0;;;;44182:76;;;;-1:-1:-1;;;44182:76:0;;;;;;;:::i;:::-;44302:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;44302:19:0;;;;;;;;;;44324:20;;;44302:42;;44374:17;;;;;;;:27;;44324:20;;44302:13;44374:27;;44324:20;;44374:27;:::i;:::-;;;;;;;;44033:380;;;44028:3;;;;:::i;:::-;;;43992:421;;;;44460:2;-1:-1:-1;;;;;44430:47:0;44454:4;-1:-1:-1;;;;;44430:47:0;44444:8;-1:-1:-1;;;;;44430:47:0;;44464:3;44469:7;44430:47;;;;;;;:::i;:::-;;;;;;;;44490:75;44526:8;44536:4;44542:2;44546:3;44551:7;44560:4;44490:35;:75::i;:::-;43693:880;43499:1074;;;;;:::o;29725:229::-;29800:22;29808:4;29814:7;29800;:22::i;:::-;29795:152;;29839:6;:12;;;;;;;;;;;-1:-1:-1;;;;;29839:29:0;;;;;;;;;:36;;-1:-1:-1;;29839:36:0;29871:4;29839:36;;;29922:12;8566:10;;8486:98;29922:12;-1:-1:-1;;;;;29895:40:0;29913:7;-1:-1:-1;;;;;29895:40:0;29907:4;29895:40;;;;;;;;;;29725:229;;:::o;29962:230::-;30037:22;30045:4;30051:7;30037;:22::i;:::-;30033:152;;;30108:5;30076:12;;;;;;;;;;;-1:-1:-1;;;;;30076:29:0;;;;;;;;;;:37;;-1:-1:-1;;30076:37:0;;;30133:40;8566:10;;30076:12;;30133:40;;30108:5;30133:40;29962:230;;:::o;13083:120::-;12095:7;;;;12619:41;;;;-1:-1:-1;;;12619:41:0;;17149:2:1;12619:41:0;;;17131:21:1;17188:2;17168:18;;;17161:30;-1:-1:-1;;;17207:18:1;;;17200:50;17267:18;;12619:41:0;16947:344:1;12619:41:0;13142:7:::1;:15:::0;;-1:-1:-1;;13142:15:0::1;::::0;;13173:22:::1;8566:10:::0;13182:12:::1;13173:22;::::0;-1:-1:-1;;;;;12071:32:1;;;12053:51;;12041:2;12026:18;13173:22:0::1;;;;;;;13083:120::o:0;64438:223::-;64616:37;64633:7;64641:3;64645:7;64616:16;:37::i;10784:173::-;10859:6;;;-1:-1:-1;;;;;10876:17:0;;;-1:-1:-1;;;;;;10876:17:0;;;;;;;10909:40;;10859:6;;;10876:17;10859:6;;10909:40;;10840:16;;10909:40;10829:128;10784:173;:::o;12824:118::-;12095:7;;;;12349:9;12341:38;;;;-1:-1:-1;;;12341:38:0;;21052:2:1;12341:38:0;;;21034:21:1;21091:2;21071:18;;;21064:30;-1:-1:-1;;;21110:18:1;;;21103:46;21166:18;;12341:38:0;20850:340:1;12341:38:0;12884:7:::1;:14:::0;;-1:-1:-1;;12884:14:0::1;12894:4;12884:14;::::0;;12914:20:::1;12921:12;8566:10:::0;;8486:98;328:723;384:13;605:10;601:53;;-1:-1:-1;;632:10:0;;;;;;;;;;;;-1:-1:-1;;;632:10:0;;;;;328:723::o;601:53::-;679:5;664:12;720:78;727:9;;720:78;;753:8;;;;:::i;:::-;;-1:-1:-1;776:10:0;;-1:-1:-1;784:2:0;776:10;;:::i;:::-;;;720:78;;;808:19;840:6;-1:-1:-1;;;;;830:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;830:17:0;;808:39;;858:154;865:10;;858:154;;892:11;902:1;892:11;;:::i;:::-;;-1:-1:-1;961:10:0;969:2;961:5;:10;:::i;:::-;948:24;;:2;:24;:::i;:::-;935:39;;918:6;925;918:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;918:56:0;;;;;;;;-1:-1:-1;989:11:0;998:2;989:11;;:::i;:::-;;;858:154;;;1036:6;328:723;-1:-1:-1;;;;328:723:0:o;42321:820::-;-1:-1:-1;;;;;42509:16:0;;42501:66;;;;-1:-1:-1;;;42501:66:0;;;;;;;:::i;:::-;8566:10;42624:96;8566:10;42655:4;42661:2;42665:21;42683:2;42665:17;:21::i;:::-;42688:25;42706:6;42688:17;:25::i;:::-;42715:4;42624:20;:96::i;:::-;42733:19;42755:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;42755:19:0;;;;;;;;;;42793:21;;;;42785:76;;;;-1:-1:-1;;;42785:76:0;;;;;;;:::i;:::-;42897:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;42897:19:0;;;;;;;;;;42919:20;;;42897:42;;42961:17;;;;;;;:27;;42919:20;;42897:13;42961:27;;42919:20;;42961:27;:::i;:::-;;;;-1:-1:-1;;43006:46:0;;;26297:25:1;;;26353:2;26338:18;;26331:34;;;-1:-1:-1;;;;;43006:46:0;;;;;;;;;;;;;;26270:18:1;43006:46:0;;;;;;;43065:68;43096:8;43106:4;43112:2;43116;43120:6;43128:4;43065:30;:68::i;:::-;42490:651;;42321:820;;;;;:::o;64238:192::-;64392:30;64404:7;64412:2;64415:6;64392:11;:30::i;25577:204::-;25662:4;-1:-1:-1;;;;;;25686:47:0;;-1:-1:-1;;;25686:47:0;;:87;;-1:-1:-1;;;;;;;;;;23021:40:0;;;25737:36;22912:157;55686:242;55845:38;55857:7;55866:2;55870:6;55878:4;55845:11;:38::i;:::-;55894:16;;;;:12;:16;;;;;:26;;55914:6;;55894:16;:26;;55914:6;;55894:26;:::i;63891:339::-;64156:66;64183:8;64193:4;64199:2;64203:3;64208:7;64217:4;64156:26;:66::i;51588:813::-;-1:-1:-1;;;;;51828:13:0;;14285:20;14333:8;51824:570;;51864:79;;-1:-1:-1;;;51864:79:0;;-1:-1:-1;;;;;51864:43:0;;;;;:79;;51908:8;;51918:4;;51924:3;;51929:7;;51938:4;;51864:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51864:79:0;;;;;;;;-1:-1:-1;;51864:79:0;;;;;;;;;;;;:::i;:::-;;;51860:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;52256:6;52249:14;;-1:-1:-1;;;52249:14:0;;;;;;;;:::i;51860:523::-;;;52305:62;;-1:-1:-1;;;52305:62:0;;15548:2:1;52305:62:0;;;15530:21:1;15587:2;15567:18;;;15560:30;15626:34;15606:18;;;15599:62;-1:-1:-1;;;15677:18:1;;;15670:50;15737:19;;52305:62:0;15346:416:1;51860:523:0;-1:-1:-1;;;;;;52025:60:0;;-1:-1:-1;;;52025:60:0;52021:159;;52110:50;;-1:-1:-1;;;52110:50:0;;;;;;;:::i;56665:315::-;56821:39;56838:7;56847:3;56852:7;56821:16;:39::i;:::-;56876:9;56871:102;56895:3;:10;56891:1;:14;56871:102;;;56951:7;56959:1;56951:10;;;;;;;;:::i;:::-;;;;;;;56927:12;:20;56940:3;56944:1;56940:6;;;;;;;;:::i;:::-;;;;;;;56927:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;56907:3:0;;-1:-1:-1;56907:3:0;;:::i;:::-;;;56871:102;;52409:198;52529:16;;;52543:1;52529:16;;;;;;;;;52475;;52504:22;;52529:16;;;;;;;;;;;;-1:-1:-1;52529:16:0;52504:41;;52567:7;52556:5;52562:1;52556:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;52594:5;52409:198;-1:-1:-1;;52409:198:0:o;50836:744::-;-1:-1:-1;;;;;51051:13:0;;14285:20;14333:8;51047:526;;51087:72;;-1:-1:-1;;;51087:72:0;;-1:-1:-1;;;;;51087:38:0;;;;;:72;;51126:8;;51136:4;;51142:2;;51146:6;;51154:4;;51087:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51087:72:0;;;;;;;;-1:-1:-1;;51087:72:0;;;;;;;;;;;;:::i;:::-;;;51083:479;;;;:::i;:::-;-1:-1:-1;;;;;;51209:55:0;;-1:-1:-1;;;51209:55:0;51205:154;;51289:50;;-1:-1:-1;;;51289:50:0;;;;;;;:::i;56392:208::-;56523:32;56535:7;56544:2;56548:6;56523:11;:32::i;:::-;56566:16;;;;:12;:16;;;;;:26;;56586:6;;56566:16;:26;;56586:6;;56566:26;:::i;:::-;;;;-1:-1:-1;;;;;56392:208:0:o;45906:599::-;-1:-1:-1;;;;;46064:21:0;;46056:67;;;;-1:-1:-1;;;46056:67:0;;25325:2:1;46056:67:0;;;25307:21:1;25364:2;25344:18;;;25337:30;25403:34;25383:18;;;25376:62;-1:-1:-1;;;25454:18:1;;;25447:31;25495:19;;46056:67:0;25123:397:1;46056:67:0;8566:10;46180:107;8566:10;46136:16;46223:7;46232:21;46250:2;46232:17;:21::i;46180:107::-;46300:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;46300:22:0;;;;;;;;;:32;;46326:6;;46300:13;:32;;46326:6;;46300:32;:::i;:::-;;;;-1:-1:-1;;46348:57:0;;;26297:25:1;;;26353:2;26338:18;;26331:34;;;-1:-1:-1;;;;;46348:57:0;;;;46381:1;;46348:57;;;;;;26270:18:1;46348:57:0;;;;;;;46418:79;46449:8;46467:1;46471:7;46480:2;46484:6;46492:4;46418:30;:79::i;53237:392::-;12095:7;;;;53563:9;53555:66;;;;-1:-1:-1;;;53555:66:0;;19409:2:1;53555:66:0;;;19391:21:1;19448:2;19428:18;;;19421:30;19487:34;19467:18;;;19460:62;-1:-1:-1;;;19538:18:1;;;19531:42;19590:19;;53555:66:0;19207:408:1;48733:918:0;-1:-1:-1;;;;;48888:21:0;;48880:69;;;;-1:-1:-1;;;48880:69:0;;;;;;;:::i;:::-;48982:7;:14;48968:3;:10;:28;48960:81;;;;-1:-1:-1;;;48960:81:0;;;;;;;:::i;:::-;49054:16;8566:10;49054:31;;49098:69;49119:8;49129:7;49146:1;49150:3;49155:7;49098:69;;;;;;;;;;;;:20;:69::i;:::-;49185:9;49180:388;49204:3;:10;49200:1;:14;49180:388;;;49236:10;49249:3;49253:1;49249:6;;;;;;;;:::i;:::-;;;;;;;49236:19;;49270:14;49287:7;49295:1;49287:10;;;;;;;;:::i;:::-;;;;;;;;;;;;49314:22;49339:13;;;:9;:13;;;;;;-1:-1:-1;;;;;49339:22:0;;;;;;;;;;;;49287:10;;-1:-1:-1;49384:24:0;;;;49376:73;;;;-1:-1:-1;;;49376:73:0;;;;;;;:::i;:::-;49493:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;49493:22:0;;;;;;;;;;49518:23;;49493:48;;49216:3;;;;:::i;:::-;;;;49180:388;;;;49626:1;-1:-1:-1;;;;;49585:58:0;49609:7;-1:-1:-1;;;;;49585:58:0;49599:8;-1:-1:-1;;;;;49585:58:0;;49630:3;49635:7;49585:58;;;;;;;:::i;:::-;;;;;;;;48869:782;48733:918;;;:::o;47855:675::-;-1:-1:-1;;;;;47985:21:0;;47977:69;;;;-1:-1:-1;;;47977:69:0;;;;;;;:::i;:::-;8566:10;48103:105;8566:10;48134:7;48059:16;48155:21;48173:2;48155:17;:21::i;:::-;48178:25;48196:6;48178:17;:25::i;:::-;48103:105;;;;;;;;;;;;:20;:105::i;:::-;48221:22;48246:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;48246:22:0;;;;;;;;;;48287:24;;;;48279:73;;;;-1:-1:-1;;;48279:73:0;;;;;;;:::i;:::-;48388:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;48388:22:0;;;;;;;;;;;;48413:23;;;48388:48;;48465:57;;26297:25:1;;;26338:18;;;26331:34;;;48388:22:0;;48465:57;;;;;;26270:18:1;48465:57:0;;;;;;;47966:564;;47855:675;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:468:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;665:741;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:169;1221:2;1218:1;1215:9;1207:169;;;1278:23;1297:3;1278:23;:::i;:::-;1266:36;;1322:12;;;;1354;;;;1239:1;1232:9;1207:169;;;-1:-1:-1;1394:6:1;;665:741;-1:-1:-1;;;;;;;665:741:1:o;1411:735::-;1465:5;1518:3;1511:4;1503:6;1499:17;1495:27;1485:55;;1536:1;1533;1526:12;1485:55;1572:6;1559:20;1598:4;1621:43;1661:2;1621:43;:::i;:::-;1693:2;1687:9;1705:31;1733:2;1725:6;1705:31;:::i;:::-;1771:18;;;1805:15;;;;-1:-1:-1;1840:15:1;;;1890:1;1886:10;;;1874:23;;1870:32;;1867:41;-1:-1:-1;1864:61:1;;;1921:1;1918;1911:12;1864:61;1943:1;1953:163;1967:2;1964:1;1961:9;1953:163;;;2024:17;;2012:30;;2062:12;;;;2094;;;;1985:1;1978:9;1953:163;;2151:220;2193:5;2246:3;2239:4;2231:6;2227:17;2223:27;2213:55;;2264:1;2261;2254:12;2213:55;2286:79;2361:3;2352:6;2339:20;2332:4;2324:6;2320:17;2286:79;:::i;2376:186::-;2435:6;2488:2;2476:9;2467:7;2463:23;2459:32;2456:52;;;2504:1;2501;2494:12;2456:52;2527:29;2546:9;2527:29;:::i;2567:260::-;2635:6;2643;2696:2;2684:9;2675:7;2671:23;2667:32;2664:52;;;2712:1;2709;2702:12;2664:52;2735:29;2754:9;2735:29;:::i;:::-;2725:39;;2783:38;2817:2;2806:9;2802:18;2783:38;:::i;:::-;2773:48;;2567:260;;;;;:::o;2832:943::-;2986:6;2994;3002;3010;3018;3071:3;3059:9;3050:7;3046:23;3042:33;3039:53;;;3088:1;3085;3078:12;3039:53;3111:29;3130:9;3111:29;:::i;:::-;3101:39;;3159:38;3193:2;3182:9;3178:18;3159:38;:::i;:::-;3149:48;;3248:2;3237:9;3233:18;3220:32;-1:-1:-1;;;;;3312:2:1;3304:6;3301:14;3298:34;;;3328:1;3325;3318:12;3298:34;3351:61;3404:7;3395:6;3384:9;3380:22;3351:61;:::i;:::-;3341:71;;3465:2;3454:9;3450:18;3437:32;3421:48;;3494:2;3484:8;3481:16;3478:36;;;3510:1;3507;3500:12;3478:36;3533:63;3588:7;3577:8;3566:9;3562:24;3533:63;:::i;:::-;3523:73;;3649:3;3638:9;3634:19;3621:33;3605:49;;3679:2;3669:8;3666:16;3663:36;;;3695:1;3692;3685:12;3663:36;;3718:51;3761:7;3750:8;3739:9;3735:24;3718:51;:::i;:::-;3708:61;;;2832:943;;;;;;;;:::o;3780:606::-;3884:6;3892;3900;3908;3916;3969:3;3957:9;3948:7;3944:23;3940:33;3937:53;;;3986:1;3983;3976:12;3937:53;4009:29;4028:9;4009:29;:::i;:::-;3999:39;;4057:38;4091:2;4080:9;4076:18;4057:38;:::i;:::-;4047:48;;4142:2;4131:9;4127:18;4114:32;4104:42;;4193:2;4182:9;4178:18;4165:32;4155:42;;4248:3;4237:9;4233:19;4220:33;-1:-1:-1;;;;;4268:6:1;4265:30;4262:50;;;4308:1;4305;4298:12;4262:50;4331:49;4372:7;4363:6;4352:9;4348:22;4331:49;:::i;4391:669::-;4518:6;4526;4534;4587:2;4575:9;4566:7;4562:23;4558:32;4555:52;;;4603:1;4600;4593:12;4555:52;4626:29;4645:9;4626:29;:::i;:::-;4616:39;;4706:2;4695:9;4691:18;4678:32;-1:-1:-1;;;;;4770:2:1;4762:6;4759:14;4756:34;;;4786:1;4783;4776:12;4756:34;4809:61;4862:7;4853:6;4842:9;4838:22;4809:61;:::i;:::-;4799:71;;4923:2;4912:9;4908:18;4895:32;4879:48;;4952:2;4942:8;4939:16;4936:36;;;4968:1;4965;4958:12;4936:36;;4991:63;5046:7;5035:8;5024:9;5020:24;4991:63;:::i;:::-;4981:73;;;4391:669;;;;;:::o;5065:315::-;5130:6;5138;5191:2;5179:9;5170:7;5166:23;5162:32;5159:52;;;5207:1;5204;5197:12;5159:52;5230:29;5249:9;5230:29;:::i;:::-;5220:39;;5309:2;5298:9;5294:18;5281:32;5322:28;5344:5;5322:28;:::i;:::-;5369:5;5359:15;;;5065:315;;;;;:::o;5385:254::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;5629:2;5614:18;;;;5601:32;;-1:-1:-1;;;5385:254:1:o;5644:322::-;5721:6;5729;5737;5790:2;5778:9;5769:7;5765:23;5761:32;5758:52;;;5806:1;5803;5796:12;5758:52;5829:29;5848:9;5829:29;:::i;:::-;5819:39;5905:2;5890:18;;5877:32;;-1:-1:-1;5956:2:1;5941:18;;;5928:32;;5644:322;-1:-1:-1;;;5644:322:1:o;5971:348::-;6055:6;6108:2;6096:9;6087:7;6083:23;6079:32;6076:52;;;6124:1;6121;6114:12;6076:52;6164:9;6151:23;-1:-1:-1;;;;;6189:6:1;6186:30;6183:50;;;6229:1;6226;6219:12;6183:50;6252:61;6305:7;6296:6;6285:9;6281:22;6252:61;:::i;6324:595::-;6442:6;6450;6503:2;6491:9;6482:7;6478:23;6474:32;6471:52;;;6519:1;6516;6509:12;6471:52;6559:9;6546:23;-1:-1:-1;;;;;6629:2:1;6621:6;6618:14;6615:34;;;6645:1;6642;6635:12;6615:34;6668:61;6721:7;6712:6;6701:9;6697:22;6668:61;:::i;:::-;6658:71;;6782:2;6771:9;6767:18;6754:32;6738:48;;6811:2;6801:8;6798:16;6795:36;;;6827:1;6824;6817:12;6795:36;;6850:63;6905:7;6894:8;6883:9;6879:24;6850:63;:::i;:::-;6840:73;;;6324:595;;;;;:::o;6924:484::-;7026:6;7034;7042;7095:2;7083:9;7074:7;7070:23;7066:32;7063:52;;;7111:1;7108;7101:12;7063:52;7151:9;7138:23;-1:-1:-1;;;;;7176:6:1;7173:30;7170:50;;;7216:1;7213;7206:12;7170:50;7239:61;7292:7;7283:6;7272:9;7268:22;7239:61;:::i;:::-;7229:71;7347:2;7332:18;;7319:32;;-1:-1:-1;7398:2:1;7383:18;;;7370:32;;6924:484;-1:-1:-1;;;;6924:484:1:o;7413:241::-;7469:6;7522:2;7510:9;7501:7;7497:23;7493:32;7490:52;;;7538:1;7535;7528:12;7490:52;7577:9;7564:23;7596:28;7618:5;7596:28;:::i;7659:245::-;7726:6;7779:2;7767:9;7758:7;7754:23;7750:32;7747:52;;;7795:1;7792;7785:12;7747:52;7827:9;7821:16;7846:28;7868:5;7846:28;:::i;7909:180::-;7968:6;8021:2;8009:9;8000:7;7996:23;7992:32;7989:52;;;8037:1;8034;8027:12;7989:52;-1:-1:-1;8060:23:1;;7909:180;-1:-1:-1;7909:180:1:o;8094:254::-;8162:6;8170;8223:2;8211:9;8202:7;8198:23;8194:32;8191:52;;;8239:1;8236;8229:12;8191:52;8275:9;8262:23;8252:33;;8304:38;8338:2;8327:9;8323:18;8304:38;:::i;8353:245::-;8411:6;8464:2;8452:9;8443:7;8439:23;8435:32;8432:52;;;8480:1;8477;8470:12;8432:52;8519:9;8506:23;8538:30;8562:5;8538:30;:::i;8603:249::-;8672:6;8725:2;8713:9;8704:7;8700:23;8696:32;8693:52;;;8741:1;8738;8731:12;8693:52;8773:9;8767:16;8792:30;8816:5;8792:30;:::i;8857:450::-;8926:6;8979:2;8967:9;8958:7;8954:23;8950:32;8947:52;;;8995:1;8992;8985:12;8947:52;9035:9;9022:23;-1:-1:-1;;;;;9060:6:1;9057:30;9054:50;;;9100:1;9097;9090:12;9054:50;9123:22;;9176:4;9168:13;;9164:27;-1:-1:-1;9154:55:1;;9205:1;9202;9195:12;9154:55;9228:73;9293:7;9288:2;9275:16;9270:2;9266;9262:11;9228:73;:::i;9497:184::-;9567:6;9620:2;9608:9;9599:7;9595:23;9591:32;9588:52;;;9636:1;9633;9626:12;9588:52;-1:-1:-1;9659:16:1;;9497:184;-1:-1:-1;9497:184:1:o;9686:248::-;9754:6;9762;9815:2;9803:9;9794:7;9790:23;9786:32;9783:52;;;9831:1;9828;9821:12;9783:52;-1:-1:-1;;9854:23:1;;;9924:2;9909:18;;;9896:32;;-1:-1:-1;9686:248:1:o;9939:435::-;9992:3;10030:5;10024:12;10057:6;10052:3;10045:19;10083:4;10112:2;10107:3;10103:12;10096:19;;10149:2;10142:5;10138:14;10170:1;10180:169;10194:6;10191:1;10188:13;10180:169;;;10255:13;;10243:26;;10289:12;;;;10324:15;;;;10216:1;10209:9;10180:169;;;-1:-1:-1;10365:3:1;;9939:435;-1:-1:-1;;;;;9939:435:1:o;10379:257::-;10420:3;10458:5;10452:12;10485:6;10480:3;10473:19;10501:63;10557:6;10550:4;10545:3;10541:14;10534:4;10527:5;10523:16;10501:63;:::i;:::-;10618:2;10597:15;-1:-1:-1;;10593:29:1;10584:39;;;;10625:4;10580:50;;10379:257;-1:-1:-1;;10379:257:1:o;10641:470::-;10820:3;10858:6;10852:13;10874:53;10920:6;10915:3;10908:4;10900:6;10896:17;10874:53;:::i;:::-;10990:13;;10949:16;;;;11012:57;10990:13;10949:16;11046:4;11034:17;;11012:57;:::i;:::-;11085:20;;10641:470;-1:-1:-1;;;;10641:470:1:o;11116:786::-;11527:25;11522:3;11515:38;11497:3;11582:6;11576:13;11598:62;11653:6;11648:2;11643:3;11639:12;11632:4;11624:6;11620:17;11598:62;:::i;:::-;-1:-1:-1;;;11719:2:1;11679:16;;;11711:11;;;11704:40;11769:13;;11791:63;11769:13;11840:2;11832:11;;11825:4;11813:17;;11791:63;:::i;:::-;11874:17;11893:2;11870:26;;11116:786;-1:-1:-1;;;;11116:786:1:o;12115:826::-;-1:-1:-1;;;;;12512:15:1;;;12494:34;;12564:15;;12559:2;12544:18;;12537:43;12474:3;12611:2;12596:18;;12589:31;;;12437:4;;12643:57;;12680:19;;12672:6;12643:57;:::i;:::-;12748:9;12740:6;12736:22;12731:2;12720:9;12716:18;12709:50;12782:44;12819:6;12811;12782:44;:::i;:::-;12768:58;;12875:9;12867:6;12863:22;12857:3;12846:9;12842:19;12835:51;12903:32;12928:6;12920;12903:32;:::i;:::-;12895:40;12115:826;-1:-1:-1;;;;;;;;12115:826:1:o;12946:560::-;-1:-1:-1;;;;;13243:15:1;;;13225:34;;13295:15;;13290:2;13275:18;;13268:43;13342:2;13327:18;;13320:34;;;13385:2;13370:18;;13363:34;;;13205:3;13428;13413:19;;13406:32;;;13168:4;;13455:45;;13480:19;;13472:6;13455:45;:::i;:::-;13447:53;12946:560;-1:-1:-1;;;;;;;12946:560:1:o;13790:261::-;13969:2;13958:9;13951:21;13932:4;13989:56;14041:2;14030:9;14026:18;14018:6;13989:56;:::i;14056:465::-;14313:2;14302:9;14295:21;14276:4;14339:56;14391:2;14380:9;14376:18;14368:6;14339:56;:::i;:::-;14443:9;14435:6;14431:22;14426:2;14415:9;14411:18;14404:50;14471:44;14508:6;14500;14471:44;:::i;:::-;14463:52;14056:465;-1:-1:-1;;;;;14056:465:1:o;15122:219::-;15271:2;15260:9;15253:21;15234:4;15291:44;15331:2;15320:9;15316:18;15308:6;15291:44;:::i;16128:404::-;16330:2;16312:21;;;16369:2;16349:18;;;16342:30;16408:34;16403:2;16388:18;;16381:62;-1:-1:-1;;;16474:2:1;16459:18;;16452:38;16522:3;16507:19;;16128:404::o;18459:400::-;18661:2;18643:21;;;18700:2;18680:18;;;18673:30;18739:34;18734:2;18719:18;;18712:62;-1:-1:-1;;;18805:2:1;18790:18;;18783:34;18849:3;18834:19;;18459:400::o;19620:405::-;19822:2;19804:21;;;19861:2;19841:18;;;19834:30;19900:34;19895:2;19880:18;;19873:62;-1:-1:-1;;;19966:2:1;19951:18;;19944:39;20015:3;20000:19;;19620:405::o;21195:401::-;21397:2;21379:21;;;21436:2;21416:18;;;21409:30;21475:34;21470:2;21455:18;;21448:62;-1:-1:-1;;;21541:2:1;21526:18;;21519:35;21586:3;21571:19;;21195:401::o;22020:399::-;22222:2;22204:21;;;22261:2;22241:18;;;22234:30;22300:34;22295:2;22280:18;;22273:62;-1:-1:-1;;;22366:2:1;22351:18;;22344:33;22409:3;22394:19;;22020:399::o;22424:406::-;22626:2;22608:21;;;22665:2;22645:18;;;22638:30;22704:34;22699:2;22684:18;;22677:62;-1:-1:-1;;;22770:2:1;22755:18;;22748:40;22820:3;22805:19;;22424:406::o;24714:404::-;24916:2;24898:21;;;24955:2;24935:18;;;24928:30;24994:34;24989:2;24974:18;;24967:62;-1:-1:-1;;;25060:2:1;25045:18;;25038:38;25108:3;25093:19;;24714:404::o;26376:183::-;26436:4;-1:-1:-1;;;;;26461:6:1;26458:30;26455:56;;;26491:18;;:::i;:::-;-1:-1:-1;26536:1:1;26532:14;26548:4;26528:25;;26376:183::o;26564:128::-;26604:3;26635:1;26631:6;26628:1;26625:13;26622:39;;;26641:18;;:::i;:::-;-1:-1:-1;26677:9:1;;26564:128::o;26697:120::-;26737:1;26763;26753:35;;26768:18;;:::i;:::-;-1:-1:-1;26802:9:1;;26697:120::o;26822:168::-;26862:7;26928:1;26924;26920:6;26916:14;26913:1;26910:21;26905:1;26898:9;26891:17;26887:45;26884:71;;;26935:18;;:::i;:::-;-1:-1:-1;26975:9:1;;26822:168::o;26995:125::-;27035:4;27063:1;27060;27057:8;27054:34;;;27068:18;;:::i;:::-;-1:-1:-1;27105:9:1;;26995:125::o;27125:258::-;27197:1;27207:113;27221:6;27218:1;27215:13;27207:113;;;27297:11;;;27291:18;27278:11;;;27271:39;27243:2;27236:10;27207:113;;;27338:6;27335:1;27332:13;27329:48;;;-1:-1:-1;;27373:1:1;27355:16;;27348:27;27125:258::o;27388:136::-;27427:3;27455:5;27445:39;;27464:18;;:::i;:::-;-1:-1:-1;;;27500:18:1;;27388:136::o;27529:380::-;27608:1;27604:12;;;;27651;;;27672:61;;27726:4;27718:6;27714:17;27704:27;;27672:61;27779:2;27771:6;27768:14;27748:18;27745:38;27742:161;;;27825:10;27820:3;27816:20;27813:1;27806:31;27860:4;27857:1;27850:15;27888:4;27885:1;27878:15;27742:161;;27529:380;;;:::o;27914:249::-;28024:2;28005:13;;-1:-1:-1;;28001:27:1;27989:40;;-1:-1:-1;;;;;28044:34:1;;28080:22;;;28041:62;28038:88;;;28106:18;;:::i;:::-;28142:2;28135:22;-1:-1:-1;;27914:249:1:o;28168:135::-;28207:3;-1:-1:-1;;28228:17:1;;28225:43;;;28248:18;;:::i;:::-;-1:-1:-1;28295:1:1;28284:13;;28168:135::o;28308:112::-;28340:1;28366;28356:35;;28371:18;;:::i;:::-;-1:-1:-1;28405:9:1;;28308:112::o;28425:127::-;28486:10;28481:3;28477:20;28474:1;28467:31;28517:4;28514:1;28507:15;28541:4;28538:1;28531:15;28557:127;28618:10;28613:3;28609:20;28606:1;28599:31;28649:4;28646:1;28639:15;28673:4;28670:1;28663:15;28689:127;28750:10;28745:3;28741:20;28738:1;28731:31;28781:4;28778:1;28771:15;28805:4;28802:1;28795:15;28821:127;28882:10;28877:3;28873:20;28870:1;28863:31;28913:4;28910:1;28903:15;28937:4;28934:1;28927:15;28953:179;28988:3;29030:1;29012:16;29009:23;29006:120;;;29076:1;29073;29070;29055:23;-1:-1:-1;29113:1:1;29107:8;29102:3;29098:18;29006:120;28953:179;:::o;29137:671::-;29176:3;29218:4;29200:16;29197:26;29194:39;;;29137:671;:::o;29194:39::-;29260:2;29254:9;-1:-1:-1;;29325:16:1;29321:25;;29318:1;29254:9;29297:50;29376:4;29370:11;29400:16;-1:-1:-1;;;;;29506:2:1;29499:4;29491:6;29487:17;29484:25;29479:2;29471:6;29468:14;29465:45;29462:58;;;29513:5;;;;;29137:671;:::o;29462:58::-;29550:6;29544:4;29540:17;29529:28;;29586:3;29580:10;29613:2;29605:6;29602:14;29599:27;;;29619:5;;;;;;29137:671;:::o;29599:27::-;29703:2;29684:16;29678:4;29674:27;29670:36;29663:4;29654:6;29649:3;29645:16;29641:27;29638:69;29635:82;;;29710:5;;;;;;29137:671;:::o;29635:82::-;29726:57;29777:4;29768:6;29760;29756:19;29752:30;29746:4;29726:57;:::i;:::-;-1:-1:-1;29799:3:1;;29137:671;-1:-1:-1;;;;;29137:671:1:o;29813:118::-;29899:5;29892:13;29885:21;29878:5;29875:32;29865:60;;29921:1;29918;29911:12;29936:131;-1:-1:-1;;;;;;30010:32:1;;30000:43;;29990:71;;30057:1;30054;30047:12

Swarm Source

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