ETH Price: $3,532.39 (-1.55%)
Gas: 22 Gwei

Token

GEN.ART Collection (GENART)
 

Overview

Max Total Supply

8,234 GENART

Holders

2,813

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GENART
0xc69b462d6e06e9df218243c7f487aea68926705f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

As a member of GEN.ART you’ll be able to mint exclusive NFT (ERC-721) artwork by world-renowned artists. We’re limiting membership to 5,100. As a lifetime member, you will not only be part of a special group of collectors and artists but have an active say in the future of GEN.ART through governance tokens (ERC-20) that will be airdropped.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenArtCollection

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * GEN.ART Collection Contract
 */

interface IGenArt {
    function getTokensByOwner(address owner)
        external
        view
        returns (uint256[] memory);

    function ownerOf(uint256 tokenId) external view returns (address);

    function isGoldToken(uint256 _tokenId) external view returns (bool);
}

interface IGenArtInterface {
    function getMaxMintForMembership(uint256 _membershipId)
        external
        view
        returns (uint256);

    function getMaxMintForOwner(address owner) external view returns (uint256);

    function upgradeGenArtTokenContract(address _genArtTokenAddress) external;

    function setAllowGen(bool allow) external;

    function genAllowed() external view returns (bool);

    function isGoldToken(uint256 _membershipId) external view returns (bool);

    function transferFrom(
        address _from,
        address _to,
        uint256 _amount
    ) external;

    function balanceOf(address _owner) external view returns (uint256);

    function ownerOf(uint256 _membershipId) external view returns (address);
}

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */

contract GenArtCollection is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable,
    Ownable
{
    using Address for address;
    using Strings for uint256;
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    struct Collection {
        uint256 tier;
        uint256 invocations;
        uint256 maxInvocations;
        string script;
        uint256 price;
        uint256 priceGen;
        uint256 artistPercentage;
        address artist;
    }

    event Mint(address to, uint256 collectionId, uint256 tokenId, bytes32 hash);

    // IGenArtMintState _genArtMintState;
    mapping(uint256 => Collection) private _collectionsMap;

    // Mapping collectionId to membershipId and total mints
    mapping(uint256 => mapping(uint256 => uint256)) private _collectionsMintMap;

    mapping(uint256 => bytes32) private _tokenIdToHashMap;
    mapping(uint256 => uint256) private _tokenIdToCollectionIdMap;
    Counters.Counter private _collectionIdCounter;
    IGenArtInterface private _genArtInterface;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        string memory uri_,
        address genArtInterfaceAddress_
    ) {
        _name = name_;
        _symbol = symbol_;
        _baseURI = uri_;
        _genArtInterface = IGenArtInterface(genArtInterfaceAddress_);
        _collectionIdCounter.increment();
    }

    modifier onlyArtist(uint256 _collectionId) {
        require(
            _collectionsMap[_collectionId].artist == _msgSender(),
            "GenArtCollection: only artist can call this function"
        );
        _;
    }

    function withdraw(uint256 value) public onlyOwner {
        address _owner = owner();
        payable(_owner).transfer(value);
    }

    function createGenCollection(
        address _artist,
        uint256 _artistPercentage,
        uint256 _price,
        uint256 _priceGen,
        uint256 _maxInvocations,
        uint256 _tier,
        string memory _script
    ) public onlyOwner {
        uint256 _collectionId = _collectionIdCounter.current();

        _collectionsMap[_collectionId] = Collection({
            tier: _tier,
            invocations: 0,
            maxInvocations: _maxInvocations,
            script: _script,
            price: _price,
            priceGen: _priceGen,
            artistPercentage: _artistPercentage,
            artist: _artist
        });

        _collectionIdCounter.increment();
    }

    function checkMint(
        address _sender,
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _value,
        uint256 _amount,
        bool _isEthPayment
    ) internal virtual {
        require(
            _collectionsMap[_collectionId].tier != 0,
            "GenArtCollection: incorrect collection id"
        );
        require(
            _collectionsMap[_collectionId].invocations <
                _collectionsMap[_collectionId].maxInvocations,
            "GenArtCollection: max invocations was reached"
        );
        address _membershipOwner = _genArtInterface.ownerOf(_membershipId);
        require(
            _membershipOwner == _sender,
            "GenArtCollection: sender must be membership owner"
        );
        bool _isGoldMember = _genArtInterface.isGoldToken(_membershipId);
        uint256 _tier = _isGoldMember ? 2 : 1;
        require(
            _collectionsMap[_collectionId].tier == 3 ||
                _collectionsMap[_collectionId].tier == _tier,
            "GenArtCollection: no valid membership"
        );
        uint256 maxMint = getAllowedMintForMembership(
            _collectionId,
            _membershipId
        );
        require(
            maxMint >= _amount,
            "GenArtCollection: no mints avaliable"
        );
        if (_isEthPayment) {
            require(
                _collectionsMap[_collectionId].price.mul(_amount) <= _value,
                "GenArtCollection: incorrect amount sent"
            );
        } else {
            require(
                _collectionsMap[_collectionId].priceGen.mul(_amount) <= _value,
                "GenArtCollection: insufficient $GEN balance"
            );
        }
    }

    function mint(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId
    ) public payable {
        checkMint(msg.sender, _collectionId, _membershipId, msg.value, 1, true);
        updateMintState(_collectionId, _membershipId, 1);
        _mintOne(_to, _collectionId);
        splitFunds(msg.sender, _collectionId, 1, true);
    }

    function mintGen(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId
    ) public {
        bool _genAllowed = _genArtInterface.genAllowed();
        require(_genAllowed, "Mint with $GENART not allowed");
        uint256 balance = _genArtInterface.balanceOf(msg.sender);
        checkMint(msg.sender, _collectionId, _membershipId, balance, 1, false);
        updateMintState(_collectionId, _membershipId, 1);
        _mintOne(_to, _collectionId);
        splitFunds(msg.sender, _collectionId, 1, false);
    }

    function mintMany(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _amount
    ) public payable {
        checkMint(
            msg.sender,
            _collectionId,
            _membershipId,
            msg.value,
            _amount,
            true
        );
        updateMintState(_collectionId, _membershipId, _amount);
        _mintMany(_to, _collectionId, _amount);
        splitFunds(msg.sender, _collectionId, _amount, true);
    }

    function mintManyGen(
        address _to,
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _amount
    ) public {
        bool _genAllowed = _genArtInterface.genAllowed();
        require(_genAllowed, "Mint with $GENART not allowed");
        uint256 balance = _genArtInterface.balanceOf(msg.sender);
        checkMint(
            msg.sender,
            _collectionId,
            _membershipId,
            balance,
            _amount,
            false
        );
        updateMintState(_collectionId, _membershipId, _amount);
        _mintMany(_to, _collectionId, _amount);
        splitFunds(msg.sender, _collectionId, _amount, false);
    }

    function _mintMany(
        address _to,
        uint256 _collectionId,
        uint256 _amount
    ) internal virtual {
        for (uint256 i = 0; i < _amount; i++) {
            _mintOne(_to, _collectionId);
        }
    }

    function _mintOne(address _to, uint256 _collectionId) internal virtual {
        uint256 invocation = _collectionsMap[_collectionId].invocations + 1;
        uint256 _tokenId = _collectionId * 100000 + invocation;
        _collectionsMap[_collectionId].invocations = invocation;

        bytes32 hash = keccak256(
            abi.encodePacked(invocation, block.number, block.difficulty, _to)
        );
        _tokenIdToHashMap[_tokenId] = hash;
        _tokenIdToCollectionIdMap[_tokenId] = _collectionId;

        _safeMint(_to, _tokenId);

        emit Mint(_to, _collectionId, _tokenId, hash);
    }

    function splitFunds(
        address _sender,
        uint256 _collectionId,
        uint256 _amount,
        bool _isEthPayment
    ) internal virtual {
        uint256 value = _isEthPayment
            ? _collectionsMap[_collectionId].price.mul(_amount)
            : _collectionsMap[_collectionId].priceGen.mul(_amount);
        address _owner = owner();
        uint256 artistReward = (value *
            _collectionsMap[_collectionId].artistPercentage) / 100;
        if (_isEthPayment) {
            payable(_collectionsMap[_collectionId].artist).transfer(
                artistReward
            );
        } else {
            _genArtInterface.transferFrom(
                _sender,
                _owner,
                value - artistReward
            );
            _genArtInterface.transferFrom(
                _sender,
                _collectionsMap[_collectionId].artist,
                artistReward
            );
        }
    }

    function burn(uint256 _tokenId) public {
        _burn(_tokenId);
    }

    function getAllowedMintForMembership(
        uint256 _collectionId,
        uint256 _membershipId
    ) public view returns (uint256) {
        uint256 maxMint = _genArtInterface.getMaxMintForMembership(
            _membershipId
        );
        return maxMint - _collectionsMintMap[_collectionId][_membershipId];
    }

    function updateMintState(
        uint256 _collectionId,
        uint256 _membershipId,
        uint256 _amount
    ) internal virtual {
        _collectionsMintMap[_collectionId][_membershipId] =
            _collectionsMintMap[_collectionId][_membershipId] +
            _amount;
    }

    function updateArtistAddress(uint256 _collectionId, address _artist)
        public
        onlyArtist(_collectionId)
    {
        _collectionsMap[_collectionId].artist = _artist;
    }

    function updateMaxInvocations(
        uint256 _collectionId,
        uint256 _maxInvocations
    ) public onlyOwner {
        _collectionsMap[_collectionId].maxInvocations = _maxInvocations;
    }

    function updateScript(uint256 _collectionId, string memory _script)
        public
        onlyOwner
    {
        _collectionsMap[_collectionId].script = _script;
    }

    function upgradeGenArtInterfaceContract(address _genArtInterfaceAddress)
        public
        onlyOwner
    {
        _genArtInterface = IGenArtInterface(_genArtInterfaceAddress);
    }

    function updatePrice(
        uint256 _collectionId,
        uint256 _price,
        uint256 _priceGen
    ) public onlyOwner {
        _collectionsMap[_collectionId].price = _price;
        _collectionsMap[_collectionId].priceGen = _priceGen;
    }

    function getCollectionInfo(uint256 _collectionId)
        public
        view
        returns (
            uint256 invocations,
            uint256 maxInvocations,
            string memory script,
            uint256 price,
            uint256 priceGen,
            address artist,
            uint256 artistPercentage
        )
    {
        require(
            _collectionsMap[_collectionId].tier != 0,
            "GenArtCollection: invalid collection id"
        );

        return (
            _collectionsMap[_collectionId].invocations,
            _collectionsMap[_collectionId].maxInvocations,
            _collectionsMap[_collectionId].script,
            _collectionsMap[_collectionId].price,
            _collectionsMap[_collectionId].priceGen,
            _collectionsMap[_collectionId].artist,
            _collectionsMap[_collectionId].artistPercentage
        );
    }

    function getTokenInfo(uint256 _tokenId)
        public
        view
        returns (
            uint256,
            uint256,
            address,
            bytes32
        )
    {
        _exists(_tokenId);
        bytes32 hash = _tokenIdToHashMap[_tokenId];
        uint256 _collectionId = _tokenIdToCollectionIdMap[_tokenId];
        address owner = GenArtCollection.ownerOf(_tokenId);

        return (_tokenId, _collectionId, owner, hash);
    }

    function getTokensByOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

        string memory baseURI_ = baseURI();
        return
            bytes(baseURI_).length > 0
                ? string(abi.encodePacked(baseURI_, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function baseURI() internal view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseURI = baseURI_;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = GenArtCollection.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = GenArtCollection.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = GenArtCollection.ownerOf(tokenId);
        require(
            _msgSender() == owner,
            "GenArtCollection: only token owner can burn"
        );
        _beforeTokenTransfer(owner, address(0), tokenId);
        // Clear approvals
        _approve(address(0), tokenId);

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

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            GenArtCollection.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(GenArtCollection.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri_","type":"string"},{"internalType":"address","name":"genArtInterfaceAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"collectionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_artist","type":"address"},{"internalType":"uint256","name":"_artistPercentage","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_priceGen","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"},{"internalType":"uint256","name":"_tier","type":"uint256"},{"internalType":"string","name":"_script","type":"string"}],"name":"createGenCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"getAllowedMintForMembership","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"getCollectionInfo","outputs":[{"internalType":"uint256","name":"invocations","type":"uint256"},{"internalType":"uint256","name":"maxInvocations","type":"uint256"},{"internalType":"string","name":"script","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"priceGen","type":"uint256"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"uint256","name":"artistPercentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"mintGen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_membershipId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintManyGen","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"address","name":"_artist","type":"address"}],"name":"updateArtistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"}],"name":"updateMaxInvocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_priceGen","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"string","name":"_script","type":"string"}],"name":"updateScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genArtInterfaceAddress","type":"address"}],"name":"upgradeGenArtInterfaceContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620064313803806200643183398181016040528101906200003791906200032b565b620000576200004b6200010460201b60201c565b6200010c60201b60201c565b83600790805190602001906200006f929190620001e6565b50826008908051906020019062000088929190620001e6565b508160099080519060200190620000a1929190620001e6565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000fa6005620001d060201b6200228d1760201c565b50505050620005cc565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620001f490620004c3565b90600052602060002090601f01602090048101928262000218576000855562000264565b82601f106200023357805160ff191683800117855562000264565b8280016001018555821562000264579182015b828111156200026357825182559160200191906001019062000246565b5b50905062000273919062000277565b5090565b5b808211156200029257600081600090555060010162000278565b5090565b6000620002ad620002a78462000423565b620003fa565b905082815260208101848484011115620002cc57620002cb62000592565b5b620002d98482856200048d565b509392505050565b600081519050620002f281620005b2565b92915050565b600082601f83011262000310576200030f6200058d565b5b81516200032284826020860162000296565b91505092915050565b600080600080608085870312156200034857620003476200059c565b5b600085015167ffffffffffffffff81111562000369576200036862000597565b5b6200037787828801620002f8565b945050602085015167ffffffffffffffff8111156200039b576200039a62000597565b5b620003a987828801620002f8565b935050604085015167ffffffffffffffff811115620003cd57620003cc62000597565b5b620003db87828801620002f8565b9250506060620003ee87828801620002e1565b91505092959194509250565b60006200040662000419565b9050620004148282620004f9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200044157620004406200055e565b5b6200044c82620005a1565b9050602081019050919050565b600062000466826200046d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004ad57808201518184015260208101905062000490565b83811115620004bd576000848401525b50505050565b60006002820490506001821680620004dc57607f821691505b60208210811415620004f357620004f26200052f565b5b50919050565b6200050482620005a1565b810181811067ffffffffffffffff821117156200052657620005256200055e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005bd8162000459565b8114620005c957600080fd5b50565b615e5580620005dc6000396000f3fe6080604052600436106102045760003560e01c80635bdbdc3a11610118578063b155d57e116100a0578063c87b56dd1161006f578063c87b56dd1461077c578063d4e4d3dd146107b9578063e985e9c5146107fc578063f2fde38b14610839578063f48d11541461086257610204565b8063b155d57e146106c4578063b88d4fde146106ed578063c65be56214610716578063c86e7a191461075357610204565b80638c7a63ae116100e75780638c7a63ae146105dc5780638da5cb5b1461061c57806395d89b4114610647578063a1cf313814610672578063a22cb4651461069b57610204565b80635bdbdc3a1461051d5780636352211e1461054657806370a08231146105835780637e3ca9ea146105c057610204565b80632e1a7d4d1161019b57806342842e0e1161016a57806342842e0e1461043c57806342966c68146104655780634f6ccce71461048e57806355f804b3146104cb5780635845bfb1146104f457610204565b80632e1a7d4d146103705780632f745c59146103995780633efd9ae8146103d657806340398d67146103ff57610204565b80630f436129116101d75780630f436129146102d7578063156e29f61461030057806318160ddd1461031c57806323b872dd1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190614280565b61088b565b60405161023d9190614bac565b60405180910390f35b34801561025257600080fd5b5061025b6109d5565b6040516102689190614bc7565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190614323565b610a67565b6040516102a59190614aa7565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061409b565b610aec565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190614459565b610c04565b005b61031a600480360381019061031591906140db565b610cbb565b005b34801561032857600080fd5b50610331610cf2565b60405161033e9190614f89565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613f85565b610cff565b005b34801561037c57600080fd5b5061039760048036038101906103929190614323565b610d5f565b005b3480156103a557600080fd5b506103c060048036038101906103bb919061409b565b610e32565b6040516103cd9190614f89565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f8919061412e565b610ed7565b005b34801561040b57600080fd5b5061042660048036038101906104219190613eeb565b6110a4565b6040516104339190614b8a565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613f85565b611152565b005b34801561047157600080fd5b5061048c60048036038101906104879190614323565b611172565b005b34801561049a57600080fd5b506104b560048036038101906104b09190614323565b61117e565b6040516104c29190614f89565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906142da565b6111ef565b005b34801561050057600080fd5b5061051b600480360381019061051691906140db565b611285565b005b34801561052957600080fd5b50610544600480360381019061053f9190614195565b611453565b005b34801561055257600080fd5b5061056d60048036038101906105689190614323565b6115f8565b60405161057a9190614aa7565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613eeb565b6116aa565b6040516105b79190614f89565b60405180910390f35b6105da60048036038101906105d5919061412e565b611762565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614323565b61179a565b6040516106139493929190614fa4565b60405180910390f35b34801561062857600080fd5b506106316117fd565b60405161063e9190614aa7565b60405180910390f35b34801561065357600080fd5b5061065c611826565b6040516106699190614bc7565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190613eeb565b6118b8565b005b3480156106a757600080fd5b506106c260048036038101906106bd919061405b565b611978565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906143bd565b611af9565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613fd8565b611ba4565b005b34801561072257600080fd5b5061073d60048036038101906107389190614419565b611c06565b60405161074a9190614f89565b60405180910390f35b34801561075f57600080fd5b5061077a6004803603810190610775919061437d565b611cef565b005b34801561078857600080fd5b506107a3600480360381019061079e9190614323565b611df5565b6040516107b09190614bc7565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190614323565b611e9c565b6040516107f39796959493929190614fe9565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613f45565b612066565b6040516108309190614bac565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613eeb565b6120fa565b005b34801561086e57600080fd5b5061088960048036038101906108849190614419565b6121f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109be57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ce57506109cd826122a3565b5b9050919050565b6060600780546109e490615337565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1090615337565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b6000610a728261230d565b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890614e09565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af7826115f8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90614ec9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b87612379565b73ffffffffffffffffffffffffffffffffffffffff161480610bb65750610bb581610bb0612379565b612066565b5b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90614d69565b60405180910390fd5b610bff8383612381565b505050565b610c0c612379565b73ffffffffffffffffffffffffffffffffffffffff16610c2a6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614e29565b60405180910390fd5b816001600085815260200190815260200160002060040181905550806001600085815260200190815260200160002060050181905550505050565b610cca3383833460018061243a565b610cd68282600161289c565b610ce083836128f9565b610ced3383600180612a07565b505050565b6000601080549050905090565b610d10610d0a612379565b82612c9b565b610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690614f09565b60405180910390fd5b610d5a838383612d79565b505050565b610d67612379565b73ffffffffffffffffffffffffffffffffffffffff16610d856117fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290614e29565b60405180910390fd5b6000610de56117fd565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e2d573d6000803e3d6000fd5b505050565b6000610e3d836116aa565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590614c09565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636feaa9666040518163ffffffff1660e01b815260040160206040518083038186803b158015610f4157600080fd5b505afa158015610f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f799190614253565b905080610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290614f29565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110189190614aa7565b60206040518083038186803b15801561103057600080fd5b505afa158015611044573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110689190614350565b90506110793386868487600061243a565b61108485858561289c565b61108f868685612fd5565b61109c3386856000612a07565b505050505050565b606060006110b1836116aa565b905060008167ffffffffffffffff8111156110cf576110ce61552d565b5b6040519080825280602002602001820160405280156110fd5781602001602082028036833780820191505090505b50905060005b82811015611147576111158582610e32565b828281518110611128576111276154fe565b5b602002602001018181525050808061113f9061539a565b915050611103565b508092505050919050565b61116d83838360405180602001604052806000815250611ba4565b505050565b61117b81613003565b50565b6000611188610cf2565b82106111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090614f49565b60405180910390fd5b601082815481106111dd576111dc6154fe565b5b90600052602060002001549050919050565b6111f7612379565b73ffffffffffffffffffffffffffffffffffffffff166112156117fd565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290614e29565b60405180910390fd5b8060099080519060200190611281929190613cc0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636feaa9666040518163ffffffff1660e01b815260040160206040518083038186803b1580156112ef57600080fd5b505afa158015611303573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113279190614253565b905080611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090614f29565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113c69190614aa7565b60206040518083038186803b1580156113de57600080fd5b505afa1580156113f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114169190614350565b9050611428338585846001600061243a565b6114348484600161289c565b61143e85856128f9565b61144c338560016000612a07565b5050505050565b61145b612379565b73ffffffffffffffffffffffffffffffffffffffff166114796117fd565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690614e29565b60405180910390fd5b60006114db6005613189565b9050604051806101000160405280848152602001600081526020018581526020018381526020018781526020018681526020018881526020018973ffffffffffffffffffffffffffffffffffffffff1681525060016000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301908051906020019061157b929190613cc0565b506080820151816004015560a0820151816005015560c0820151816006015560e08201518160070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506115ee600561228d565b5050505050505050565b600080600a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890614da9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614d89565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117713384843485600161243a565b61177c83838361289c565b611787848483612fd5565b6117943384836001612a07565b50505050565b6000806000806117a98561230d565b5060006003600087815260200190815260200160002054905060006004600088815260200190815260200160002054905060006117e5886115f8565b90508782828596509650965096505050509193509193565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461183590615337565b80601f016020809104026020016040519081016040528092919081815260200182805461186190615337565b80156118ae5780601f10611883576101008083540402835291602001916118ae565b820191906000526020600020905b81548152906001019060200180831161189157829003601f168201915b5050505050905090565b6118c0612379565b73ffffffffffffffffffffffffffffffffffffffff166118de6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614e29565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611980612379565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590614cc9565b60405180910390fd5b80600d60006119fb612379565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa8612379565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aed9190614bac565b60405180910390a35050565b611b01612379565b73ffffffffffffffffffffffffffffffffffffffff16611b1f6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614e29565b60405180910390fd5b80600160008481526020019081526020016000206003019080519060200190611b9f929190613cc0565b505050565b611bb5611baf612379565b83612c9b565b611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90614f09565b60405180910390fd5b611c0084848484613197565b50505050565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f8c6c1c8846040518263ffffffff1660e01b8152600401611c649190614f89565b60206040518083038186803b158015611c7c57600080fd5b505afa158015611c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb49190614350565b90506002600085815260200190815260200160002060008481526020019081526020016000205481611ce69190615243565b91505092915050565b81611cf8612379565b73ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9290614e89565b60405180910390fd5b816001600085815260200190815260200160002060070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6060611e008261230d565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614e69565b60405180910390fd5b6000611e496131f3565b90506000815111611e695760405180602001604052806000815250611e94565b80611e7384613285565b604051602001611e84929190614a35565b6040516020818303038152906040525b915050919050565b60008060606000806000806000600160008a8152602001908152602001600020600001541415611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614c49565b60405180910390fd5b6001600089815260200190815260200160002060010154600160008a815260200190815260200160002060020154600160008b8152602001908152602001600020600301600160008c815260200190815260200160002060040154600160008d815260200190815260200160002060050154600160008e815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160008f815260200190815260200160002060060154848054611fcd90615337565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff990615337565b80156120465780601f1061201b57610100808354040283529160200191612046565b820191906000526020600020905b81548152906001019060200180831161202957829003601f168201915b505050505094509650965096509650965096509650919395979092949650565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612102612379565b73ffffffffffffffffffffffffffffffffffffffff166121206117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614e29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90614c69565b60405180910390fd5b6121ef816133e6565b50565b6121fa612379565b73ffffffffffffffffffffffffffffffffffffffff166122186117fd565b73ffffffffffffffffffffffffffffffffffffffff161461226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614e29565b60405180910390fd5b8060016000848152602001908152602001600020600201819055505050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b81600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123f4836115f8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600060016000878152602001908152602001600020600001541415612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b90614f69565b60405180910390fd5b6001600086815260200190815260200160002060020154600160008781526020019081526020016000206001015410612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990614ea9565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e866040518263ffffffff1660e01b815260040161255f9190614f89565b60206040518083038186803b15801561257757600080fd5b505afa15801561258b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125af9190613f18565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614d09565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f4ed4d15876040518263ffffffff1660e01b815260040161267c9190614f89565b60206040518083038186803b15801561269457600080fd5b505afa1580156126a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126cc9190614253565b90506000816126dc5760016126df565b60025b60ff1690506003600160008a815260200190815260200160002060000154148061271e575080600160008a815260200190815260200160002060000154145b61275d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275490614be9565b60405180910390fd5b60006127698989611c06565b9050858110156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590614ee9565b60405180910390fd5b841561282457866127de87600160008d8152602001908152602001600020600401546134aa90919063ffffffff16565b111561281f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281690614d49565b60405180910390fd5b612890565b8661284e87600160008d8152602001908152602001600020600501546134aa90919063ffffffff16565b111561288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690614de9565b60405180910390fd5b5b50505050505050505050565b80600260008581526020019081526020016000206000848152602001908152602001600020546128cc9190615162565b60026000858152602001908152602001600020600084815260200190815260200160002081905550505050565b600060018060008481526020019081526020016000206001015461291d9190615162565b9050600081620186a08461293191906151e9565b61293b9190615162565b90508160016000858152602001908152602001600020600101819055506000824344876040516020016129719493929190614a59565b6040516020818303038152906040528051906020012090508060036000848152602001908152602001600020819055508360046000848152602001908152602001600020819055506129c385836134c0565b7fcf6fbb9dcea7d07263ab4f5c3a92f53af33dffc421d9d121e1c74b307e68189d858584846040516129f89493929190614b45565b60405180910390a15050505050565b600081612a3c57612a378360016000878152602001908152602001600020600501546134aa90919063ffffffff16565b612a66565b612a658360016000878152602001908152602001600020600401546134aa90919063ffffffff16565b5b90506000612a726117fd565b905060006064600160008881526020019081526020016000206006015484612a9a91906151e9565b612aa491906151b8565b90508315612b2e576001600087815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612b28573d6000803e3d6000fd5b50612c92565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd88848487612b7a9190615243565b6040518463ffffffff1660e01b8152600401612b9893929190614ac2565b600060405180830381600087803b158015612bb257600080fd5b505af1158015612bc6573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd88600160008a815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401612c5f93929190614ac2565b600060405180830381600087803b158015612c7957600080fd5b505af1158015612c8d573d6000803e3d6000fd5b505050505b50505050505050565b6000612ca68261230d565b612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90614ce9565b60405180910390fd5b6000612cf0836115f8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d5f57508373ffffffffffffffffffffffffffffffffffffffff16612d4784610a67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d705750612d6f8185612066565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d99826115f8565b73ffffffffffffffffffffffffffffffffffffffff1614612def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de690614e49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5690614ca9565b60405180910390fd5b612e6a8383836134de565b612e75600082612381565b6001600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ec59190615243565b925050819055506001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1c9190615162565b9250508190555081600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b81811015612ffd57612fea84846128f9565b8080612ff59061539a565b915050612fd8565b50505050565b600061300e826115f8565b90508073ffffffffffffffffffffffffffffffffffffffff1661302f612379565b73ffffffffffffffffffffffffffffffffffffffff1614613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90614d29565b60405180910390fd5b613091816000846134de565b61309c600083612381565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ec9190615243565b92505081905550600a600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081600001549050919050565b6131a2848484612d79565b6131ae848484846135e7565b6131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e490614c29565b60405180910390fd5b50505050565b60606009805461320290615337565b80601f016020809104026020016040519081016040528092919081815260200182805461322e90615337565b801561327b5780601f106132505761010080835404028352916020019161327b565b820191906000526020600020905b81548152906001019060200180831161325e57829003601f168201915b5050505050905090565b606060008214156132cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133e1565b600082905060005b600082146132ff5780806132e89061539a565b915050600a826132f891906151b8565b91506132d5565b60008167ffffffffffffffff81111561331b5761331a61552d565b5b6040519080825280601f01601f19166020018201604052801561334d5781602001600182028036833780820191505090505b5090505b600085146133da576001826133669190615243565b9150600a856133759190615411565b60306133819190615162565b60f81b818381518110613397576133966154fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133d391906151b8565b9450613351565b8093505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836134b891906151e9565b905092915050565b6134da82826040518060200160405280600081525061377e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135215761351c816137d9565b613560565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461355f5761355e8382613822565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135a35761359e8161398f565b6135e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135e1576135e08282613a60565b5b5b505050565b60006136088473ffffffffffffffffffffffffffffffffffffffff16613adf565b15613771578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613631612379565b8786866040518563ffffffff1660e01b81526004016136539493929190614af9565b602060405180830381600087803b15801561366d57600080fd5b505af192505050801561369e57506040513d601f19601f8201168201806040525081019061369b91906142ad565b60015b613721573d80600081146136ce576040519150601f19603f3d011682016040523d82523d6000602084013e6136d3565b606091505b50600081511415613719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161371090614c29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613776565b600190505b949350505050565b6137888383613af2565b61379560008484846135e7565b6137d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cb90614c29565b60405180910390fd5b505050565b6010805490506011600083815260200190815260200160002081905550601081908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161382f846116aa565b6138399190615243565b90506000600f600084815260200190815260200160002054905081811461391e576000600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000208190555081600f600083815260200190815260200160002081905550505b600f600084815260200190815260200160002060009055600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016010805490506139a39190615243565b90506000601160008481526020019081526020016000205490506000601083815481106139d3576139d26154fe565b5b9060005260206000200154905080601083815481106139f5576139f46154fe565b5b906000526020600020018190555081601160008381526020019081526020016000208190555060116000858152602001908152602001600020600090556010805480613a4457613a436154cf565b5b6001900381819060005260206000200160009055905550505050565b6000613a6b836116aa565b905081600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000208190555080600f600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5990614dc9565b60405180910390fd5b613b6b8161230d565b15613bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba290614c89565b60405180910390fd5b613bb7600083836134de565b6001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c079190615162565b9250508190555081600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613ccc90615337565b90600052602060002090601f016020900481019282613cee5760008555613d35565b82601f10613d0757805160ff1916838001178555613d35565b82800160010185558215613d35579182015b82811115613d34578251825591602001919060010190613d19565b5b509050613d429190613d46565b5090565b5b80821115613d5f576000816000905550600101613d47565b5090565b6000613d76613d7184615084565b61505f565b905082815260208101848484011115613d9257613d91615561565b5b613d9d8482856152f5565b509392505050565b6000613db8613db3846150b5565b61505f565b905082815260208101848484011115613dd457613dd3615561565b5b613ddf8482856152f5565b509392505050565b600081359050613df681615dc3565b92915050565b600081519050613e0b81615dc3565b92915050565b600081359050613e2081615dda565b92915050565b600081519050613e3581615dda565b92915050565b600081359050613e4a81615df1565b92915050565b600081519050613e5f81615df1565b92915050565b600082601f830112613e7a57613e7961555c565b5b8135613e8a848260208601613d63565b91505092915050565b600082601f830112613ea857613ea761555c565b5b8135613eb8848260208601613da5565b91505092915050565b600081359050613ed081615e08565b92915050565b600081519050613ee581615e08565b92915050565b600060208284031215613f0157613f0061556b565b5b6000613f0f84828501613de7565b91505092915050565b600060208284031215613f2e57613f2d61556b565b5b6000613f3c84828501613dfc565b91505092915050565b60008060408385031215613f5c57613f5b61556b565b5b6000613f6a85828601613de7565b9250506020613f7b85828601613de7565b9150509250929050565b600080600060608486031215613f9e57613f9d61556b565b5b6000613fac86828701613de7565b9350506020613fbd86828701613de7565b9250506040613fce86828701613ec1565b9150509250925092565b60008060008060808587031215613ff257613ff161556b565b5b600061400087828801613de7565b945050602061401187828801613de7565b935050604061402287828801613ec1565b925050606085013567ffffffffffffffff81111561404357614042615566565b5b61404f87828801613e65565b91505092959194509250565b600080604083850312156140725761407161556b565b5b600061408085828601613de7565b925050602061409185828601613e11565b9150509250929050565b600080604083850312156140b2576140b161556b565b5b60006140c085828601613de7565b92505060206140d185828601613ec1565b9150509250929050565b6000806000606084860312156140f4576140f361556b565b5b600061410286828701613de7565b935050602061411386828701613ec1565b925050604061412486828701613ec1565b9150509250925092565b600080600080608085870312156141485761414761556b565b5b600061415687828801613de7565b945050602061416787828801613ec1565b935050604061417887828801613ec1565b925050606061418987828801613ec1565b91505092959194509250565b600080600080600080600060e0888a0312156141b4576141b361556b565b5b60006141c28a828b01613de7565b97505060206141d38a828b01613ec1565b96505060406141e48a828b01613ec1565b95505060606141f58a828b01613ec1565b94505060806142068a828b01613ec1565b93505060a06142178a828b01613ec1565b92505060c088013567ffffffffffffffff81111561423857614237615566565b5b6142448a828b01613e93565b91505092959891949750929550565b6000602082840312156142695761426861556b565b5b600061427784828501613e26565b91505092915050565b6000602082840312156142965761429561556b565b5b60006142a484828501613e3b565b91505092915050565b6000602082840312156142c3576142c261556b565b5b60006142d184828501613e50565b91505092915050565b6000602082840312156142f0576142ef61556b565b5b600082013567ffffffffffffffff81111561430e5761430d615566565b5b61431a84828501613e93565b91505092915050565b6000602082840312156143395761433861556b565b5b600061434784828501613ec1565b91505092915050565b6000602082840312156143665761436561556b565b5b600061437484828501613ed6565b91505092915050565b600080604083850312156143945761439361556b565b5b60006143a285828601613ec1565b92505060206143b385828601613de7565b9150509250929050565b600080604083850312156143d4576143d361556b565b5b60006143e285828601613ec1565b925050602083013567ffffffffffffffff81111561440357614402615566565b5b61440f85828601613e93565b9150509250929050565b600080604083850312156144305761442f61556b565b5b600061443e85828601613ec1565b925050602061444f85828601613ec1565b9150509250929050565b6000806000606084860312156144725761447161556b565b5b600061448086828701613ec1565b935050602061449186828701613ec1565b92505060406144a286828701613ec1565b9150509250925092565b60006144b88383614a00565b60208301905092915050565b6144cd81615277565b82525050565b6144e46144df82615277565b6153e3565b82525050565b60006144f5826150f6565b6144ff8185615124565b935061450a836150e6565b8060005b8381101561453b57815161452288826144ac565b975061452d83615117565b92505060018101905061450e565b5085935050505092915050565b61455181615289565b82525050565b61456081615295565b82525050565b600061457182615101565b61457b8185615135565b935061458b818560208601615304565b61459481615570565b840191505092915050565b60006145aa8261510c565b6145b48185615146565b93506145c4818560208601615304565b6145cd81615570565b840191505092915050565b60006145e38261510c565b6145ed8185615157565b93506145fd818560208601615304565b80840191505092915050565b6000614616602583615146565b91506146218261558e565b604082019050919050565b6000614639602b83615146565b9150614644826155dd565b604082019050919050565b600061465c603283615146565b91506146678261562c565b604082019050919050565b600061467f602783615146565b915061468a8261567b565b604082019050919050565b60006146a2602683615146565b91506146ad826156ca565b604082019050919050565b60006146c5601c83615146565b91506146d082615719565b602082019050919050565b60006146e8602483615146565b91506146f382615742565b604082019050919050565b600061470b601983615146565b915061471682615791565b602082019050919050565b600061472e602c83615146565b9150614739826157ba565b604082019050919050565b6000614751603183615146565b915061475c82615809565b604082019050919050565b6000614774602b83615146565b915061477f82615858565b604082019050919050565b6000614797602783615146565b91506147a2826158a7565b604082019050919050565b60006147ba603883615146565b91506147c5826158f6565b604082019050919050565b60006147dd602a83615146565b91506147e882615945565b604082019050919050565b6000614800602983615146565b915061480b82615994565b604082019050919050565b6000614823602083615146565b915061482e826159e3565b602082019050919050565b6000614846602b83615146565b915061485182615a0c565b604082019050919050565b6000614869602c83615146565b915061487482615a5b565b604082019050919050565b600061488c602083615146565b915061489782615aaa565b602082019050919050565b60006148af602983615146565b91506148ba82615ad3565b604082019050919050565b60006148d2602f83615146565b91506148dd82615b22565b604082019050919050565b60006148f5603483615146565b915061490082615b71565b604082019050919050565b6000614918602d83615146565b915061492382615bc0565b604082019050919050565b600061493b602183615146565b915061494682615c0f565b604082019050919050565b600061495e602483615146565b915061496982615c5e565b604082019050919050565b6000614981603183615146565b915061498c82615cad565b604082019050919050565b60006149a4601d83615146565b91506149af82615cfc565b602082019050919050565b60006149c7602c83615146565b91506149d282615d25565b604082019050919050565b60006149ea602983615146565b91506149f582615d74565b604082019050919050565b614a09816152eb565b82525050565b614a18816152eb565b82525050565b614a2f614a2a826152eb565b615407565b82525050565b6000614a4182856145d8565b9150614a4d82846145d8565b91508190509392505050565b6000614a658287614a1e565b602082019150614a758286614a1e565b602082019150614a858285614a1e565b602082019150614a9582846144d3565b60148201915081905095945050505050565b6000602082019050614abc60008301846144c4565b92915050565b6000606082019050614ad760008301866144c4565b614ae460208301856144c4565b614af16040830184614a0f565b949350505050565b6000608082019050614b0e60008301876144c4565b614b1b60208301866144c4565b614b286040830185614a0f565b8181036060830152614b3a8184614566565b905095945050505050565b6000608082019050614b5a60008301876144c4565b614b676020830186614a0f565b614b746040830185614a0f565b614b816060830184614557565b95945050505050565b60006020820190508181036000830152614ba481846144ea565b905092915050565b6000602082019050614bc16000830184614548565b92915050565b60006020820190508181036000830152614be1818461459f565b905092915050565b60006020820190508181036000830152614c0281614609565b9050919050565b60006020820190508181036000830152614c228161462c565b9050919050565b60006020820190508181036000830152614c428161464f565b9050919050565b60006020820190508181036000830152614c6281614672565b9050919050565b60006020820190508181036000830152614c8281614695565b9050919050565b60006020820190508181036000830152614ca2816146b8565b9050919050565b60006020820190508181036000830152614cc2816146db565b9050919050565b60006020820190508181036000830152614ce2816146fe565b9050919050565b60006020820190508181036000830152614d0281614721565b9050919050565b60006020820190508181036000830152614d2281614744565b9050919050565b60006020820190508181036000830152614d4281614767565b9050919050565b60006020820190508181036000830152614d628161478a565b9050919050565b60006020820190508181036000830152614d82816147ad565b9050919050565b60006020820190508181036000830152614da2816147d0565b9050919050565b60006020820190508181036000830152614dc2816147f3565b9050919050565b60006020820190508181036000830152614de281614816565b9050919050565b60006020820190508181036000830152614e0281614839565b9050919050565b60006020820190508181036000830152614e228161485c565b9050919050565b60006020820190508181036000830152614e428161487f565b9050919050565b60006020820190508181036000830152614e62816148a2565b9050919050565b60006020820190508181036000830152614e82816148c5565b9050919050565b60006020820190508181036000830152614ea2816148e8565b9050919050565b60006020820190508181036000830152614ec28161490b565b9050919050565b60006020820190508181036000830152614ee28161492e565b9050919050565b60006020820190508181036000830152614f0281614951565b9050919050565b60006020820190508181036000830152614f2281614974565b9050919050565b60006020820190508181036000830152614f4281614997565b9050919050565b60006020820190508181036000830152614f62816149ba565b9050919050565b60006020820190508181036000830152614f82816149dd565b9050919050565b6000602082019050614f9e6000830184614a0f565b92915050565b6000608082019050614fb96000830187614a0f565b614fc66020830186614a0f565b614fd360408301856144c4565b614fe06060830184614557565b95945050505050565b600060e082019050614ffe600083018a614a0f565b61500b6020830189614a0f565b818103604083015261501d818861459f565b905061502c6060830187614a0f565b6150396080830186614a0f565b61504660a08301856144c4565b61505360c0830184614a0f565b98975050505050505050565b600061506961507a565b90506150758282615369565b919050565b6000604051905090565b600067ffffffffffffffff82111561509f5761509e61552d565b5b6150a882615570565b9050602081019050919050565b600067ffffffffffffffff8211156150d0576150cf61552d565b5b6150d982615570565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061516d826152eb565b9150615178836152eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151ad576151ac615442565b5b828201905092915050565b60006151c3826152eb565b91506151ce836152eb565b9250826151de576151dd615471565b5b828204905092915050565b60006151f4826152eb565b91506151ff836152eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561523857615237615442565b5b828202905092915050565b600061524e826152eb565b9150615259836152eb565b92508282101561526c5761526b615442565b5b828203905092915050565b6000615282826152cb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615322578082015181840152602081019050615307565b83811115615331576000848401525b50505050565b6000600282049050600182168061534f57607f821691505b60208210811415615363576153626154a0565b5b50919050565b61537282615570565b810181811067ffffffffffffffff821117156153915761539061552d565b5b80604052505050565b60006153a5826152eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153d8576153d7615442565b5b600182019050919050565b60006153ee826153f5565b9050919050565b600061540082615581565b9050919050565b6000819050919050565b600061541c826152eb565b9150615427836152eb565b92508261543757615436615471565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f47656e417274436f6c6c656374696f6e3a206e6f2076616c6964206d656d626560008201527f7273686970000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a20696e76616c696420636f6c6c656360008201527f74696f6e20696400000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a2073656e646572206d75737420626560008201527f206d656d62657273686970206f776e6572000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206f6e6c7920746f6b656e206f776e60008201527f65722063616e206275726e000000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a20696e636f727265637420616d6f7560008201527f6e742073656e7400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f47656e417274436f6c6c656374696f6e3a20696e73756666696369656e74202460008201527f47454e2062616c616e6365000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206f6e6c792061727469737420636160008201527f6e2063616c6c20746869732066756e6374696f6e000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206d617820696e766f636174696f6e60008201527f7320776173207265616368656400000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206e6f206d696e7473206176616c6960008201527f61626c6500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742077697468202447454e415254206e6f7420616c6c6f776564000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a20696e636f727265637420636f6c6c60008201527f656374696f6e2069640000000000000000000000000000000000000000000000602082015250565b615dcc81615277565b8114615dd757600080fd5b50565b615de381615289565b8114615dee57600080fd5b50565b615dfa8161529f565b8114615e0557600080fd5b50565b615e11816152eb565b8114615e1c57600080fd5b5056fea2646970667358221220c484d9e6c1ddef593c360c41d665db1ba9c060ae46b4082fb6ed1cb8cdf7cd3364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000097275a3a1237b1b63ce089daffffc7ddf6a5c262000000000000000000000000000000000000000000000000000000000000001247454e2e41525420436f6c6c656374696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000647454e4152540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6170692e67656e2e6172742f7075626c69632f617474726962757465732f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635bdbdc3a11610118578063b155d57e116100a0578063c87b56dd1161006f578063c87b56dd1461077c578063d4e4d3dd146107b9578063e985e9c5146107fc578063f2fde38b14610839578063f48d11541461086257610204565b8063b155d57e146106c4578063b88d4fde146106ed578063c65be56214610716578063c86e7a191461075357610204565b80638c7a63ae116100e75780638c7a63ae146105dc5780638da5cb5b1461061c57806395d89b4114610647578063a1cf313814610672578063a22cb4651461069b57610204565b80635bdbdc3a1461051d5780636352211e1461054657806370a08231146105835780637e3ca9ea146105c057610204565b80632e1a7d4d1161019b57806342842e0e1161016a57806342842e0e1461043c57806342966c68146104655780634f6ccce71461048e57806355f804b3146104cb5780635845bfb1146104f457610204565b80632e1a7d4d146103705780632f745c59146103995780633efd9ae8146103d657806340398d67146103ff57610204565b80630f436129116101d75780630f436129146102d7578063156e29f61461030057806318160ddd1461031c57806323b872dd1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190614280565b61088b565b60405161023d9190614bac565b60405180910390f35b34801561025257600080fd5b5061025b6109d5565b6040516102689190614bc7565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190614323565b610a67565b6040516102a59190614aa7565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061409b565b610aec565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190614459565b610c04565b005b61031a600480360381019061031591906140db565b610cbb565b005b34801561032857600080fd5b50610331610cf2565b60405161033e9190614f89565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613f85565b610cff565b005b34801561037c57600080fd5b5061039760048036038101906103929190614323565b610d5f565b005b3480156103a557600080fd5b506103c060048036038101906103bb919061409b565b610e32565b6040516103cd9190614f89565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f8919061412e565b610ed7565b005b34801561040b57600080fd5b5061042660048036038101906104219190613eeb565b6110a4565b6040516104339190614b8a565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613f85565b611152565b005b34801561047157600080fd5b5061048c60048036038101906104879190614323565b611172565b005b34801561049a57600080fd5b506104b560048036038101906104b09190614323565b61117e565b6040516104c29190614f89565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906142da565b6111ef565b005b34801561050057600080fd5b5061051b600480360381019061051691906140db565b611285565b005b34801561052957600080fd5b50610544600480360381019061053f9190614195565b611453565b005b34801561055257600080fd5b5061056d60048036038101906105689190614323565b6115f8565b60405161057a9190614aa7565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613eeb565b6116aa565b6040516105b79190614f89565b60405180910390f35b6105da60048036038101906105d5919061412e565b611762565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614323565b61179a565b6040516106139493929190614fa4565b60405180910390f35b34801561062857600080fd5b506106316117fd565b60405161063e9190614aa7565b60405180910390f35b34801561065357600080fd5b5061065c611826565b6040516106699190614bc7565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190613eeb565b6118b8565b005b3480156106a757600080fd5b506106c260048036038101906106bd919061405b565b611978565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906143bd565b611af9565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613fd8565b611ba4565b005b34801561072257600080fd5b5061073d60048036038101906107389190614419565b611c06565b60405161074a9190614f89565b60405180910390f35b34801561075f57600080fd5b5061077a6004803603810190610775919061437d565b611cef565b005b34801561078857600080fd5b506107a3600480360381019061079e9190614323565b611df5565b6040516107b09190614bc7565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190614323565b611e9c565b6040516107f39796959493929190614fe9565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613f45565b612066565b6040516108309190614bac565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613eeb565b6120fa565b005b34801561086e57600080fd5b5061088960048036038101906108849190614419565b6121f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109be57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ce57506109cd826122a3565b5b9050919050565b6060600780546109e490615337565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1090615337565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b6000610a728261230d565b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890614e09565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af7826115f8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90614ec9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b87612379565b73ffffffffffffffffffffffffffffffffffffffff161480610bb65750610bb581610bb0612379565b612066565b5b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90614d69565b60405180910390fd5b610bff8383612381565b505050565b610c0c612379565b73ffffffffffffffffffffffffffffffffffffffff16610c2a6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614e29565b60405180910390fd5b816001600085815260200190815260200160002060040181905550806001600085815260200190815260200160002060050181905550505050565b610cca3383833460018061243a565b610cd68282600161289c565b610ce083836128f9565b610ced3383600180612a07565b505050565b6000601080549050905090565b610d10610d0a612379565b82612c9b565b610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690614f09565b60405180910390fd5b610d5a838383612d79565b505050565b610d67612379565b73ffffffffffffffffffffffffffffffffffffffff16610d856117fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290614e29565b60405180910390fd5b6000610de56117fd565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e2d573d6000803e3d6000fd5b505050565b6000610e3d836116aa565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590614c09565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636feaa9666040518163ffffffff1660e01b815260040160206040518083038186803b158015610f4157600080fd5b505afa158015610f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f799190614253565b905080610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290614f29565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110189190614aa7565b60206040518083038186803b15801561103057600080fd5b505afa158015611044573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110689190614350565b90506110793386868487600061243a565b61108485858561289c565b61108f868685612fd5565b61109c3386856000612a07565b505050505050565b606060006110b1836116aa565b905060008167ffffffffffffffff8111156110cf576110ce61552d565b5b6040519080825280602002602001820160405280156110fd5781602001602082028036833780820191505090505b50905060005b82811015611147576111158582610e32565b828281518110611128576111276154fe565b5b602002602001018181525050808061113f9061539a565b915050611103565b508092505050919050565b61116d83838360405180602001604052806000815250611ba4565b505050565b61117b81613003565b50565b6000611188610cf2565b82106111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090614f49565b60405180910390fd5b601082815481106111dd576111dc6154fe565b5b90600052602060002001549050919050565b6111f7612379565b73ffffffffffffffffffffffffffffffffffffffff166112156117fd565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290614e29565b60405180910390fd5b8060099080519060200190611281929190613cc0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636feaa9666040518163ffffffff1660e01b815260040160206040518083038186803b1580156112ef57600080fd5b505afa158015611303573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113279190614253565b905080611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090614f29565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113c69190614aa7565b60206040518083038186803b1580156113de57600080fd5b505afa1580156113f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114169190614350565b9050611428338585846001600061243a565b6114348484600161289c565b61143e85856128f9565b61144c338560016000612a07565b5050505050565b61145b612379565b73ffffffffffffffffffffffffffffffffffffffff166114796117fd565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690614e29565b60405180910390fd5b60006114db6005613189565b9050604051806101000160405280848152602001600081526020018581526020018381526020018781526020018681526020018881526020018973ffffffffffffffffffffffffffffffffffffffff1681525060016000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301908051906020019061157b929190613cc0565b506080820151816004015560a0820151816005015560c0820151816006015560e08201518160070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506115ee600561228d565b5050505050505050565b600080600a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890614da9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614d89565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117713384843485600161243a565b61177c83838361289c565b611787848483612fd5565b6117943384836001612a07565b50505050565b6000806000806117a98561230d565b5060006003600087815260200190815260200160002054905060006004600088815260200190815260200160002054905060006117e5886115f8565b90508782828596509650965096505050509193509193565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461183590615337565b80601f016020809104026020016040519081016040528092919081815260200182805461186190615337565b80156118ae5780601f10611883576101008083540402835291602001916118ae565b820191906000526020600020905b81548152906001019060200180831161189157829003601f168201915b5050505050905090565b6118c0612379565b73ffffffffffffffffffffffffffffffffffffffff166118de6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614e29565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611980612379565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590614cc9565b60405180910390fd5b80600d60006119fb612379565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa8612379565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aed9190614bac565b60405180910390a35050565b611b01612379565b73ffffffffffffffffffffffffffffffffffffffff16611b1f6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614e29565b60405180910390fd5b80600160008481526020019081526020016000206003019080519060200190611b9f929190613cc0565b505050565b611bb5611baf612379565b83612c9b565b611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90614f09565b60405180910390fd5b611c0084848484613197565b50505050565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f8c6c1c8846040518263ffffffff1660e01b8152600401611c649190614f89565b60206040518083038186803b158015611c7c57600080fd5b505afa158015611c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb49190614350565b90506002600085815260200190815260200160002060008481526020019081526020016000205481611ce69190615243565b91505092915050565b81611cf8612379565b73ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9290614e89565b60405180910390fd5b816001600085815260200190815260200160002060070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6060611e008261230d565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614e69565b60405180910390fd5b6000611e496131f3565b90506000815111611e695760405180602001604052806000815250611e94565b80611e7384613285565b604051602001611e84929190614a35565b6040516020818303038152906040525b915050919050565b60008060606000806000806000600160008a8152602001908152602001600020600001541415611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614c49565b60405180910390fd5b6001600089815260200190815260200160002060010154600160008a815260200190815260200160002060020154600160008b8152602001908152602001600020600301600160008c815260200190815260200160002060040154600160008d815260200190815260200160002060050154600160008e815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160008f815260200190815260200160002060060154848054611fcd90615337565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff990615337565b80156120465780601f1061201b57610100808354040283529160200191612046565b820191906000526020600020905b81548152906001019060200180831161202957829003601f168201915b505050505094509650965096509650965096509650919395979092949650565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612102612379565b73ffffffffffffffffffffffffffffffffffffffff166121206117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614e29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90614c69565b60405180910390fd5b6121ef816133e6565b50565b6121fa612379565b73ffffffffffffffffffffffffffffffffffffffff166122186117fd565b73ffffffffffffffffffffffffffffffffffffffff161461226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614e29565b60405180910390fd5b8060016000848152602001908152602001600020600201819055505050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b81600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123f4836115f8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600060016000878152602001908152602001600020600001541415612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b90614f69565b60405180910390fd5b6001600086815260200190815260200160002060020154600160008781526020019081526020016000206001015410612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990614ea9565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e866040518263ffffffff1660e01b815260040161255f9190614f89565b60206040518083038186803b15801561257757600080fd5b505afa15801561258b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125af9190613f18565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614d09565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f4ed4d15876040518263ffffffff1660e01b815260040161267c9190614f89565b60206040518083038186803b15801561269457600080fd5b505afa1580156126a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126cc9190614253565b90506000816126dc5760016126df565b60025b60ff1690506003600160008a815260200190815260200160002060000154148061271e575080600160008a815260200190815260200160002060000154145b61275d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275490614be9565b60405180910390fd5b60006127698989611c06565b9050858110156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590614ee9565b60405180910390fd5b841561282457866127de87600160008d8152602001908152602001600020600401546134aa90919063ffffffff16565b111561281f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281690614d49565b60405180910390fd5b612890565b8661284e87600160008d8152602001908152602001600020600501546134aa90919063ffffffff16565b111561288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690614de9565b60405180910390fd5b5b50505050505050505050565b80600260008581526020019081526020016000206000848152602001908152602001600020546128cc9190615162565b60026000858152602001908152602001600020600084815260200190815260200160002081905550505050565b600060018060008481526020019081526020016000206001015461291d9190615162565b9050600081620186a08461293191906151e9565b61293b9190615162565b90508160016000858152602001908152602001600020600101819055506000824344876040516020016129719493929190614a59565b6040516020818303038152906040528051906020012090508060036000848152602001908152602001600020819055508360046000848152602001908152602001600020819055506129c385836134c0565b7fcf6fbb9dcea7d07263ab4f5c3a92f53af33dffc421d9d121e1c74b307e68189d858584846040516129f89493929190614b45565b60405180910390a15050505050565b600081612a3c57612a378360016000878152602001908152602001600020600501546134aa90919063ffffffff16565b612a66565b612a658360016000878152602001908152602001600020600401546134aa90919063ffffffff16565b5b90506000612a726117fd565b905060006064600160008881526020019081526020016000206006015484612a9a91906151e9565b612aa491906151b8565b90508315612b2e576001600087815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612b28573d6000803e3d6000fd5b50612c92565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd88848487612b7a9190615243565b6040518463ffffffff1660e01b8152600401612b9893929190614ac2565b600060405180830381600087803b158015612bb257600080fd5b505af1158015612bc6573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd88600160008a815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401612c5f93929190614ac2565b600060405180830381600087803b158015612c7957600080fd5b505af1158015612c8d573d6000803e3d6000fd5b505050505b50505050505050565b6000612ca68261230d565b612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90614ce9565b60405180910390fd5b6000612cf0836115f8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d5f57508373ffffffffffffffffffffffffffffffffffffffff16612d4784610a67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d705750612d6f8185612066565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d99826115f8565b73ffffffffffffffffffffffffffffffffffffffff1614612def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de690614e49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5690614ca9565b60405180910390fd5b612e6a8383836134de565b612e75600082612381565b6001600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ec59190615243565b925050819055506001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1c9190615162565b9250508190555081600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b81811015612ffd57612fea84846128f9565b8080612ff59061539a565b915050612fd8565b50505050565b600061300e826115f8565b90508073ffffffffffffffffffffffffffffffffffffffff1661302f612379565b73ffffffffffffffffffffffffffffffffffffffff1614613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90614d29565b60405180910390fd5b613091816000846134de565b61309c600083612381565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ec9190615243565b92505081905550600a600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081600001549050919050565b6131a2848484612d79565b6131ae848484846135e7565b6131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e490614c29565b60405180910390fd5b50505050565b60606009805461320290615337565b80601f016020809104026020016040519081016040528092919081815260200182805461322e90615337565b801561327b5780601f106132505761010080835404028352916020019161327b565b820191906000526020600020905b81548152906001019060200180831161325e57829003601f168201915b5050505050905090565b606060008214156132cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133e1565b600082905060005b600082146132ff5780806132e89061539a565b915050600a826132f891906151b8565b91506132d5565b60008167ffffffffffffffff81111561331b5761331a61552d565b5b6040519080825280601f01601f19166020018201604052801561334d5781602001600182028036833780820191505090505b5090505b600085146133da576001826133669190615243565b9150600a856133759190615411565b60306133819190615162565b60f81b818381518110613397576133966154fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133d391906151b8565b9450613351565b8093505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836134b891906151e9565b905092915050565b6134da82826040518060200160405280600081525061377e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135215761351c816137d9565b613560565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461355f5761355e8382613822565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135a35761359e8161398f565b6135e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135e1576135e08282613a60565b5b5b505050565b60006136088473ffffffffffffffffffffffffffffffffffffffff16613adf565b15613771578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613631612379565b8786866040518563ffffffff1660e01b81526004016136539493929190614af9565b602060405180830381600087803b15801561366d57600080fd5b505af192505050801561369e57506040513d601f19601f8201168201806040525081019061369b91906142ad565b60015b613721573d80600081146136ce576040519150601f19603f3d011682016040523d82523d6000602084013e6136d3565b606091505b50600081511415613719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161371090614c29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613776565b600190505b949350505050565b6137888383613af2565b61379560008484846135e7565b6137d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cb90614c29565b60405180910390fd5b505050565b6010805490506011600083815260200190815260200160002081905550601081908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161382f846116aa565b6138399190615243565b90506000600f600084815260200190815260200160002054905081811461391e576000600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000208190555081600f600083815260200190815260200160002081905550505b600f600084815260200190815260200160002060009055600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016010805490506139a39190615243565b90506000601160008481526020019081526020016000205490506000601083815481106139d3576139d26154fe565b5b9060005260206000200154905080601083815481106139f5576139f46154fe565b5b906000526020600020018190555081601160008381526020019081526020016000208190555060116000858152602001908152602001600020600090556010805480613a4457613a436154cf565b5b6001900381819060005260206000200160009055905550505050565b6000613a6b836116aa565b905081600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000208190555080600f600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5990614dc9565b60405180910390fd5b613b6b8161230d565b15613bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba290614c89565b60405180910390fd5b613bb7600083836134de565b6001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c079190615162565b9250508190555081600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613ccc90615337565b90600052602060002090601f016020900481019282613cee5760008555613d35565b82601f10613d0757805160ff1916838001178555613d35565b82800160010185558215613d35579182015b82811115613d34578251825591602001919060010190613d19565b5b509050613d429190613d46565b5090565b5b80821115613d5f576000816000905550600101613d47565b5090565b6000613d76613d7184615084565b61505f565b905082815260208101848484011115613d9257613d91615561565b5b613d9d8482856152f5565b509392505050565b6000613db8613db3846150b5565b61505f565b905082815260208101848484011115613dd457613dd3615561565b5b613ddf8482856152f5565b509392505050565b600081359050613df681615dc3565b92915050565b600081519050613e0b81615dc3565b92915050565b600081359050613e2081615dda565b92915050565b600081519050613e3581615dda565b92915050565b600081359050613e4a81615df1565b92915050565b600081519050613e5f81615df1565b92915050565b600082601f830112613e7a57613e7961555c565b5b8135613e8a848260208601613d63565b91505092915050565b600082601f830112613ea857613ea761555c565b5b8135613eb8848260208601613da5565b91505092915050565b600081359050613ed081615e08565b92915050565b600081519050613ee581615e08565b92915050565b600060208284031215613f0157613f0061556b565b5b6000613f0f84828501613de7565b91505092915050565b600060208284031215613f2e57613f2d61556b565b5b6000613f3c84828501613dfc565b91505092915050565b60008060408385031215613f5c57613f5b61556b565b5b6000613f6a85828601613de7565b9250506020613f7b85828601613de7565b9150509250929050565b600080600060608486031215613f9e57613f9d61556b565b5b6000613fac86828701613de7565b9350506020613fbd86828701613de7565b9250506040613fce86828701613ec1565b9150509250925092565b60008060008060808587031215613ff257613ff161556b565b5b600061400087828801613de7565b945050602061401187828801613de7565b935050604061402287828801613ec1565b925050606085013567ffffffffffffffff81111561404357614042615566565b5b61404f87828801613e65565b91505092959194509250565b600080604083850312156140725761407161556b565b5b600061408085828601613de7565b925050602061409185828601613e11565b9150509250929050565b600080604083850312156140b2576140b161556b565b5b60006140c085828601613de7565b92505060206140d185828601613ec1565b9150509250929050565b6000806000606084860312156140f4576140f361556b565b5b600061410286828701613de7565b935050602061411386828701613ec1565b925050604061412486828701613ec1565b9150509250925092565b600080600080608085870312156141485761414761556b565b5b600061415687828801613de7565b945050602061416787828801613ec1565b935050604061417887828801613ec1565b925050606061418987828801613ec1565b91505092959194509250565b600080600080600080600060e0888a0312156141b4576141b361556b565b5b60006141c28a828b01613de7565b97505060206141d38a828b01613ec1565b96505060406141e48a828b01613ec1565b95505060606141f58a828b01613ec1565b94505060806142068a828b01613ec1565b93505060a06142178a828b01613ec1565b92505060c088013567ffffffffffffffff81111561423857614237615566565b5b6142448a828b01613e93565b91505092959891949750929550565b6000602082840312156142695761426861556b565b5b600061427784828501613e26565b91505092915050565b6000602082840312156142965761429561556b565b5b60006142a484828501613e3b565b91505092915050565b6000602082840312156142c3576142c261556b565b5b60006142d184828501613e50565b91505092915050565b6000602082840312156142f0576142ef61556b565b5b600082013567ffffffffffffffff81111561430e5761430d615566565b5b61431a84828501613e93565b91505092915050565b6000602082840312156143395761433861556b565b5b600061434784828501613ec1565b91505092915050565b6000602082840312156143665761436561556b565b5b600061437484828501613ed6565b91505092915050565b600080604083850312156143945761439361556b565b5b60006143a285828601613ec1565b92505060206143b385828601613de7565b9150509250929050565b600080604083850312156143d4576143d361556b565b5b60006143e285828601613ec1565b925050602083013567ffffffffffffffff81111561440357614402615566565b5b61440f85828601613e93565b9150509250929050565b600080604083850312156144305761442f61556b565b5b600061443e85828601613ec1565b925050602061444f85828601613ec1565b9150509250929050565b6000806000606084860312156144725761447161556b565b5b600061448086828701613ec1565b935050602061449186828701613ec1565b92505060406144a286828701613ec1565b9150509250925092565b60006144b88383614a00565b60208301905092915050565b6144cd81615277565b82525050565b6144e46144df82615277565b6153e3565b82525050565b60006144f5826150f6565b6144ff8185615124565b935061450a836150e6565b8060005b8381101561453b57815161452288826144ac565b975061452d83615117565b92505060018101905061450e565b5085935050505092915050565b61455181615289565b82525050565b61456081615295565b82525050565b600061457182615101565b61457b8185615135565b935061458b818560208601615304565b61459481615570565b840191505092915050565b60006145aa8261510c565b6145b48185615146565b93506145c4818560208601615304565b6145cd81615570565b840191505092915050565b60006145e38261510c565b6145ed8185615157565b93506145fd818560208601615304565b80840191505092915050565b6000614616602583615146565b91506146218261558e565b604082019050919050565b6000614639602b83615146565b9150614644826155dd565b604082019050919050565b600061465c603283615146565b91506146678261562c565b604082019050919050565b600061467f602783615146565b915061468a8261567b565b604082019050919050565b60006146a2602683615146565b91506146ad826156ca565b604082019050919050565b60006146c5601c83615146565b91506146d082615719565b602082019050919050565b60006146e8602483615146565b91506146f382615742565b604082019050919050565b600061470b601983615146565b915061471682615791565b602082019050919050565b600061472e602c83615146565b9150614739826157ba565b604082019050919050565b6000614751603183615146565b915061475c82615809565b604082019050919050565b6000614774602b83615146565b915061477f82615858565b604082019050919050565b6000614797602783615146565b91506147a2826158a7565b604082019050919050565b60006147ba603883615146565b91506147c5826158f6565b604082019050919050565b60006147dd602a83615146565b91506147e882615945565b604082019050919050565b6000614800602983615146565b915061480b82615994565b604082019050919050565b6000614823602083615146565b915061482e826159e3565b602082019050919050565b6000614846602b83615146565b915061485182615a0c565b604082019050919050565b6000614869602c83615146565b915061487482615a5b565b604082019050919050565b600061488c602083615146565b915061489782615aaa565b602082019050919050565b60006148af602983615146565b91506148ba82615ad3565b604082019050919050565b60006148d2602f83615146565b91506148dd82615b22565b604082019050919050565b60006148f5603483615146565b915061490082615b71565b604082019050919050565b6000614918602d83615146565b915061492382615bc0565b604082019050919050565b600061493b602183615146565b915061494682615c0f565b604082019050919050565b600061495e602483615146565b915061496982615c5e565b604082019050919050565b6000614981603183615146565b915061498c82615cad565b604082019050919050565b60006149a4601d83615146565b91506149af82615cfc565b602082019050919050565b60006149c7602c83615146565b91506149d282615d25565b604082019050919050565b60006149ea602983615146565b91506149f582615d74565b604082019050919050565b614a09816152eb565b82525050565b614a18816152eb565b82525050565b614a2f614a2a826152eb565b615407565b82525050565b6000614a4182856145d8565b9150614a4d82846145d8565b91508190509392505050565b6000614a658287614a1e565b602082019150614a758286614a1e565b602082019150614a858285614a1e565b602082019150614a9582846144d3565b60148201915081905095945050505050565b6000602082019050614abc60008301846144c4565b92915050565b6000606082019050614ad760008301866144c4565b614ae460208301856144c4565b614af16040830184614a0f565b949350505050565b6000608082019050614b0e60008301876144c4565b614b1b60208301866144c4565b614b286040830185614a0f565b8181036060830152614b3a8184614566565b905095945050505050565b6000608082019050614b5a60008301876144c4565b614b676020830186614a0f565b614b746040830185614a0f565b614b816060830184614557565b95945050505050565b60006020820190508181036000830152614ba481846144ea565b905092915050565b6000602082019050614bc16000830184614548565b92915050565b60006020820190508181036000830152614be1818461459f565b905092915050565b60006020820190508181036000830152614c0281614609565b9050919050565b60006020820190508181036000830152614c228161462c565b9050919050565b60006020820190508181036000830152614c428161464f565b9050919050565b60006020820190508181036000830152614c6281614672565b9050919050565b60006020820190508181036000830152614c8281614695565b9050919050565b60006020820190508181036000830152614ca2816146b8565b9050919050565b60006020820190508181036000830152614cc2816146db565b9050919050565b60006020820190508181036000830152614ce2816146fe565b9050919050565b60006020820190508181036000830152614d0281614721565b9050919050565b60006020820190508181036000830152614d2281614744565b9050919050565b60006020820190508181036000830152614d4281614767565b9050919050565b60006020820190508181036000830152614d628161478a565b9050919050565b60006020820190508181036000830152614d82816147ad565b9050919050565b60006020820190508181036000830152614da2816147d0565b9050919050565b60006020820190508181036000830152614dc2816147f3565b9050919050565b60006020820190508181036000830152614de281614816565b9050919050565b60006020820190508181036000830152614e0281614839565b9050919050565b60006020820190508181036000830152614e228161485c565b9050919050565b60006020820190508181036000830152614e428161487f565b9050919050565b60006020820190508181036000830152614e62816148a2565b9050919050565b60006020820190508181036000830152614e82816148c5565b9050919050565b60006020820190508181036000830152614ea2816148e8565b9050919050565b60006020820190508181036000830152614ec28161490b565b9050919050565b60006020820190508181036000830152614ee28161492e565b9050919050565b60006020820190508181036000830152614f0281614951565b9050919050565b60006020820190508181036000830152614f2281614974565b9050919050565b60006020820190508181036000830152614f4281614997565b9050919050565b60006020820190508181036000830152614f62816149ba565b9050919050565b60006020820190508181036000830152614f82816149dd565b9050919050565b6000602082019050614f9e6000830184614a0f565b92915050565b6000608082019050614fb96000830187614a0f565b614fc66020830186614a0f565b614fd360408301856144c4565b614fe06060830184614557565b95945050505050565b600060e082019050614ffe600083018a614a0f565b61500b6020830189614a0f565b818103604083015261501d818861459f565b905061502c6060830187614a0f565b6150396080830186614a0f565b61504660a08301856144c4565b61505360c0830184614a0f565b98975050505050505050565b600061506961507a565b90506150758282615369565b919050565b6000604051905090565b600067ffffffffffffffff82111561509f5761509e61552d565b5b6150a882615570565b9050602081019050919050565b600067ffffffffffffffff8211156150d0576150cf61552d565b5b6150d982615570565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061516d826152eb565b9150615178836152eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151ad576151ac615442565b5b828201905092915050565b60006151c3826152eb565b91506151ce836152eb565b9250826151de576151dd615471565b5b828204905092915050565b60006151f4826152eb565b91506151ff836152eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561523857615237615442565b5b828202905092915050565b600061524e826152eb565b9150615259836152eb565b92508282101561526c5761526b615442565b5b828203905092915050565b6000615282826152cb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615322578082015181840152602081019050615307565b83811115615331576000848401525b50505050565b6000600282049050600182168061534f57607f821691505b60208210811415615363576153626154a0565b5b50919050565b61537282615570565b810181811067ffffffffffffffff821117156153915761539061552d565b5b80604052505050565b60006153a5826152eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153d8576153d7615442565b5b600182019050919050565b60006153ee826153f5565b9050919050565b600061540082615581565b9050919050565b6000819050919050565b600061541c826152eb565b9150615427836152eb565b92508261543757615436615471565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f47656e417274436f6c6c656374696f6e3a206e6f2076616c6964206d656d626560008201527f7273686970000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a20696e76616c696420636f6c6c656360008201527f74696f6e20696400000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a2073656e646572206d75737420626560008201527f206d656d62657273686970206f776e6572000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206f6e6c7920746f6b656e206f776e60008201527f65722063616e206275726e000000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a20696e636f727265637420616d6f7560008201527f6e742073656e7400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f47656e417274436f6c6c656374696f6e3a20696e73756666696369656e74202460008201527f47454e2062616c616e6365000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206f6e6c792061727469737420636160008201527f6e2063616c6c20746869732066756e6374696f6e000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206d617820696e766f636174696f6e60008201527f7320776173207265616368656400000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a206e6f206d696e7473206176616c6960008201527f61626c6500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742077697468202447454e415254206e6f7420616c6c6f776564000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f47656e417274436f6c6c656374696f6e3a20696e636f727265637420636f6c6c60008201527f656374696f6e2069640000000000000000000000000000000000000000000000602082015250565b615dcc81615277565b8114615dd757600080fd5b50565b615de381615289565b8114615dee57600080fd5b50565b615dfa8161529f565b8114615e0557600080fd5b50565b615e11816152eb565b8114615e1c57600080fd5b5056fea2646970667358221220c484d9e6c1ddef593c360c41d665db1ba9c060ae46b4082fb6ed1cb8cdf7cd3364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000097275a3a1237b1b63ce089daffffc7ddf6a5c262000000000000000000000000000000000000000000000000000000000000001247454e2e41525420436f6c6c656374696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000647454e4152540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6170692e67656e2e6172742f7075626c69632f617474726962757465732f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): GEN.ART Collection
Arg [1] : symbol_ (string): GENART
Arg [2] : uri_ (string): https://api.gen.art/public/attributes/
Arg [3] : genArtInterfaceAddress_ (address): 0x97275a3a1237B1B63ce089daFFfFc7dDf6a5C262

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000097275a3a1237b1b63ce089daffffc7ddf6a5c262
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 47454e2e41525420436f6c6c656374696f6e0000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 47454e4152540000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [9] : 68747470733a2f2f6170692e67656e2e6172742f7075626c69632f6174747269
Arg [10] : 62757465732f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

26111:32190:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39278:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40514:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42553:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42066:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37162:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31629:367;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52743:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43612:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28982:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52314:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33086:699;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38826:380;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44059:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35648:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52933:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41905:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32004:552;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29125:718;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40121:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39764:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32564:514;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38348:470;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;2868:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40683:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36962:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42933:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36780:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44315:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35729:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36371:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40858:470;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37426:914;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;43331:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3323:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36570:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39278:422;39425:4;39482:25;39467:40;;;:11;:40;;;;:105;;;;39539:33;39524:48;;;:11;:48;;;;39467:105;:172;;;;39604:35;39589:50;;;:11;:50;;;;39467:172;:225;;;;39656:36;39680:11;39656:23;:36::i;:::-;39467:225;39447:245;;39278:422;;;:::o;40514:100::-;40568:13;40601:5;40594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40514:100;:::o;42553:308::-;42674:7;42721:16;42729:7;42721;:16::i;:::-;42699:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42829:15;:24;42845:7;42829:24;;;;;;;;;;;;;;;;;;;;;42822:31;;42553:308;;;:::o;42066:421::-;42147:13;42163:33;42188:7;42163:24;:33::i;:::-;42147:49;;42221:5;42215:11;;:2;:11;;;;42207:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42315:5;42299:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42324:37;42341:5;42348:12;:10;:12::i;:::-;42324:16;:37::i;:::-;42299:62;42277:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;42458:21;42467:2;42471:7;42458:8;:21::i;:::-;42136:351;42066:421;;:::o;37162:256::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37342:6:::1;37303:15;:30;37319:13;37303:30;;;;;;;;;;;:36;;:45;;;;37401:9;37359:15;:30;37375:13;37359:30;;;;;;;;;;;:39;;:51;;;;37162:256:::0;;;:::o;31629:367::-;31762:71;31772:10;31784:13;31799;31814:9;31825:1;31828:4;31762:9;:71::i;:::-;31844:48;31860:13;31875;31890:1;31844:15;:48::i;:::-;31903:28;31912:3;31917:13;31903:8;:28::i;:::-;31942:46;31953:10;31965:13;31980:1;31983:4;31942:10;:46::i;:::-;31629:367;;;:::o;52743:113::-;52804:7;52831:10;:17;;;;52824:24;;52743:113;:::o;43612:376::-;43821:41;43840:12;:10;:12::i;:::-;43854:7;43821:18;:41::i;:::-;43799:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43952:28;43962:4;43968:2;43972:7;43952:9;:28::i;:::-;43612:376;;;:::o;28982:135::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29043:14:::1;29060:7;:5;:7::i;:::-;29043:24;;29086:6;29078:24;;:31;29103:5;29078:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;29032:85;28982:135:::0;:::o;52314:353::-;52456:7;52511:33;52538:5;52511:26;:33::i;:::-;52503:5;:41;52481:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;52633:12;:19;52646:5;52633:19;;;;;;;;;;;;;;;:26;52653:5;52633:26;;;;;;;;;;;;52626:33;;52314:353;;;;:::o;33086:699::-;33244:16;33263;;;;;;;;;;;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33244:48;;33311:11;33303:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;33367:15;33385:16;;;;;;;;;;;:26;;;33412:10;33385:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33367:56;;33434:165;33458:10;33483:13;33511;33539:7;33561;33583:5;33434:9;:165::i;:::-;33610:54;33626:13;33641;33656:7;33610:15;:54::i;:::-;33675:38;33685:3;33690:13;33705:7;33675:9;:38::i;:::-;33724:53;33735:10;33747:13;33762:7;33771:5;33724:10;:53::i;:::-;33233:552;;33086:699;;;;:::o;38826:380::-;38916:16;38950:18;38971:17;38981:6;38971:9;:17::i;:::-;38950:38;;38999:25;39041:10;39027:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38999:53;;39068:9;39063:108;39083:10;39079:1;:14;39063:108;;;39129:30;39149:6;39157:1;39129:19;:30::i;:::-;39115:8;39124:1;39115:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;39095:3;;;;;:::i;:::-;;;;39063:108;;;;39190:8;39183:15;;;;38826:380;;;:::o;44059:185::-;44197:39;44214:4;44220:2;44224:7;44197:39;;;;;;;;;;;;:16;:39::i;:::-;44059:185;;;:::o;35648:73::-;35698:15;35704:8;35698:5;:15::i;:::-;35648:73;:::o;52933:320::-;53053:7;53108:30;:28;:30::i;:::-;53100:5;:38;53078:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;53228:10;53239:5;53228:17;;;;;;;;:::i;:::-;;;;;;;;;;53221:24;;52933:320;;;:::o;41905:99::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41988:8:::1;41977;:19;;;;;;;;;;;;:::i;:::-;;41905:99:::0;:::o;32004:552::-;32132:16;32151;;;;;;;;;;;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32132:48;;32199:11;32191:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;32255:15;32273:16;;;;;;;;;;;:26;;;32300:10;32273:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32255:56;;32322:70;32332:10;32344:13;32359;32374:7;32383:1;32386:5;32322:9;:70::i;:::-;32403:48;32419:13;32434;32449:1;32403:15;:48::i;:::-;32462:28;32471:3;32476:13;32462:8;:28::i;:::-;32501:47;32512:10;32524:13;32539:1;32542:5;32501:10;:47::i;:::-;32121:435;;32004:552;;;:::o;29125:718::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29394:21:::1;29418:30;:20;:28;:30::i;:::-;29394:54;;29494:296;;;;;;;;29526:5;29494:296;;;;29559:1;29494:296;;;;29591:15;29494:296;;;;29629:7;29494:296;;;;29658:6;29494:296;;;;29689:9;29494:296;;;;29731:17;29494:296;;;;29771:7;29494:296;;;;::::0;29461:15:::1;:30;29477:13;29461:30;;;;;;;;;;;:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29803:32;:20;:30;:32::i;:::-;29383:460;29125:718:::0;;;;;;;:::o;40121:326::-;40238:7;40263:13;40279:7;:16;40287:7;40279:16;;;;;;;;;;;;;;;;;;;;;40263:32;;40345:1;40328:19;;:5;:19;;;;40306:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40434:5;40427:12;;;40121:326;;;:::o;39764:295::-;39881:7;39945:1;39928:19;;:5;:19;;;;39906:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;40035:9;:16;40045:5;40035:16;;;;;;;;;;;;;;;;40028:23;;39764:295;;;:::o;32564:514::-;32727:166;32751:10;32776:13;32804;32832:9;32856:7;32878:4;32727:9;:166::i;:::-;32904:54;32920:13;32935;32950:7;32904:15;:54::i;:::-;32969:38;32979:3;32984:13;32999:7;32969:9;:38::i;:::-;33018:52;33029:10;33041:13;33056:7;33065:4;33018:10;:52::i;:::-;32564:514;;;;:::o;38348:470::-;38450:7;38472;38494;38516;38551:17;38559:8;38551:7;:17::i;:::-;;38579:12;38594:17;:27;38612:8;38594:27;;;;;;;;;;;;38579:42;;38632:21;38656:25;:35;38682:8;38656:35;;;;;;;;;;;;38632:59;;38702:13;38718:34;38743:8;38718:24;:34::i;:::-;38702:50;;38773:8;38783:13;38798:5;38805:4;38765:45;;;;;;;;;;;38348:470;;;;;:::o;2868:87::-;2914:7;2941:6;;;;;;;;;;;2934:13;;2868:87;:::o;40683:104::-;40739:13;40772:7;40765:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40683:104;:::o;36962:192::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37122:23:::1;37086:16;;:60;;;;;;;;;;;;;;;;;;36962:192:::0;:::o;42933:327::-;43080:12;:10;:12::i;:::-;43068:24;;:8;:24;;;;43060:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43180:8;43135:18;:32;43154:12;:10;:12::i;:::-;43135:32;;;;;;;;;;;;;;;:42;43168:8;43135:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;43233:8;43204:48;;43219:12;:10;:12::i;:::-;43204:48;;;43243:8;43204:48;;;;;;:::i;:::-;;;;;;;;42933:327;;:::o;36780:174::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36939:7:::1;36899:15;:30;36915:13;36899:30;;;;;;;;;;;:37;;:47;;;;;;;;;;;;:::i;:::-;;36780:174:::0;;:::o;44315:365::-;44504:41;44523:12;:10;:12::i;:::-;44537:7;44504:18;:41::i;:::-;44482:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44633:39;44647:4;44653:2;44657:7;44666:5;44633:13;:39::i;:::-;44315:365;;;;:::o;35729:331::-;35858:7;35878:15;35896:16;;;;;;;;;;;:40;;;35951:13;35896:79;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35878:97;;36003:19;:34;36023:13;36003:34;;;;;;;;;;;:49;36038:13;36003:49;;;;;;;;;;;;35993:7;:59;;;;:::i;:::-;35986:66;;;35729:331;;;;:::o;36371:191::-;36476:13;28862:12;:10;:12::i;:::-;28821:53;;:15;:30;28837:13;28821:30;;;;;;;;;;;:37;;;;;;;;;;;;:53;;;28799:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;36547:7:::1;36507:15;:30;36523:13;36507:30;;;;;;;;;;;:37;;;:47;;;;;;;;;;;;;;;;;;36371:191:::0;;;:::o;40858:470::-;40976:13;41029:16;41037:7;41029;:16::i;:::-;41007:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;41133:22;41158:9;:7;:9::i;:::-;41133:34;;41223:1;41204:8;41198:22;:26;:122;;;;;;;;;;;;;;;;;41268:8;41278:18;:7;:16;:18::i;:::-;41251:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41198:122;41178:142;;;40858:470;;;:::o;37426:914::-;37538:19;37572:22;37609:20;37644:13;37672:16;37703:14;37732:24;37845:1;37806:15;:30;37822:13;37806:30;;;;;;;;;;;:35;;;:40;;37784:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;37948:15;:30;37964:13;37948:30;;;;;;;;;;;:42;;;38005:15;:30;38021:13;38005:30;;;;;;;;;;;:45;;;38065:15;:30;38081:13;38065:30;;;;;;;;;;;:37;;38117:15;:30;38133:13;38117:30;;;;;;;;;;;:36;;;38168:15;:30;38184:13;38168:30;;;;;;;;;;;:39;;;38222:15;:30;38238:13;38222:30;;;;;;;;;;;:37;;;;;;;;;;;;38274:15;:30;38290:13;38274:30;;;;;;;;;;;:47;;;37926:406;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37426:914;;;;;;;;;:::o;43331:214::-;43473:4;43502:18;:25;43521:5;43502:25;;;;;;;;;;;;;;;:35;43528:8;43502:35;;;;;;;;;;;;;;;;;;;;;;;;;43495:42;;43331:214;;;;:::o;3323:229::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3446:1:::1;3426:22;;:8;:22;;;;3404:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3525:19;3535:8;3525:9;:19::i;:::-;3323:229:::0;:::o;36570:202::-;3099:12;:10;:12::i;:::-;3088:23;;:7;:5;:7::i;:::-;:23;;;3080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36749:15:::1;36701;:30;36717:13;36701:30;;;;;;;;;;;:45;;:63;;;;36570:202:::0;;:::o;4593:127::-;4700:1;4682:7;:14;;;:19;;;;;;;;;;;4593:127;:::o;19257:207::-;19387:4;19431:25;19416:40;;;:11;:40;;;;19409:47;;19257:207;;;:::o;46227:127::-;46292:4;46344:1;46316:30;;:7;:16;46324:7;46316:16;;;;;;;;;;;;;;;;;;;;;:30;;;;46309:37;;46227:127;;;:::o;1719:98::-;1772:7;1799:10;1792:17;;1719:98;:::o;50501:184::-;50603:2;50576:15;:24;50592:7;50576:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50669:7;50665:2;50621:56;;50630:33;50655:7;50630:24;:33::i;:::-;50621:56;;;;;;;;;;;;50501:184;;:::o;29851:1770::-;30136:1;30097:15;:30;30113:13;30097:30;;;;;;;;;;;:35;;;:40;;30075:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;30301:15;:30;30317:13;30301:30;;;;;;;;;;;:45;;;30239:15;:30;30255:13;30239:30;;;;;;;;;;;:42;;;:107;30217:202;;;;;;;;;;;;:::i;:::-;;;;;;;;;30430:24;30457:16;;;;;;;;;;;:24;;;30482:13;30457:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30430:66;;30549:7;30529:27;;:16;:27;;;30507:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;30644:18;30665:16;;;;;;;;;;;:28;;;30694:13;30665:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30644:64;;30719:13;30735;:21;;30755:1;30735:21;;;30751:1;30735:21;30719:37;;;;30828:1;30789:15;:30;30805:13;30789:30;;;;;;;;;;;:35;;;:40;:105;;;;30889:5;30850:15;:30;30866:13;30850:30;;;;;;;;;;;:35;;;:44;30789:105;30767:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;30970:15;30988:94;31030:13;31058;30988:27;:94::i;:::-;30970:112;;31126:7;31115;:18;;31093:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;31212:13;31208:406;;;31321:6;31268:49;31309:7;31268:15;:30;31284:13;31268:30;;;;;;;;;;;:36;;;:40;;:49;;;;:::i;:::-;:59;;31242:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;31208:406;;;31517:6;31461:52;31505:7;31461:15;:30;31477:13;31461:30;;;;;;;;;;;:39;;;:43;;:52;;;;:::i;:::-;:62;;31435:167;;;;;;;;;;;;:::i;:::-;;;;;;;;;31208:406;30064:1557;;;;29851:1770;;;;;;:::o;36068:295::-;36348:7;36283:19;:34;36303:13;36283:34;;;;;;;;;;;:49;36318:13;36283:49;;;;;;;;;;;;:72;;;;:::i;:::-;36218:19;:34;36238:13;36218:34;;;;;;;;;;;:49;36253:13;36218:49;;;;;;;;;;;:137;;;;36068:295;;;:::o;34035:618::-;34117:18;34183:1;34138:15;:30;34154:13;34138:30;;;;;;;;;;;:42;;;:46;;;;:::i;:::-;34117:67;;34195:16;34239:10;34230:6;34214:13;:22;;;;:::i;:::-;:35;;;;:::i;:::-;34195:54;;34305:10;34260:15;:30;34276:13;34260:30;;;;;;;;;;;:42;;:55;;;;34328:12;34384:10;34396:12;34410:16;34428:3;34367:65;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34343:100;;;;;;34328:115;;34484:4;34454:17;:27;34472:8;34454:27;;;;;;;;;;;:34;;;;34537:13;34499:25;:35;34525:8;34499:35;;;;;;;;;;;:51;;;;34563:24;34573:3;34578:8;34563:9;:24::i;:::-;34605:40;34610:3;34615:13;34630:8;34640:4;34605:40;;;;;;;;;:::i;:::-;;;;;;;;34106:547;;;34035:618;;:::o;34661:979::-;34829:13;34845;:146;;34939:52;34983:7;34939:15;:30;34955:13;34939:30;;;;;;;;;;;:39;;;:43;;:52;;;;:::i;:::-;34845:146;;;34874:49;34915:7;34874:15;:30;34890:13;34874:30;;;;;;;;;;;:36;;;:40;;:49;;;;:::i;:::-;34845:146;34829:162;;35002:14;35019:7;:5;:7::i;:::-;35002:24;;35037:20;35133:3;35082:15;:30;35098:13;35082:30;;;;;;;;;;;:47;;;35061:5;:68;;;;:::i;:::-;35060:76;;;;:::i;:::-;35037:99;;35151:13;35147:486;;;35189:15;:30;35205:13;35189:30;;;;;;;;;;;:37;;;;;;;;;;;;35181:55;;:101;35255:12;35181:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35147:486;;;35315:16;;;;;;;;;;;:29;;;35363:7;35389:6;35422:12;35414:5;:20;;;;:::i;:::-;35315:134;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35464:16;;;;;;;;;;;:29;;;35512:7;35538:15;:30;35554:13;35538:30;;;;;;;;;;;:37;;;;;;;;;;;;35594:12;35464:157;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35147:486;34818:822;;;34661:979;;;;:::o;46521:462::-;46650:4;46694:16;46702:7;46694;:16::i;:::-;46672:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46793:13;46809:33;46834:7;46809:24;:33::i;:::-;46793:49;;46872:5;46861:16;;:7;:16;;;:64;;;;46918:7;46894:31;;:20;46906:7;46894:11;:20::i;:::-;:31;;;46861:64;:113;;;;46942:32;46959:5;46966:7;46942:16;:32::i;:::-;46861:113;46853:122;;;46521:462;;;;:::o;49758:625::-;49941:4;49904:41;;:33;49929:7;49904:24;:33::i;:::-;:41;;;49882:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;50047:1;50033:16;;:2;:16;;;;50025:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50103:39;50124:4;50130:2;50134:7;50103:20;:39::i;:::-;50207:29;50224:1;50228:7;50207:8;:29::i;:::-;50268:1;50249:9;:15;50259:4;50249:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;50297:1;50280:9;:13;50290:2;50280:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;50328:2;50309:7;:16;50317:7;50309:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50367:7;50363:2;50348:27;;50357:4;50348:27;;;;;;;;;;;;49758:625;;;:::o;33793:234::-;33932:9;33927:93;33951:7;33947:1;:11;33927:93;;;33980:28;33989:3;33994:13;33980:8;:28::i;:::-;33960:3;;;;;:::i;:::-;;;;33927:93;;;;33793:234;;;:::o;48930:491::-;48990:13;49006:33;49031:7;49006:24;:33::i;:::-;48990:49;;49088:5;49072:21;;:12;:10;:12::i;:::-;:21;;;49050:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;49175:48;49196:5;49211:1;49215:7;49175:20;:48::i;:::-;49262:29;49279:1;49283:7;49262:8;:29::i;:::-;49324:1;49304:9;:16;49314:5;49304:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;49343:7;:16;49351:7;49343:16;;;;;;;;;;;;49336:23;;;;;;;;;;;49405:7;49401:1;49377:36;;49386:5;49377:36;;;;;;;;;;;;48979:442;48930:491;:::o;4471:114::-;4536:7;4563;:14;;;4556:21;;4471:114;;;:::o;45562:352::-;45719:28;45729:4;45735:2;45739:7;45719:9;:28::i;:::-;45780:48;45803:4;45809:2;45813:7;45822:5;45780:22;:48::i;:::-;45758:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;45562:352;;;;:::o;41576:99::-;41626:13;41659:8;41652:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41576:99;:::o;5290:723::-;5346:13;5576:1;5567:5;:10;5563:53;;;5594:10;;;;;;;;;;;;;;;;;;;;;5563:53;5626:12;5641:5;5626:20;;5657:14;5682:78;5697:1;5689:4;:9;5682:78;;5715:8;;;;;:::i;:::-;;;;5746:2;5738:10;;;;;:::i;:::-;;;5682:78;;;5770:19;5802:6;5792:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5770:39;;5820:154;5836:1;5827:5;:10;5820:154;;5864:1;5854:11;;;;;:::i;:::-;;;5931:2;5923:5;:10;;;;:::i;:::-;5910:2;:24;;;;:::i;:::-;5897:39;;5880:6;5887;5880:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5960:2;5951:11;;;;;:::i;:::-;;;5820:154;;;5998:6;5984:21;;;;;5290:723;;;;:::o;3560:173::-;3616:16;3635:6;;;;;;;;;;;3616:25;;3661:8;3652:6;;:17;;;;;;;;;;;;;;;;;;3716:8;3685:40;;3706:8;3685:40;;;;;;;;;;;;3605:128;3560:173;:::o;10694:98::-;10752:7;10783:1;10779;:5;;;;:::i;:::-;10772:12;;10694:98;;;;:::o;47325:110::-;47401:26;47411:2;47415:7;47401:26;;;;;;;;;;;;:9;:26::i;:::-;47325:110;;:::o;53866:522::-;54021:1;54005:18;;:4;:18;;;54001:187;;;54040:40;54072:7;54040:31;:40::i;:::-;54001:187;;;54110:2;54102:10;;:4;:10;;;54098:90;;54129:47;54162:4;54168:7;54129:32;:47::i;:::-;54098:90;54001:187;54216:1;54202:16;;:2;:16;;;54198:183;;;54235:45;54272:7;54235:36;:45::i;:::-;54198:183;;;54308:4;54302:10;;:2;:10;;;54298:83;;54329:40;54357:2;54361:7;54329:27;:40::i;:::-;54298:83;54198:183;53866:522;;;:::o;51250:980::-;51405:4;51426:15;:2;:13;;;:15::i;:::-;51422:801;;;51495:2;51479:36;;;51538:12;:10;:12::i;:::-;51573:4;51600:7;51630:5;51479:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51458:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51854:1;51837:6;:13;:18;51833:320;;;51880:108;;;;;;;;;;:::i;:::-;;;;;;;;51833:320;52103:6;52097:13;52088:6;52084:2;52080:15;52073:38;51458:710;51728:41;;;51718:51;;;:6;:51;;;;51711:58;;;;;51422:801;52207:4;52200:11;;51250:980;;;;;;;:::o;47662:321::-;47792:18;47798:2;47802:7;47792:5;:18::i;:::-;47843:54;47874:1;47878:2;47882:7;47891:5;47843:22;:54::i;:::-;47821:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;47662:321;;;:::o;55121:164::-;55225:10;:17;;;;55198:15;:24;55214:7;55198:24;;;;;;;;;;;:44;;;;55253:10;55269:7;55253:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55121:164;:::o;55912:1012::-;56192:22;56252:1;56217:32;56244:4;56217:26;:32::i;:::-;:36;;;;:::i;:::-;56192:61;;56264:18;56285:17;:26;56303:7;56285:26;;;;;;;;;;;;56264:47;;56432:14;56418:10;:28;56414:328;;56463:19;56485:12;:18;56498:4;56485:18;;;;;;;;;;;;;;;:34;56504:14;56485:34;;;;;;;;;;;;56463:56;;56569:11;56536:12;:18;56549:4;56536:18;;;;;;;;;;;;;;;:30;56555:10;56536:30;;;;;;;;;;;:44;;;;56686:10;56653:17;:30;56671:11;56653:30;;;;;;;;;;;:43;;;;56448:294;56414:328;56838:17;:26;56856:7;56838:26;;;;;;;;;;;56831:33;;;56882:12;:18;56895:4;56882:18;;;;;;;;;;;;;;;:34;56901:14;56882:34;;;;;;;;;;;56875:41;;;56007:917;;55912:1012;;:::o;57219:1079::-;57472:22;57517:1;57497:10;:17;;;;:21;;;;:::i;:::-;57472:46;;57529:18;57550:15;:24;57566:7;57550:24;;;;;;;;;;;;57529:45;;57901:19;57923:10;57934:14;57923:26;;;;;;;;:::i;:::-;;;;;;;;;;57901:48;;57987:11;57962:10;57973;57962:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;58098:10;58067:15;:28;58083:11;58067:28;;;;;;;;;;;:41;;;;58239:15;:24;58255:7;58239:24;;;;;;;;;;;58232:31;;;58274:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57290:1008;;;57219:1079;:::o;54689:231::-;54774:14;54791:30;54818:2;54791:26;:30::i;:::-;54774:47;;54859:7;54832:12;:16;54845:2;54832:16;;;;;;;;;;;;;;;:24;54849:6;54832:24;;;;;;;;;;;:34;;;;54906:6;54877:17;:26;54895:7;54877:26;;;;;;;;;;;:35;;;;54763:157;54689:231;;:::o;6701:387::-;6761:4;6969:12;7036:7;7024:20;7016:28;;7079:1;7072:4;:8;7065:15;;;6701:387;;;:::o;48319:382::-;48413:1;48399:16;;:2;:16;;;;48391:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48472:16;48480:7;48472;:16::i;:::-;48471:17;48463:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48534:45;48563:1;48567:2;48571:7;48534:20;:45::i;:::-;48609:1;48592:9;:13;48602:2;48592:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;48640:2;48621:7;:16;48629:7;48621:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48685:7;48681:2;48660:33;;48677:1;48660:33;;;;;;;;;;;;48319:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1328:5;1359:6;1353:13;1344:22;;1375:30;1399:5;1375:30;:::i;:::-;1274:137;;;;:::o;1417:::-;1462:5;1500:6;1487:20;1478:29;;1516:32;1542:5;1516:32;:::i;:::-;1417:137;;;;:::o;1560:141::-;1616:5;1647:6;1641:13;1632:22;;1663:32;1689:5;1663:32;:::i;:::-;1560:141;;;;:::o;1720:338::-;1775:5;1824:3;1817:4;1809:6;1805:17;1801:27;1791:122;;1832:79;;:::i;:::-;1791:122;1949:6;1936:20;1974:78;2048:3;2040:6;2033:4;2025:6;2021:17;1974:78;:::i;:::-;1965:87;;1781:277;1720:338;;;;:::o;2078:340::-;2134:5;2183:3;2176:4;2168:6;2164:17;2160:27;2150:122;;2191:79;;:::i;:::-;2150:122;2308:6;2295:20;2333:79;2408:3;2400:6;2393:4;2385:6;2381:17;2333:79;:::i;:::-;2324:88;;2140:278;2078:340;;;;:::o;2424:139::-;2470:5;2508:6;2495:20;2486:29;;2524:33;2551:5;2524:33;:::i;:::-;2424:139;;;;:::o;2569:143::-;2626:5;2657:6;2651:13;2642:22;;2673:33;2700:5;2673:33;:::i;:::-;2569:143;;;;:::o;2718:329::-;2777:6;2826:2;2814:9;2805:7;2801:23;2797:32;2794:119;;;2832:79;;:::i;:::-;2794:119;2952:1;2977:53;3022:7;3013:6;3002:9;2998:22;2977:53;:::i;:::-;2967:63;;2923:117;2718:329;;;;:::o;3053:351::-;3123:6;3172:2;3160:9;3151:7;3147:23;3143:32;3140:119;;;3178:79;;:::i;:::-;3140:119;3298:1;3323:64;3379:7;3370:6;3359:9;3355:22;3323:64;:::i;:::-;3313:74;;3269:128;3053:351;;;;:::o;3410:474::-;3478:6;3486;3535:2;3523:9;3514:7;3510:23;3506:32;3503:119;;;3541:79;;:::i;:::-;3503:119;3661:1;3686:53;3731:7;3722:6;3711:9;3707:22;3686:53;:::i;:::-;3676:63;;3632:117;3788:2;3814:53;3859:7;3850:6;3839:9;3835:22;3814:53;:::i;:::-;3804:63;;3759:118;3410:474;;;;;:::o;3890:619::-;3967:6;3975;3983;4032:2;4020:9;4011:7;4007:23;4003:32;4000:119;;;4038:79;;:::i;:::-;4000:119;4158:1;4183:53;4228:7;4219:6;4208:9;4204:22;4183:53;:::i;:::-;4173:63;;4129:117;4285:2;4311:53;4356:7;4347:6;4336:9;4332:22;4311:53;:::i;:::-;4301:63;;4256:118;4413:2;4439:53;4484:7;4475:6;4464:9;4460:22;4439:53;:::i;:::-;4429:63;;4384:118;3890:619;;;;;:::o;4515:943::-;4610:6;4618;4626;4634;4683:3;4671:9;4662:7;4658:23;4654:33;4651:120;;;4690:79;;:::i;:::-;4651:120;4810:1;4835:53;4880:7;4871:6;4860:9;4856:22;4835:53;:::i;:::-;4825:63;;4781:117;4937:2;4963:53;5008:7;4999:6;4988:9;4984:22;4963:53;:::i;:::-;4953:63;;4908:118;5065:2;5091:53;5136:7;5127:6;5116:9;5112:22;5091:53;:::i;:::-;5081:63;;5036:118;5221:2;5210:9;5206:18;5193:32;5252:18;5244:6;5241:30;5238:117;;;5274:79;;:::i;:::-;5238:117;5379:62;5433:7;5424:6;5413:9;5409:22;5379:62;:::i;:::-;5369:72;;5164:287;4515:943;;;;;;;:::o;5464:468::-;5529:6;5537;5586:2;5574:9;5565:7;5561:23;5557:32;5554:119;;;5592:79;;:::i;:::-;5554:119;5712:1;5737:53;5782:7;5773:6;5762:9;5758:22;5737:53;:::i;:::-;5727:63;;5683:117;5839:2;5865:50;5907:7;5898:6;5887:9;5883:22;5865:50;:::i;:::-;5855:60;;5810:115;5464:468;;;;;:::o;5938:474::-;6006:6;6014;6063:2;6051:9;6042:7;6038:23;6034:32;6031:119;;;6069:79;;:::i;:::-;6031:119;6189:1;6214:53;6259:7;6250:6;6239:9;6235:22;6214:53;:::i;:::-;6204:63;;6160:117;6316:2;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6287:118;5938:474;;;;;:::o;6418:619::-;6495:6;6503;6511;6560:2;6548:9;6539:7;6535:23;6531:32;6528:119;;;6566:79;;:::i;:::-;6528:119;6686:1;6711:53;6756:7;6747:6;6736:9;6732:22;6711:53;:::i;:::-;6701:63;;6657:117;6813:2;6839:53;6884:7;6875:6;6864:9;6860:22;6839:53;:::i;:::-;6829:63;;6784:118;6941:2;6967:53;7012:7;7003:6;6992:9;6988:22;6967:53;:::i;:::-;6957:63;;6912:118;6418:619;;;;;:::o;7043:765::-;7129:6;7137;7145;7153;7202:3;7190:9;7181:7;7177:23;7173:33;7170:120;;;7209:79;;:::i;:::-;7170:120;7329:1;7354:53;7399:7;7390:6;7379:9;7375:22;7354:53;:::i;:::-;7344:63;;7300:117;7456:2;7482:53;7527:7;7518:6;7507:9;7503:22;7482:53;:::i;:::-;7472:63;;7427:118;7584:2;7610:53;7655:7;7646:6;7635:9;7631:22;7610:53;:::i;:::-;7600:63;;7555:118;7712:2;7738:53;7783:7;7774:6;7763:9;7759:22;7738:53;:::i;:::-;7728:63;;7683:118;7043:765;;;;;;;:::o;7814:1383::-;7937:6;7945;7953;7961;7969;7977;7985;8034:3;8022:9;8013:7;8009:23;8005:33;8002:120;;;8041:79;;:::i;:::-;8002:120;8161:1;8186:53;8231:7;8222:6;8211:9;8207:22;8186:53;:::i;:::-;8176:63;;8132:117;8288:2;8314:53;8359:7;8350:6;8339:9;8335:22;8314:53;:::i;:::-;8304:63;;8259:118;8416:2;8442:53;8487:7;8478:6;8467:9;8463:22;8442:53;:::i;:::-;8432:63;;8387:118;8544:2;8570:53;8615:7;8606:6;8595:9;8591:22;8570:53;:::i;:::-;8560:63;;8515:118;8672:3;8699:53;8744:7;8735:6;8724:9;8720:22;8699:53;:::i;:::-;8689:63;;8643:119;8801:3;8828:53;8873:7;8864:6;8853:9;8849:22;8828:53;:::i;:::-;8818:63;;8772:119;8958:3;8947:9;8943:19;8930:33;8990:18;8982:6;8979:30;8976:117;;;9012:79;;:::i;:::-;8976:117;9117:63;9172:7;9163:6;9152:9;9148:22;9117:63;:::i;:::-;9107:73;;8901:289;7814:1383;;;;;;;;;;:::o;9203:345::-;9270:6;9319:2;9307:9;9298:7;9294:23;9290:32;9287:119;;;9325:79;;:::i;:::-;9287:119;9445:1;9470:61;9523:7;9514:6;9503:9;9499:22;9470:61;:::i;:::-;9460:71;;9416:125;9203:345;;;;:::o;9554:327::-;9612:6;9661:2;9649:9;9640:7;9636:23;9632:32;9629:119;;;9667:79;;:::i;:::-;9629:119;9787:1;9812:52;9856:7;9847:6;9836:9;9832:22;9812:52;:::i;:::-;9802:62;;9758:116;9554:327;;;;:::o;9887:349::-;9956:6;10005:2;9993:9;9984:7;9980:23;9976:32;9973:119;;;10011:79;;:::i;:::-;9973:119;10131:1;10156:63;10211:7;10202:6;10191:9;10187:22;10156:63;:::i;:::-;10146:73;;10102:127;9887:349;;;;:::o;10242:509::-;10311:6;10360:2;10348:9;10339:7;10335:23;10331:32;10328:119;;;10366:79;;:::i;:::-;10328:119;10514:1;10503:9;10499:17;10486:31;10544:18;10536:6;10533:30;10530:117;;;10566:79;;:::i;:::-;10530:117;10671:63;10726:7;10717:6;10706:9;10702:22;10671:63;:::i;:::-;10661:73;;10457:287;10242:509;;;;:::o;10757:329::-;10816:6;10865:2;10853:9;10844:7;10840:23;10836:32;10833:119;;;10871:79;;:::i;:::-;10833:119;10991:1;11016:53;11061:7;11052:6;11041:9;11037:22;11016:53;:::i;:::-;11006:63;;10962:117;10757:329;;;;:::o;11092:351::-;11162:6;11211:2;11199:9;11190:7;11186:23;11182:32;11179:119;;;11217:79;;:::i;:::-;11179:119;11337:1;11362:64;11418:7;11409:6;11398:9;11394:22;11362:64;:::i;:::-;11352:74;;11308:128;11092:351;;;;:::o;11449:474::-;11517:6;11525;11574:2;11562:9;11553:7;11549:23;11545:32;11542:119;;;11580:79;;:::i;:::-;11542:119;11700:1;11725:53;11770:7;11761:6;11750:9;11746:22;11725:53;:::i;:::-;11715:63;;11671:117;11827:2;11853:53;11898:7;11889:6;11878:9;11874:22;11853:53;:::i;:::-;11843:63;;11798:118;11449:474;;;;;:::o;11929:654::-;12007:6;12015;12064:2;12052:9;12043:7;12039:23;12035:32;12032:119;;;12070:79;;:::i;:::-;12032:119;12190:1;12215:53;12260:7;12251:6;12240:9;12236:22;12215:53;:::i;:::-;12205:63;;12161:117;12345:2;12334:9;12330:18;12317:32;12376:18;12368:6;12365:30;12362:117;;;12398:79;;:::i;:::-;12362:117;12503:63;12558:7;12549:6;12538:9;12534:22;12503:63;:::i;:::-;12493:73;;12288:288;11929:654;;;;;:::o;12589:474::-;12657:6;12665;12714:2;12702:9;12693:7;12689:23;12685:32;12682:119;;;12720:79;;:::i;:::-;12682:119;12840:1;12865:53;12910:7;12901:6;12890:9;12886:22;12865:53;:::i;:::-;12855:63;;12811:117;12967:2;12993:53;13038:7;13029:6;13018:9;13014:22;12993:53;:::i;:::-;12983:63;;12938:118;12589:474;;;;;:::o;13069:619::-;13146:6;13154;13162;13211:2;13199:9;13190:7;13186:23;13182:32;13179:119;;;13217:79;;:::i;:::-;13179:119;13337:1;13362:53;13407:7;13398:6;13387:9;13383:22;13362:53;:::i;:::-;13352:63;;13308:117;13464:2;13490:53;13535:7;13526:6;13515:9;13511:22;13490:53;:::i;:::-;13480:63;;13435:118;13592:2;13618:53;13663:7;13654:6;13643:9;13639:22;13618:53;:::i;:::-;13608:63;;13563:118;13069:619;;;;;:::o;13694:179::-;13763:10;13784:46;13826:3;13818:6;13784:46;:::i;:::-;13862:4;13857:3;13853:14;13839:28;;13694:179;;;;:::o;13879:118::-;13966:24;13984:5;13966:24;:::i;:::-;13961:3;13954:37;13879:118;;:::o;14003:157::-;14108:45;14128:24;14146:5;14128:24;:::i;:::-;14108:45;:::i;:::-;14103:3;14096:58;14003:157;;:::o;14196:732::-;14315:3;14344:54;14392:5;14344:54;:::i;:::-;14414:86;14493:6;14488:3;14414:86;:::i;:::-;14407:93;;14524:56;14574:5;14524:56;:::i;:::-;14603:7;14634:1;14619:284;14644:6;14641:1;14638:13;14619:284;;;14720:6;14714:13;14747:63;14806:3;14791:13;14747:63;:::i;:::-;14740:70;;14833:60;14886:6;14833:60;:::i;:::-;14823:70;;14679:224;14666:1;14663;14659:9;14654:14;;14619:284;;;14623:14;14919:3;14912:10;;14320:608;;;14196:732;;;;:::o;14934:109::-;15015:21;15030:5;15015:21;:::i;:::-;15010:3;15003:34;14934:109;;:::o;15049:118::-;15136:24;15154:5;15136:24;:::i;:::-;15131:3;15124:37;15049:118;;:::o;15173:360::-;15259:3;15287:38;15319:5;15287:38;:::i;:::-;15341:70;15404:6;15399:3;15341:70;:::i;:::-;15334:77;;15420:52;15465:6;15460:3;15453:4;15446:5;15442:16;15420:52;:::i;:::-;15497:29;15519:6;15497:29;:::i;:::-;15492:3;15488:39;15481:46;;15263:270;15173:360;;;;:::o;15539:364::-;15627:3;15655:39;15688:5;15655:39;:::i;:::-;15710:71;15774:6;15769:3;15710:71;:::i;:::-;15703:78;;15790:52;15835:6;15830:3;15823:4;15816:5;15812:16;15790:52;:::i;:::-;15867:29;15889:6;15867:29;:::i;:::-;15862:3;15858:39;15851:46;;15631:272;15539:364;;;;:::o;15909:377::-;16015:3;16043:39;16076:5;16043:39;:::i;:::-;16098:89;16180:6;16175:3;16098:89;:::i;:::-;16091:96;;16196:52;16241:6;16236:3;16229:4;16222:5;16218:16;16196:52;:::i;:::-;16273:6;16268:3;16264:16;16257:23;;16019:267;15909:377;;;;:::o;16292:366::-;16434:3;16455:67;16519:2;16514:3;16455:67;:::i;:::-;16448:74;;16531:93;16620:3;16531:93;:::i;:::-;16649:2;16644:3;16640:12;16633:19;;16292:366;;;:::o;16664:::-;16806:3;16827:67;16891:2;16886:3;16827:67;:::i;:::-;16820:74;;16903:93;16992:3;16903:93;:::i;:::-;17021:2;17016:3;17012:12;17005:19;;16664:366;;;:::o;17036:::-;17178:3;17199:67;17263:2;17258:3;17199:67;:::i;:::-;17192:74;;17275:93;17364:3;17275:93;:::i;:::-;17393:2;17388:3;17384:12;17377:19;;17036:366;;;:::o;17408:::-;17550:3;17571:67;17635:2;17630:3;17571:67;:::i;:::-;17564:74;;17647:93;17736:3;17647:93;:::i;:::-;17765:2;17760:3;17756:12;17749:19;;17408:366;;;:::o;17780:::-;17922:3;17943:67;18007:2;18002:3;17943:67;:::i;:::-;17936:74;;18019:93;18108:3;18019:93;:::i;:::-;18137:2;18132:3;18128:12;18121:19;;17780:366;;;:::o;18152:::-;18294:3;18315:67;18379:2;18374:3;18315:67;:::i;:::-;18308:74;;18391:93;18480:3;18391:93;:::i;:::-;18509:2;18504:3;18500:12;18493:19;;18152:366;;;:::o;18524:::-;18666:3;18687:67;18751:2;18746:3;18687:67;:::i;:::-;18680:74;;18763:93;18852:3;18763:93;:::i;:::-;18881:2;18876:3;18872:12;18865:19;;18524:366;;;:::o;18896:::-;19038:3;19059:67;19123:2;19118:3;19059:67;:::i;:::-;19052:74;;19135:93;19224:3;19135:93;:::i;:::-;19253:2;19248:3;19244:12;19237:19;;18896:366;;;:::o;19268:::-;19410:3;19431:67;19495:2;19490:3;19431:67;:::i;:::-;19424:74;;19507:93;19596:3;19507:93;:::i;:::-;19625:2;19620:3;19616:12;19609:19;;19268:366;;;:::o;19640:::-;19782:3;19803:67;19867:2;19862:3;19803:67;:::i;:::-;19796:74;;19879:93;19968:3;19879:93;:::i;:::-;19997:2;19992:3;19988:12;19981:19;;19640:366;;;:::o;20012:::-;20154:3;20175:67;20239:2;20234:3;20175:67;:::i;:::-;20168:74;;20251:93;20340:3;20251:93;:::i;:::-;20369:2;20364:3;20360:12;20353:19;;20012:366;;;:::o;20384:::-;20526:3;20547:67;20611:2;20606:3;20547:67;:::i;:::-;20540:74;;20623:93;20712:3;20623:93;:::i;:::-;20741:2;20736:3;20732:12;20725:19;;20384:366;;;:::o;20756:::-;20898:3;20919:67;20983:2;20978:3;20919:67;:::i;:::-;20912:74;;20995:93;21084:3;20995:93;:::i;:::-;21113:2;21108:3;21104:12;21097:19;;20756:366;;;:::o;21128:::-;21270:3;21291:67;21355:2;21350:3;21291:67;:::i;:::-;21284:74;;21367:93;21456:3;21367:93;:::i;:::-;21485:2;21480:3;21476:12;21469:19;;21128:366;;;:::o;21500:::-;21642:3;21663:67;21727:2;21722:3;21663:67;:::i;:::-;21656:74;;21739:93;21828:3;21739:93;:::i;:::-;21857:2;21852:3;21848:12;21841:19;;21500:366;;;:::o;21872:::-;22014:3;22035:67;22099:2;22094:3;22035:67;:::i;:::-;22028:74;;22111:93;22200:3;22111:93;:::i;:::-;22229:2;22224:3;22220:12;22213:19;;21872:366;;;:::o;22244:::-;22386:3;22407:67;22471:2;22466:3;22407:67;:::i;:::-;22400:74;;22483:93;22572:3;22483:93;:::i;:::-;22601:2;22596:3;22592:12;22585:19;;22244:366;;;:::o;22616:::-;22758:3;22779:67;22843:2;22838:3;22779:67;:::i;:::-;22772:74;;22855:93;22944:3;22855:93;:::i;:::-;22973:2;22968:3;22964:12;22957:19;;22616:366;;;:::o;22988:::-;23130:3;23151:67;23215:2;23210:3;23151:67;:::i;:::-;23144:74;;23227:93;23316:3;23227:93;:::i;:::-;23345:2;23340:3;23336:12;23329:19;;22988:366;;;:::o;23360:::-;23502:3;23523:67;23587:2;23582:3;23523:67;:::i;:::-;23516:74;;23599:93;23688:3;23599:93;:::i;:::-;23717:2;23712:3;23708:12;23701:19;;23360:366;;;:::o;23732:::-;23874:3;23895:67;23959:2;23954:3;23895:67;:::i;:::-;23888:74;;23971:93;24060:3;23971:93;:::i;:::-;24089:2;24084:3;24080:12;24073:19;;23732:366;;;:::o;24104:::-;24246:3;24267:67;24331:2;24326:3;24267:67;:::i;:::-;24260:74;;24343:93;24432:3;24343:93;:::i;:::-;24461:2;24456:3;24452:12;24445:19;;24104:366;;;:::o;24476:::-;24618:3;24639:67;24703:2;24698:3;24639:67;:::i;:::-;24632:74;;24715:93;24804:3;24715:93;:::i;:::-;24833:2;24828:3;24824:12;24817:19;;24476:366;;;:::o;24848:::-;24990:3;25011:67;25075:2;25070:3;25011:67;:::i;:::-;25004:74;;25087:93;25176:3;25087:93;:::i;:::-;25205:2;25200:3;25196:12;25189:19;;24848:366;;;:::o;25220:::-;25362:3;25383:67;25447:2;25442:3;25383:67;:::i;:::-;25376:74;;25459:93;25548:3;25459:93;:::i;:::-;25577:2;25572:3;25568:12;25561:19;;25220:366;;;:::o;25592:::-;25734:3;25755:67;25819:2;25814:3;25755:67;:::i;:::-;25748:74;;25831:93;25920:3;25831:93;:::i;:::-;25949:2;25944:3;25940:12;25933:19;;25592:366;;;:::o;25964:::-;26106:3;26127:67;26191:2;26186:3;26127:67;:::i;:::-;26120:74;;26203:93;26292:3;26203:93;:::i;:::-;26321:2;26316:3;26312:12;26305:19;;25964:366;;;:::o;26336:::-;26478:3;26499:67;26563:2;26558:3;26499:67;:::i;:::-;26492:74;;26575:93;26664:3;26575:93;:::i;:::-;26693:2;26688:3;26684:12;26677:19;;26336:366;;;:::o;26708:::-;26850:3;26871:67;26935:2;26930:3;26871:67;:::i;:::-;26864:74;;26947:93;27036:3;26947:93;:::i;:::-;27065:2;27060:3;27056:12;27049:19;;26708:366;;;:::o;27080:108::-;27157:24;27175:5;27157:24;:::i;:::-;27152:3;27145:37;27080:108;;:::o;27194:118::-;27281:24;27299:5;27281:24;:::i;:::-;27276:3;27269:37;27194:118;;:::o;27318:157::-;27423:45;27443:24;27461:5;27443:24;:::i;:::-;27423:45;:::i;:::-;27418:3;27411:58;27318:157;;:::o;27481:435::-;27661:3;27683:95;27774:3;27765:6;27683:95;:::i;:::-;27676:102;;27795:95;27886:3;27877:6;27795:95;:::i;:::-;27788:102;;27907:3;27900:10;;27481:435;;;;;:::o;27922:679::-;28118:3;28133:75;28204:3;28195:6;28133:75;:::i;:::-;28233:2;28228:3;28224:12;28217:19;;28246:75;28317:3;28308:6;28246:75;:::i;:::-;28346:2;28341:3;28337:12;28330:19;;28359:75;28430:3;28421:6;28359:75;:::i;:::-;28459:2;28454:3;28450:12;28443:19;;28472:75;28543:3;28534:6;28472:75;:::i;:::-;28572:2;28567:3;28563:12;28556:19;;28592:3;28585:10;;27922:679;;;;;;;:::o;28607:222::-;28700:4;28738:2;28727:9;28723:18;28715:26;;28751:71;28819:1;28808:9;28804:17;28795:6;28751:71;:::i;:::-;28607:222;;;;:::o;28835:442::-;28984:4;29022:2;29011:9;29007:18;28999:26;;29035:71;29103:1;29092:9;29088:17;29079:6;29035:71;:::i;:::-;29116:72;29184:2;29173:9;29169:18;29160:6;29116:72;:::i;:::-;29198;29266:2;29255:9;29251:18;29242:6;29198:72;:::i;:::-;28835:442;;;;;;:::o;29283:640::-;29478:4;29516:3;29505:9;29501:19;29493:27;;29530:71;29598:1;29587:9;29583:17;29574:6;29530:71;:::i;:::-;29611:72;29679:2;29668:9;29664:18;29655:6;29611:72;:::i;:::-;29693;29761:2;29750:9;29746:18;29737:6;29693:72;:::i;:::-;29812:9;29806:4;29802:20;29797:2;29786:9;29782:18;29775:48;29840:76;29911:4;29902:6;29840:76;:::i;:::-;29832:84;;29283:640;;;;;;;:::o;29929:553::-;30106:4;30144:3;30133:9;30129:19;30121:27;;30158:71;30226:1;30215:9;30211:17;30202:6;30158:71;:::i;:::-;30239:72;30307:2;30296:9;30292:18;30283:6;30239:72;:::i;:::-;30321;30389:2;30378:9;30374:18;30365:6;30321:72;:::i;:::-;30403;30471:2;30460:9;30456:18;30447:6;30403:72;:::i;:::-;29929:553;;;;;;;:::o;30488:373::-;30631:4;30669:2;30658:9;30654:18;30646:26;;30718:9;30712:4;30708:20;30704:1;30693:9;30689:17;30682:47;30746:108;30849:4;30840:6;30746:108;:::i;:::-;30738:116;;30488:373;;;;:::o;30867:210::-;30954:4;30992:2;30981:9;30977:18;30969:26;;31005:65;31067:1;31056:9;31052:17;31043:6;31005:65;:::i;:::-;30867:210;;;;:::o;31083:313::-;31196:4;31234:2;31223:9;31219:18;31211:26;;31283:9;31277:4;31273:20;31269:1;31258:9;31254:17;31247:47;31311:78;31384:4;31375:6;31311:78;:::i;:::-;31303:86;;31083:313;;;;:::o;31402:419::-;31568:4;31606:2;31595:9;31591:18;31583:26;;31655:9;31649:4;31645:20;31641:1;31630:9;31626:17;31619:47;31683:131;31809:4;31683:131;:::i;:::-;31675:139;;31402:419;;;:::o;31827:::-;31993:4;32031:2;32020:9;32016:18;32008:26;;32080:9;32074:4;32070:20;32066:1;32055:9;32051:17;32044:47;32108:131;32234:4;32108:131;:::i;:::-;32100:139;;31827:419;;;:::o;32252:::-;32418:4;32456:2;32445:9;32441:18;32433:26;;32505:9;32499:4;32495:20;32491:1;32480:9;32476:17;32469:47;32533:131;32659:4;32533:131;:::i;:::-;32525:139;;32252:419;;;:::o;32677:::-;32843:4;32881:2;32870:9;32866:18;32858:26;;32930:9;32924:4;32920:20;32916:1;32905:9;32901:17;32894:47;32958:131;33084:4;32958:131;:::i;:::-;32950:139;;32677:419;;;:::o;33102:::-;33268:4;33306:2;33295:9;33291:18;33283:26;;33355:9;33349:4;33345:20;33341:1;33330:9;33326:17;33319:47;33383:131;33509:4;33383:131;:::i;:::-;33375:139;;33102:419;;;:::o;33527:::-;33693:4;33731:2;33720:9;33716:18;33708:26;;33780:9;33774:4;33770:20;33766:1;33755:9;33751:17;33744:47;33808:131;33934:4;33808:131;:::i;:::-;33800:139;;33527:419;;;:::o;33952:::-;34118:4;34156:2;34145:9;34141:18;34133:26;;34205:9;34199:4;34195:20;34191:1;34180:9;34176:17;34169:47;34233:131;34359:4;34233:131;:::i;:::-;34225:139;;33952:419;;;:::o;34377:::-;34543:4;34581:2;34570:9;34566:18;34558:26;;34630:9;34624:4;34620:20;34616:1;34605:9;34601:17;34594:47;34658:131;34784:4;34658:131;:::i;:::-;34650:139;;34377:419;;;:::o;34802:::-;34968:4;35006:2;34995:9;34991:18;34983:26;;35055:9;35049:4;35045:20;35041:1;35030:9;35026:17;35019:47;35083:131;35209:4;35083:131;:::i;:::-;35075:139;;34802:419;;;:::o;35227:::-;35393:4;35431:2;35420:9;35416:18;35408:26;;35480:9;35474:4;35470:20;35466:1;35455:9;35451:17;35444:47;35508:131;35634:4;35508:131;:::i;:::-;35500:139;;35227:419;;;:::o;35652:::-;35818:4;35856:2;35845:9;35841:18;35833:26;;35905:9;35899:4;35895:20;35891:1;35880:9;35876:17;35869:47;35933:131;36059:4;35933:131;:::i;:::-;35925:139;;35652:419;;;:::o;36077:::-;36243:4;36281:2;36270:9;36266:18;36258:26;;36330:9;36324:4;36320:20;36316:1;36305:9;36301:17;36294:47;36358:131;36484:4;36358:131;:::i;:::-;36350:139;;36077:419;;;:::o;36502:::-;36668:4;36706:2;36695:9;36691:18;36683:26;;36755:9;36749:4;36745:20;36741:1;36730:9;36726:17;36719:47;36783:131;36909:4;36783:131;:::i;:::-;36775:139;;36502:419;;;:::o;36927:::-;37093:4;37131:2;37120:9;37116:18;37108:26;;37180:9;37174:4;37170:20;37166:1;37155:9;37151:17;37144:47;37208:131;37334:4;37208:131;:::i;:::-;37200:139;;36927:419;;;:::o;37352:::-;37518:4;37556:2;37545:9;37541:18;37533:26;;37605:9;37599:4;37595:20;37591:1;37580:9;37576:17;37569:47;37633:131;37759:4;37633:131;:::i;:::-;37625:139;;37352:419;;;:::o;37777:::-;37943:4;37981:2;37970:9;37966:18;37958:26;;38030:9;38024:4;38020:20;38016:1;38005:9;38001:17;37994:47;38058:131;38184:4;38058:131;:::i;:::-;38050:139;;37777:419;;;:::o;38202:::-;38368:4;38406:2;38395:9;38391:18;38383:26;;38455:9;38449:4;38445:20;38441:1;38430:9;38426:17;38419:47;38483:131;38609:4;38483:131;:::i;:::-;38475:139;;38202:419;;;:::o;38627:::-;38793:4;38831:2;38820:9;38816:18;38808:26;;38880:9;38874:4;38870:20;38866:1;38855:9;38851:17;38844:47;38908:131;39034:4;38908:131;:::i;:::-;38900:139;;38627:419;;;:::o;39052:::-;39218:4;39256:2;39245:9;39241:18;39233:26;;39305:9;39299:4;39295:20;39291:1;39280:9;39276:17;39269:47;39333:131;39459:4;39333:131;:::i;:::-;39325:139;;39052:419;;;:::o;39477:::-;39643:4;39681:2;39670:9;39666:18;39658:26;;39730:9;39724:4;39720:20;39716:1;39705:9;39701:17;39694:47;39758:131;39884:4;39758:131;:::i;:::-;39750:139;;39477:419;;;:::o;39902:::-;40068:4;40106:2;40095:9;40091:18;40083:26;;40155:9;40149:4;40145:20;40141:1;40130:9;40126:17;40119:47;40183:131;40309:4;40183:131;:::i;:::-;40175:139;;39902:419;;;:::o;40327:::-;40493:4;40531:2;40520:9;40516:18;40508:26;;40580:9;40574:4;40570:20;40566:1;40555:9;40551:17;40544:47;40608:131;40734:4;40608:131;:::i;:::-;40600:139;;40327:419;;;:::o;40752:::-;40918:4;40956:2;40945:9;40941:18;40933:26;;41005:9;40999:4;40995:20;40991:1;40980:9;40976:17;40969:47;41033:131;41159:4;41033:131;:::i;:::-;41025:139;;40752:419;;;:::o;41177:::-;41343:4;41381:2;41370:9;41366:18;41358:26;;41430:9;41424:4;41420:20;41416:1;41405:9;41401:17;41394:47;41458:131;41584:4;41458:131;:::i;:::-;41450:139;;41177:419;;;:::o;41602:::-;41768:4;41806:2;41795:9;41791:18;41783:26;;41855:9;41849:4;41845:20;41841:1;41830:9;41826:17;41819:47;41883:131;42009:4;41883:131;:::i;:::-;41875:139;;41602:419;;;:::o;42027:::-;42193:4;42231:2;42220:9;42216:18;42208:26;;42280:9;42274:4;42270:20;42266:1;42255:9;42251:17;42244:47;42308:131;42434:4;42308:131;:::i;:::-;42300:139;;42027:419;;;:::o;42452:::-;42618:4;42656:2;42645:9;42641:18;42633:26;;42705:9;42699:4;42695:20;42691:1;42680:9;42676:17;42669:47;42733:131;42859:4;42733:131;:::i;:::-;42725:139;;42452:419;;;:::o;42877:::-;43043:4;43081:2;43070:9;43066:18;43058:26;;43130:9;43124:4;43120:20;43116:1;43105:9;43101:17;43094:47;43158:131;43284:4;43158:131;:::i;:::-;43150:139;;42877:419;;;:::o;43302:::-;43468:4;43506:2;43495:9;43491:18;43483:26;;43555:9;43549:4;43545:20;43541:1;43530:9;43526:17;43519:47;43583:131;43709:4;43583:131;:::i;:::-;43575:139;;43302:419;;;:::o;43727:222::-;43820:4;43858:2;43847:9;43843:18;43835:26;;43871:71;43939:1;43928:9;43924:17;43915:6;43871:71;:::i;:::-;43727:222;;;;:::o;43955:553::-;44132:4;44170:3;44159:9;44155:19;44147:27;;44184:71;44252:1;44241:9;44237:17;44228:6;44184:71;:::i;:::-;44265:72;44333:2;44322:9;44318:18;44309:6;44265:72;:::i;:::-;44347;44415:2;44404:9;44400:18;44391:6;44347:72;:::i;:::-;44429;44497:2;44486:9;44482:18;44473:6;44429:72;:::i;:::-;43955:553;;;;;;;:::o;44514:977::-;44795:4;44833:3;44822:9;44818:19;44810:27;;44847:71;44915:1;44904:9;44900:17;44891:6;44847:71;:::i;:::-;44928:72;44996:2;44985:9;44981:18;44972:6;44928:72;:::i;:::-;45047:9;45041:4;45037:20;45032:2;45021:9;45017:18;45010:48;45075:78;45148:4;45139:6;45075:78;:::i;:::-;45067:86;;45163:72;45231:2;45220:9;45216:18;45207:6;45163:72;:::i;:::-;45245:73;45313:3;45302:9;45298:19;45289:6;45245:73;:::i;:::-;45328;45396:3;45385:9;45381:19;45372:6;45328:73;:::i;:::-;45411;45479:3;45468:9;45464:19;45455:6;45411:73;:::i;:::-;44514:977;;;;;;;;;;:::o;45497:129::-;45531:6;45558:20;;:::i;:::-;45548:30;;45587:33;45615:4;45607:6;45587:33;:::i;:::-;45497:129;;;:::o;45632:75::-;45665:6;45698:2;45692:9;45682:19;;45632:75;:::o;45713:307::-;45774:4;45864:18;45856:6;45853:30;45850:56;;;45886:18;;:::i;:::-;45850:56;45924:29;45946:6;45924:29;:::i;:::-;45916:37;;46008:4;46002;45998:15;45990:23;;45713:307;;;:::o;46026:308::-;46088:4;46178:18;46170:6;46167:30;46164:56;;;46200:18;;:::i;:::-;46164:56;46238:29;46260:6;46238:29;:::i;:::-;46230:37;;46322:4;46316;46312:15;46304:23;;46026:308;;;:::o;46340:132::-;46407:4;46430:3;46422:11;;46460:4;46455:3;46451:14;46443:22;;46340:132;;;:::o;46478:114::-;46545:6;46579:5;46573:12;46563:22;;46478:114;;;:::o;46598:98::-;46649:6;46683:5;46677:12;46667:22;;46598:98;;;:::o;46702:99::-;46754:6;46788:5;46782:12;46772:22;;46702:99;;;:::o;46807:113::-;46877:4;46909;46904:3;46900:14;46892:22;;46807:113;;;:::o;46926:184::-;47025:11;47059:6;47054:3;47047:19;47099:4;47094:3;47090:14;47075:29;;46926:184;;;;:::o;47116:168::-;47199:11;47233:6;47228:3;47221:19;47273:4;47268:3;47264:14;47249:29;;47116:168;;;;:::o;47290:169::-;47374:11;47408:6;47403:3;47396:19;47448:4;47443:3;47439:14;47424:29;;47290:169;;;;:::o;47465:148::-;47567:11;47604:3;47589:18;;47465:148;;;;:::o;47619:305::-;47659:3;47678:20;47696:1;47678:20;:::i;:::-;47673:25;;47712:20;47730:1;47712:20;:::i;:::-;47707:25;;47866:1;47798:66;47794:74;47791:1;47788:81;47785:107;;;47872:18;;:::i;:::-;47785:107;47916:1;47913;47909:9;47902:16;;47619:305;;;;:::o;47930:185::-;47970:1;47987:20;48005:1;47987:20;:::i;:::-;47982:25;;48021:20;48039:1;48021:20;:::i;:::-;48016:25;;48060:1;48050:35;;48065:18;;:::i;:::-;48050:35;48107:1;48104;48100:9;48095:14;;47930:185;;;;:::o;48121:348::-;48161:7;48184:20;48202:1;48184:20;:::i;:::-;48179:25;;48218:20;48236:1;48218:20;:::i;:::-;48213:25;;48406:1;48338:66;48334:74;48331:1;48328:81;48323:1;48316:9;48309:17;48305:105;48302:131;;;48413:18;;:::i;:::-;48302:131;48461:1;48458;48454:9;48443:20;;48121:348;;;;:::o;48475:191::-;48515:4;48535:20;48553:1;48535:20;:::i;:::-;48530:25;;48569:20;48587:1;48569:20;:::i;:::-;48564:25;;48608:1;48605;48602:8;48599:34;;;48613:18;;:::i;:::-;48599:34;48658:1;48655;48651:9;48643:17;;48475:191;;;;:::o;48672:96::-;48709:7;48738:24;48756:5;48738:24;:::i;:::-;48727:35;;48672:96;;;:::o;48774:90::-;48808:7;48851:5;48844:13;48837:21;48826:32;;48774:90;;;:::o;48870:77::-;48907:7;48936:5;48925:16;;48870:77;;;:::o;48953:149::-;48989:7;49029:66;49022:5;49018:78;49007:89;;48953:149;;;:::o;49108:126::-;49145:7;49185:42;49178:5;49174:54;49163:65;;49108:126;;;:::o;49240:77::-;49277:7;49306:5;49295:16;;49240:77;;;:::o;49323:154::-;49407:6;49402:3;49397;49384:30;49469:1;49460:6;49455:3;49451:16;49444:27;49323:154;;;:::o;49483:307::-;49551:1;49561:113;49575:6;49572:1;49569:13;49561:113;;;49660:1;49655:3;49651:11;49645:18;49641:1;49636:3;49632:11;49625:39;49597:2;49594:1;49590:10;49585:15;;49561:113;;;49692:6;49689:1;49686:13;49683:101;;;49772:1;49763:6;49758:3;49754:16;49747:27;49683:101;49532:258;49483:307;;;:::o;49796:320::-;49840:6;49877:1;49871:4;49867:12;49857:22;;49924:1;49918:4;49914:12;49945:18;49935:81;;50001:4;49993:6;49989:17;49979:27;;49935:81;50063:2;50055:6;50052:14;50032:18;50029:38;50026:84;;;50082:18;;:::i;:::-;50026:84;49847:269;49796:320;;;:::o;50122:281::-;50205:27;50227:4;50205:27;:::i;:::-;50197:6;50193:40;50335:6;50323:10;50320:22;50299:18;50287:10;50284:34;50281:62;50278:88;;;50346:18;;:::i;:::-;50278:88;50386:10;50382:2;50375:22;50165:238;50122:281;;:::o;50409:233::-;50448:3;50471:24;50489:5;50471:24;:::i;:::-;50462:33;;50517:66;50510:5;50507:77;50504:103;;;50587:18;;:::i;:::-;50504:103;50634:1;50627:5;50623:13;50616:20;;50409:233;;;:::o;50648:100::-;50687:7;50716:26;50736:5;50716:26;:::i;:::-;50705:37;;50648:100;;;:::o;50754:94::-;50793:7;50822:20;50836:5;50822:20;:::i;:::-;50811:31;;50754:94;;;:::o;50854:79::-;50893:7;50922:5;50911:16;;50854:79;;;:::o;50939:176::-;50971:1;50988:20;51006:1;50988:20;:::i;:::-;50983:25;;51022:20;51040:1;51022:20;:::i;:::-;51017:25;;51061:1;51051:35;;51066:18;;:::i;:::-;51051:35;51107:1;51104;51100:9;51095:14;;50939:176;;;;:::o;51121:180::-;51169:77;51166:1;51159:88;51266:4;51263:1;51256:15;51290:4;51287:1;51280:15;51307:180;51355:77;51352:1;51345:88;51452:4;51449:1;51442:15;51476:4;51473:1;51466:15;51493:180;51541:77;51538:1;51531:88;51638:4;51635:1;51628:15;51662:4;51659:1;51652:15;51679:180;51727:77;51724:1;51717:88;51824:4;51821:1;51814:15;51848:4;51845:1;51838:15;51865:180;51913:77;51910:1;51903:88;52010:4;52007:1;52000:15;52034:4;52031:1;52024:15;52051:180;52099:77;52096:1;52089:88;52196:4;52193:1;52186:15;52220:4;52217:1;52210:15;52237:117;52346:1;52343;52336:12;52360:117;52469:1;52466;52459:12;52483:117;52592:1;52589;52582:12;52606:117;52715:1;52712;52705:12;52729:102;52770:6;52821:2;52817:7;52812:2;52805:5;52801:14;52797:28;52787:38;;52729:102;;;:::o;52837:94::-;52870:8;52918:5;52914:2;52910:14;52889:35;;52837:94;;;:::o;52937:224::-;53077:34;53073:1;53065:6;53061:14;53054:58;53146:7;53141:2;53133:6;53129:15;53122:32;52937:224;:::o;53167:230::-;53307:34;53303:1;53295:6;53291:14;53284:58;53376:13;53371:2;53363:6;53359:15;53352:38;53167:230;:::o;53403:237::-;53543:34;53539:1;53531:6;53527:14;53520:58;53612:20;53607:2;53599:6;53595:15;53588:45;53403:237;:::o;53646:226::-;53786:34;53782:1;53774:6;53770:14;53763:58;53855:9;53850:2;53842:6;53838:15;53831:34;53646:226;:::o;53878:225::-;54018:34;54014:1;54006:6;54002:14;53995:58;54087:8;54082:2;54074:6;54070:15;54063:33;53878:225;:::o;54109:178::-;54249:30;54245:1;54237:6;54233:14;54226:54;54109:178;:::o;54293:223::-;54433:34;54429:1;54421:6;54417:14;54410:58;54502:6;54497:2;54489:6;54485:15;54478:31;54293:223;:::o;54522:175::-;54662:27;54658:1;54650:6;54646:14;54639:51;54522:175;:::o;54703:231::-;54843:34;54839:1;54831:6;54827:14;54820:58;54912:14;54907:2;54899:6;54895:15;54888:39;54703:231;:::o;54940:236::-;55080:34;55076:1;55068:6;55064:14;55057:58;55149:19;55144:2;55136:6;55132:15;55125:44;54940:236;:::o;55182:230::-;55322:34;55318:1;55310:6;55306:14;55299:58;55391:13;55386:2;55378:6;55374:15;55367:38;55182:230;:::o;55418:226::-;55558:34;55554:1;55546:6;55542:14;55535:58;55627:9;55622:2;55614:6;55610:15;55603:34;55418:226;:::o;55650:243::-;55790:34;55786:1;55778:6;55774:14;55767:58;55859:26;55854:2;55846:6;55842:15;55835:51;55650:243;:::o;55899:229::-;56039:34;56035:1;56027:6;56023:14;56016:58;56108:12;56103:2;56095:6;56091:15;56084:37;55899:229;:::o;56134:228::-;56274:34;56270:1;56262:6;56258:14;56251:58;56343:11;56338:2;56330:6;56326:15;56319:36;56134:228;:::o;56368:182::-;56508:34;56504:1;56496:6;56492:14;56485:58;56368:182;:::o;56556:230::-;56696:34;56692:1;56684:6;56680:14;56673:58;56765:13;56760:2;56752:6;56748:15;56741:38;56556:230;:::o;56792:231::-;56932:34;56928:1;56920:6;56916:14;56909:58;57001:14;56996:2;56988:6;56984:15;56977:39;56792:231;:::o;57029:182::-;57169:34;57165:1;57157:6;57153:14;57146:58;57029:182;:::o;57217:228::-;57357:34;57353:1;57345:6;57341:14;57334:58;57426:11;57421:2;57413:6;57409:15;57402:36;57217:228;:::o;57451:234::-;57591:34;57587:1;57579:6;57575:14;57568:58;57660:17;57655:2;57647:6;57643:15;57636:42;57451:234;:::o;57691:239::-;57831:34;57827:1;57819:6;57815:14;57808:58;57900:22;57895:2;57887:6;57883:15;57876:47;57691:239;:::o;57936:232::-;58076:34;58072:1;58064:6;58060:14;58053:58;58145:15;58140:2;58132:6;58128:15;58121:40;57936:232;:::o;58174:220::-;58314:34;58310:1;58302:6;58298:14;58291:58;58383:3;58378:2;58370:6;58366:15;58359:28;58174:220;:::o;58400:223::-;58540:34;58536:1;58528:6;58524:14;58517:58;58609:6;58604:2;58596:6;58592:15;58585:31;58400:223;:::o;58629:236::-;58769:34;58765:1;58757:6;58753:14;58746:58;58838:19;58833:2;58825:6;58821:15;58814:44;58629:236;:::o;58871:179::-;59011:31;59007:1;58999:6;58995:14;58988:55;58871:179;:::o;59056:231::-;59196:34;59192:1;59184:6;59180:14;59173:58;59265:14;59260:2;59252:6;59248:15;59241:39;59056:231;:::o;59293:228::-;59433:34;59429:1;59421:6;59417:14;59410:58;59502:11;59497:2;59489:6;59485:15;59478:36;59293:228;:::o;59527:122::-;59600:24;59618:5;59600:24;:::i;:::-;59593:5;59590:35;59580:63;;59639:1;59636;59629:12;59580:63;59527:122;:::o;59655:116::-;59725:21;59740:5;59725:21;:::i;:::-;59718:5;59715:32;59705:60;;59761:1;59758;59751:12;59705:60;59655:116;:::o;59777:120::-;59849:23;59866:5;59849:23;:::i;:::-;59842:5;59839:34;59829:62;;59887:1;59884;59877:12;59829:62;59777:120;:::o;59903:122::-;59976:24;59994:5;59976:24;:::i;:::-;59969:5;59966:35;59956:63;;60015:1;60012;60005:12;59956:63;59903:122;:::o

Swarm Source

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