ETH Price: $3,161.87 (-8.90%)
Gas: 3 Gwei

Token

Yellownauts (YN)
 

Overview

Max Total Supply

2,023 YN

Holders

368

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x0df9b564c95375a5b59a2d46afe6cdb5d09c819e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Yellownauts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-26
*/

// SPDX-License-Identifier: GNU


// AE T H E R 

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity 0.8.7; 

// 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 generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity 0.8.7;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity 0.8.7;

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

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

// File: contracts/Akylles/paymentsplitter.sol



pragma solidity 0.8.7;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
     using SafeMath for uint;
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    
    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) internal virtual  {

        //  a certain percentage of shares will be given to the first 1000 who mint nfts , that is why  we will add shares to the first via the purchase function 
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        // if _shares of the account is already initialized either by the initial constructor OR minting a nft added add the number of shares based on the amount of nfts minted
        
        if( _shares[account] > 0) {

            _shares[account] = _shares[account] +  shares_ ;
             _totalShares = _totalShares + shares_;

             emit PayeeAdded(account, shares_);
        }   

        // if not a new payee will be added
        else {
            
          _payees.push(account);
          _shares[account]  = shares_;
          _totalShares = _totalShares + shares_;
          emit PayeeAdded(account, shares_);
        }
        
        
       
        
    } 
}
// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity 0.8.7;


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

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

    bool private _paused;

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity 0.8.7;


/**
 * @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() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity 0.8.7;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity 0.8.7;

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

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity 0.8.7;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity 0.8.7;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity 0.8.7;


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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity 0.8.7;


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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity 0.8.7;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity 0.8.7;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

        return array;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity 0.8.7;



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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity 0.8.7;


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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

// File: contracts/Akylles/AbstractERC1155Factory.sol



pragma solidity 0.8.7;





abstract contract AbstractERC1155Factory is Pausable,  ERC1155Burnable, Ownable {

    string name_;
    string symbol_;   
    string _obscurumuri;
    bool public  frozen   = false;
    string extension;

    
    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }    

    function setURI(string memory baseURI) external onlyOwner {
        require(frozen == false);
        _setURI(baseURI);
    }    

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }          

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity 0.8.7;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity 0.8.7;

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

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

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

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

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

// File: contracts/Akylles/Akylles.sol






//  A E T H E R  




pragma solidity 0.8.7;









contract Yellownauts is AbstractERC1155Factory, PaymentSplitter  {

    using SafeMath for uint;
    uint256 constant public MAX_SUPPLY = 2026;
    uint256 maxPerTx = 3;
    uint256 maxperaddress = 3;
    uint256 public mintPrice = 50000000000000000;
    uint256 public Idx = 0;
    bool public presaleActivated = false;
    bool public  revealed = false;
    bytes32 public merkleRoot;
    string public _uri;
    mapping(address => uint256) public purchaseTxs;
    
    event Purchased(uint256 indexed index, address indexed account, uint256 amount);
   
    constructor(
        string memory _name,
        string memory _symbol,
        string memory obscurumuri,
        string memory _extension,
        bytes32 _merkleRoot,
        address[] memory payees,
        uint256[] memory shares_
    ) ERC1155(_uri)  PaymentSplitter(payees, shares_) {
        name_ = _name;
        symbol_ = _symbol;
        _obscurumuri = obscurumuri;
        merkleRoot = _merkleRoot;
        extension = _extension;
        
    }


   

// unpause and remove all restrictions public sale ready   0.07 eth there is not max per address or max per transaction in the public sale
function setPhase2() external  onlyOwner {
        // after unpausing we will set no limits to transactions
        mintPrice = 70000000000000000;
       
        _unpause();
     
     
     
     }
     
     


function ownerOf(uint256 tokenId) external view returns (bool) {
    return balanceOf(msg.sender, tokenId) != 0;
}

   /** set merkle root for efficient   whitelisted addresses verification 
            *
            
            */
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
    


    function setPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }
    // locking metadata 4 life 

    function freezemeta() external onlyOwner {

        frozen = true;
    }

    /**
    * @notice edit sale restrictions
    *
    * @param _maxPerTx the new max amount of tokens allowed to buy in one tx
    
    */
    function editSaleRestrictions(uint8 _maxPerTx) external onlyOwner {
        maxPerTx = _maxPerTx;
        
    }
    function setPresale(bool _choice) external onlyOwner {


     presaleActivated = _choice;

                            }





    function reveal() external onlyOwner {
        revealed = true; 
   }
    

    /**
    early access sale purchase using merkle trees to verify that a address is whitelisted 
    */
    function whitelistPreSale(
        uint256 amount,
        bytes32[] calldata merkleProof
    ) external payable  {
        

        require( presaleActivated , "Early access: not available yet ");
        require(amount > 0 && amount <= maxPerTx, "Purchase: amount prohibited");
        require(purchaseTxs[msg.sender] + amount  <= maxperaddress); // require every address on the whitelist to mint a maximum of their address .
        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "MerkleDistributor: Invalid proof."
        );
        
        
      if(amount > 1) {
          
           _bulkpurchase(amount);
       }
      else { 
          _purchase(amount);
          } 
    
       
    }




 
    function purchase(uint256 amount) external payable whenNotPaused {
        
       
        if(amount > 1) {
           
           
            
           _bulkpurchase(amount);
       }
      else { 
          
          _purchase(amount);
          } 


    }

    /**
    * @notice global purchase function 
    
    used in early access and public sale
    *
    * @param amount the amount of tokens to purchase
    */


    
    // during opening of the public sale theres no limit  for minting and owning tokens in transactions.

    function _purchase(uint256 amount ) private {
        
      
        require(amount > 0 , "amount cant be zero ");
        require(Idx + amount <= MAX_SUPPLY , "Purchase: Max supply of 2026 reached");
        require(msg.value == amount * mintPrice, "Purchase: Incorrect payment");
        Idx += 1;
        purchaseTxs[msg.sender] += 1;
        _mint(msg.sender,Idx, amount, "");
        emit Purchased(Idx, msg.sender, amount);
    }

// this function is used to bulk purchase Unique nfts.
      function _bulkpurchase(uint256 amount ) private {
        require(Idx + amount <= MAX_SUPPLY, "Purchase: Max supply reached ");
        require(msg.value == amount * mintPrice, "Purchase: Incorrect payment XX");
        uint256[] memory ids = new uint256[](amount);
        uint256[] memory values = new uint256[](amount);
        Idx += amount; 
        uint256  iterator =  Idx;

        for(uint i = 0 ; i < amount; i++){

            ids[i] = iterator; // line up Unique NFTs ID in  a array.   

            iterator = iterator-1; 

            values[i] = 1; // for Unique Nfts  Supply of every ID MUST be one .1   to be injected in the _mintBatch function     
        }
        
         purchaseTxs[msg.sender] += amount;
        _mintBatch(msg.sender, ids,values, "");
        
         emit Purchased(Idx, msg.sender, amount);
        
        
    }
    // airdrop nft function for owner only to be able to  airdrop Unique nfts 
   function airdrop(address payable reciever, uint256 amount ) external onlyOwner() {
       
       require(Idx + amount <= MAX_SUPPLY, "Max supply of 2026 reached");
       require(amount >= 1, "nonzero err");
        
         if(amount == 1)  {
            Idx += 1;
           _mint(reciever, Idx, 1 , "");

       } 
       else {
           
        uint256[] memory ids = new uint256[](amount);
        uint256[] memory values = new uint256[](amount);
        Idx += amount; 
        uint256  iterator =  Idx;

        for(uint i = 0 ; i < amount; i++){

            ids[i] = iterator; // line up Unique NFTs ID in  a array.   
           
            iterator = iterator-1; 

            values[i] = 1; // for Unique Nfts  Supply of every ID MUST be one .1   to be injected in the _mintBatch function     
        }
        
       
        _mintBatch(reciever, ids,values, "");
       }
       
       
   }
    
   
    function release(address payable account) public override {
        require(msg.sender == account || msg.sender == owner(), "Release: no permission");

        super.release(account);

    }

    function sethiddenuri(string memory huri) external onlyOwner() {
        _obscurumuri = huri;

    }
    function uri(uint256 _id) public view override returns (string memory) {
                require(_id <= Idx, "Id deos not exist " );
                return revealed ? string(abi.encodePacked(super.uri(_id),Strings.toString(_id)  , extension)) : _obscurumuri ;

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"obscurumuri","type":"string"},{"internalType":"string","name":"_extension","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares_","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Purchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"Idx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"reciever","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxPerTx","type":"uint8"}],"name":"editSaleRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezemeta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchaseTxs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_choice","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"huri","type":"string"}],"name":"sethiddenuri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistPreSale","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526008805460ff191690556003600f81905560105566b1a2bc2ec5000060115560006012556013805461ffff191690553480156200004057600080fd5b50604051620041b1380380620041b1833981016040819052620000639162000747565b8181601580546200007490620008cd565b80601f0160208091040260200160405190810160405280929190818152602001828054620000a290620008cd565b8015620000f35780601f10620000c757610100808354040283529160200191620000f3565b820191906000526020600020905b815481529060010190602001808311620000d557829003601f168201915b50506000805460ff1916600117905550620001129150829050620002bc565b506200011e33620002d5565b8051825114620001905760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001e35760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000187565b60005b82518110156200024f576200023a8382815181106200020957620002096200093e565b60200260200101518383815181106200022657620002266200093e565b60200260200101516200032760201b60201c565b8062000246816200090a565b915050620001e6565b5050875162000267915060059060208a019062000507565b5085516200027d90600690602089019062000507565b5084516200029390600790602088019062000507565b5060148390558351620002ae90600990602087019062000507565b50505050505050506200096a565b8051620002d190600390602084019062000507565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003945760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000187565b60008111620003e65760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000187565b6001600160a01b0382166000908152600c6020526040902054156200049d576001600160a01b0382166000908152600c60205260409020546200042b908290620008b2565b6001600160a01b0383166000908152600c6020526040902055600a5462000454908290620008b2565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a5462000454908290620008b2565b8280546200051590620008cd565b90600052602060002090601f01602090048101928262000539576000855562000584565b82601f106200055457805160ff191683800117855562000584565b8280016001018555821562000584579182015b828111156200058457825182559160200191906001019062000567565b506200059292915062000596565b5090565b5b8082111562000592576000815560010162000597565b600082601f830112620005bf57600080fd5b81516020620005d8620005d2836200088c565b62000859565b80838252828201915082860187848660051b8901011115620005f957600080fd5b6000805b86811015620006305782516001600160a01b03811681146200061d578283fd5b85529385019391850191600101620005fd565b509198975050505050505050565b600082601f8301126200065057600080fd5b8151602062000663620005d2836200088c565b80838252828201915082860187848660051b89010111156200068457600080fd5b60005b85811015620006a55781518452928401929084019060010162000687565b5090979650505050505050565b600082601f830112620006c457600080fd5b81516001600160401b03811115620006e057620006e062000954565b6020620006f6601f8301601f1916820162000859565b82815285828487010111156200070b57600080fd5b60005b838110156200072b5785810183015182820184015282016200070e565b838111156200073d5760008385840101525b5095945050505050565b600080600080600080600060e0888a0312156200076357600080fd5b87516001600160401b03808211156200077b57600080fd5b620007898b838c01620006b2565b985060208a0151915080821115620007a057600080fd5b620007ae8b838c01620006b2565b975060408a0151915080821115620007c557600080fd5b620007d38b838c01620006b2565b965060608a0151915080821115620007ea57600080fd5b620007f88b838c01620006b2565b955060808a0151945060a08a01519150808211156200081657600080fd5b620008248b838c01620005ad565b935060c08a01519150808211156200083b57600080fd5b506200084a8a828b016200063e565b91505092959891949750929550565b604051601f8201601f191681016001600160401b038111828210171562000884576200088462000954565b604052919050565b60006001600160401b03821115620008a857620008a862000954565b5060051b60200190565b60008219821115620008c857620008c862000928565b500190565b600181811c90821680620008e257607f821691505b602082108114156200090457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000921576200092162000928565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b613837806200097a6000396000f3fe6080604052600436106102505760003560e01c80636b20c45411610139578063a475b5dd116100b6578063e985e9c51161007a578063e985e9c514610685578063efef39a1146106ce578063f242432a146106e1578063f2fde38b14610701578063f5298aca14610721578063f86850301461074157600080fd5b8063a475b5dd146105ed578063ac543b7b14610602578063c54e73e314610615578063ce7c2ac214610635578063e4c94fa11461066b57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461055057806391b7f5ed1461057857806395d89b41146105985780639c019d59146105ad578063a22cb465146105cd57600080fd5b80636b20c454146104c6578063715018a6146104e65780637cb64759146104fb5780638456cb591461051b5780638ba4cc3c1461053057600080fd5b80632eb4a7ab116101d25780635183022711610196578063518302271461042f57806356dda5871461044e57806358c94fe9146104635780635c975abb146104785780636352211e146104905780636817c76c146104b057600080fd5b80632eb4a7ab146103ab57806332cb6b0c146103c15780633f4ba83a146103d757806349047863146103ec5780634e1273f41461040257600080fd5b80630dccc9ad116102195780630dccc9ad146103165780630e89341c1461032b578063191655871461034b5780632016ba961461036b5780632eb2c2d61461038b57600080fd5b8062fdd58e1461025557806301ffc9a71461028857806302fe5305146102b8578063054f7d9c146102da57806306fdde03146102f4575b600080fd5b34801561026157600080fd5b50610275610270366004612c89565b61076e565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004612fe8565b610807565b604051901515815260200161027f565b3480156102c457600080fd5b506102d86102d3366004613022565b610859565b005b3480156102e657600080fd5b506008546102a89060ff1681565b34801561030057600080fd5b5061030961089f565b60405161027f919061331a565b34801561032257600080fd5b50610309610931565b34801561033757600080fd5b50610309610346366004612fcf565b6109bf565b34801561035757600080fd5b506102d8610366366004612c6c565b610ae2565b34801561037757600080fd5b506102d8610386366004613022565b610b51565b34801561039757600080fd5b506102d86103a6366004612cee565b610b92565b3480156103b757600080fd5b5061027560145481565b3480156103cd57600080fd5b506102756107ea81565b3480156103e357600080fd5b506102d8610c29565b3480156103f857600080fd5b5061027560125481565b34801561040e57600080fd5b5061042261041d366004612ee2565b610c5d565b60405161027f91906132d9565b34801561043b57600080fd5b506013546102a890610100900460ff1681565b34801561045a57600080fd5b506102d8610d86565b34801561046f57600080fd5b506102d8610dc3565b34801561048457600080fd5b5060005460ff166102a8565b34801561049c57600080fd5b506102a86104ab366004612fcf565b610dfc565b3480156104bc57600080fd5b5061027560115481565b3480156104d257600080fd5b506102d86104e1366004612e03565b610e10565b3480156104f257600080fd5b506102d8610e58565b34801561050757600080fd5b506102d8610516366004612fcf565b610e8c565b34801561052757600080fd5b506102d8610ebb565b34801561053c57600080fd5b506102d861054b366004612c89565b610eed565b34801561055c57600080fd5b506004546040516001600160a01b03909116815260200161027f565b34801561058457600080fd5b506102d8610593366004612fcf565b61111f565b3480156105a457600080fd5b5061030961114e565b3480156105b957600080fd5b506102d86105c83660046130e8565b61115d565b3480156105d957600080fd5b506102d86105e8366004612e78565b61118f565b3480156105f957600080fd5b506102d861119a565b6102d861061036600461306a565b6111d5565b34801561062157600080fd5b506102d8610630366004612fb4565b6113a4565b34801561064157600080fd5b50610275610650366004612c6c565b6001600160a01b03166000908152600c602052604090205490565b34801561067757600080fd5b506013546102a89060ff1681565b34801561069157600080fd5b506102a86106a0366004612cb5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102d86106dc366004612fcf565b6113e1565b3480156106ed57600080fd5b506102d86106fc366004612d9b565b611442565b34801561070d57600080fd5b506102d861071c366004612c6c565b611487565b34801561072d57600080fd5b506102d861073c366004612ead565b61151f565b34801561074d57600080fd5b5061027561075c366004612c6c565b60166020526000908152604090205481565b60006001600160a01b0383166107df5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061083857506001600160e01b031982166303a24d0760e21b145b8061085357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146108835760405162461bcd60e51b81526004016107d6906134d4565b60085460ff161561089357600080fd5b61089c81611562565b50565b6060600580546108ae90613643565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90613643565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b6015805461093e90613643565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90613643565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b505050505081565b6060601254821115610a085760405162461bcd60e51b8152602060048201526012602482015271024b2103232b7b9903737ba1032bc34b9ba160751b60448201526064016107d6565b601354610100900460ff16610aa75760078054610a2490613643565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090613643565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050610853565b610ab082611575565b610ab983611609565b6009604051602001610acd93929190613172565b60405160208183030381529060405292915050565b336001600160a01b0382161480610b0357506004546001600160a01b031633145b610b485760405162461bcd60e51b81526020600482015260166024820152752932b632b0b9b29d103737903832b936b4b9b9b4b7b760511b60448201526064016107d6565b61089c8161170e565b6004546001600160a01b03163314610b7b5760405162461bcd60e51b81526004016107d6906134d4565b8051610b8e906007906020840190612ac3565b5050565b6001600160a01b038516331480610bae5750610bae85336106a0565b610c155760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107d6565b610c2285858585856118df565b5050505050565b6004546001600160a01b03163314610c535760405162461bcd60e51b81526004016107d6906134d4565b610c5b611a7e565b565b60608151835114610cc25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016107d6565b600083516001600160401b03811115610cdd57610cdd61371b565b604051908082528060200260200182016040528015610d06578160200160208202803683370190505b50905060005b8451811015610d7e57610d51858281518110610d2a57610d2a613705565b6020026020010151858381518110610d4457610d44613705565b602002602001015161076e565b828281518110610d6357610d63613705565b6020908102919091010152610d77816136aa565b9050610d0c565b509392505050565b6004546001600160a01b03163314610db05760405162461bcd60e51b81526004016107d6906134d4565b66f8b0a10e470000601155610c5b611a7e565b6004546001600160a01b03163314610ded5760405162461bcd60e51b81526004016107d6906134d4565b6008805460ff19166001179055565b6000610e08338361076e565b151592915050565b6001600160a01b038316331480610e2c5750610e2c83336106a0565b610e485760405162461bcd60e51b81526004016107d6906133b9565b610e53838383611b11565b505050565b6004546001600160a01b03163314610e825760405162461bcd60e51b81526004016107d6906134d4565b610c5b6000611c90565b6004546001600160a01b03163314610eb65760405162461bcd60e51b81526004016107d6906134d4565b601455565b6004546001600160a01b03163314610ee55760405162461bcd60e51b81526004016107d6906134d4565b610c5b611ce2565b6004546001600160a01b03163314610f175760405162461bcd60e51b81526004016107d6906134d4565b6107ea81601254610f2891906135b5565b1115610f765760405162461bcd60e51b815260206004820152601a60248201527f4d617820737570706c79206f662032303236207265616368656400000000000060448201526064016107d6565b6001811015610fb55760405162461bcd60e51b815260206004820152600b60248201526a3737b73d32b9379032b93960a91b60448201526064016107d6565b8060011415610ff657600160126000828254610fd191906135b5565b92505081905550610b8e82601254600160405180602001604052806000815250611d5d565b6000816001600160401b038111156110105761101061371b565b604051908082528060200260200182016040528015611039578160200160208202803683370190505b5090506000826001600160401b038111156110565761105661371b565b60405190808252806020026020018201604052801561107f578160200160208202803683370190505b509050826012600082825461109491906135b5565b909155505060125460005b8481101561110357818482815181106110ba576110ba613705565b60209081029190910101526110d0600183613600565b915060018382815181106110e6576110e6613705565b6020908102919091010152806110fb816136aa565b91505061109f565b50610c2285848460405180602001604052806000815250611e2f565b6004546001600160a01b031633146111495760405162461bcd60e51b81526004016107d6906134d4565b601155565b6060600680546108ae90613643565b6004546001600160a01b031633146111875760405162461bcd60e51b81526004016107d6906134d4565b60ff16600f55565b610b8e338383611f7b565b6004546001600160a01b031633146111c45760405162461bcd60e51b81526004016107d6906134d4565b6013805461ff001916610100179055565b60135460ff166112275760405162461bcd60e51b815260206004820181905260248201527f4561726c79206163636573733a206e6f7420617661696c61626c65207965742060448201526064016107d6565b6000831180156112395750600f548311155b6112855760405162461bcd60e51b815260206004820152601b60248201527f50757263686173653a20616d6f756e742070726f68696269746564000000000060448201526064016107d6565b601054336000908152601660205260409020546112a39085906135b5565b11156112ae57600080fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061132883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061205c565b61137e5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016107d6565b60018411156113955761139084612072565b61139e565b61139e846122ba565b50505050565b6004546001600160a01b031633146113ce5760405162461bcd60e51b81526004016107d6906134d4565b6013805460ff1916911515919091179055565b60005460ff16156114275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107d6565b60018111156114395761089c81612072565b61089c816122ba565b6001600160a01b03851633148061145e575061145e85336106a0565b61147a5760405162461bcd60e51b81526004016107d6906133b9565b610c22858585858561245f565b6004546001600160a01b031633146114b15760405162461bcd60e51b81526004016107d6906134d4565b6001600160a01b0381166115165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d6565b61089c81611c90565b6001600160a01b03831633148061153b575061153b83336106a0565b6115575760405162461bcd60e51b81526004016107d6906133b9565b610e53838383612580565b8051610b8e906003906020840190612ac3565b60606003805461158490613643565b80601f01602080910402602001604051908101604052809291908181526020018280546115b090613643565b80156115fd5780601f106115d2576101008083540402835291602001916115fd565b820191906000526020600020905b8154815290600101906020018083116115e057829003601f168201915b50505050509050919050565b60608161162d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116575780611641816136aa565b91506116509050600a836135cd565b9150611631565b6000816001600160401b038111156116715761167161371b565b6040519080825280601f01601f19166020018201604052801561169b576020820181803683370190505b5090505b8415611706576116b0600183613600565b91506116bd600a866136c5565b6116c89060306135b5565b60f81b8183815181106116dd576116dd613705565b60200101906001600160f81b031916908160001a9053506116ff600a866135cd565b945061169f565b949350505050565b6001600160a01b0381166000908152600c60205260409020546117825760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016107d6565b6000600b544761179291906135b5565b6001600160a01b0383166000908152600d6020908152604080832054600a54600c9093529083205493945091926117c990856135e1565b6117d391906135cd565b6117dd9190613600565b9050806118405760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016107d6565b6001600160a01b0383166000908152600d60205260409020546118649082906135b5565b6001600160a01b0384166000908152600d6020526040902055600b5461188b9082906135b5565b600b556118988382612686565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b81518351146119005760405162461bcd60e51b81526004016107d690613509565b6001600160a01b0384166119265760405162461bcd60e51b81526004016107d690613402565b3360005b8451811015611a1057600085828151811061194757611947613705565b60200260200101519050600085838151811061196557611965613705565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156119b65760405162461bcd60e51b81526004016107d69061348a565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906119f59084906135b5565b9250508190555050505080611a09906136aa565b905061192a565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a609291906132ec565b60405180910390a4611a7681878787878761279f565b505050505050565b60005460ff16611ac75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107d6565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038316611b375760405162461bcd60e51b81526004016107d690613447565b8051825114611b585760405162461bcd60e51b81526004016107d690613509565b604080516020810190915260009081905233905b8351811015611c31576000848281518110611b8957611b89613705565b602002602001015190506000848381518110611ba757611ba7613705565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015611bf85760405162461bcd60e51b81526004016107d690613375565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580611c29816136aa565b915050611b6c565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611c829291906132ec565b60405180910390a450505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005460ff1615611d285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107d6565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611af43390565b6001600160a01b038416611d835760405162461bcd60e51b81526004016107d690613551565b33611d9d81600087611d948861290a565b610c228861290a565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611dcf9084906135b5565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c2281600087878787612955565b6001600160a01b038416611e555760405162461bcd60e51b81526004016107d690613551565b8151835114611e765760405162461bcd60e51b81526004016107d690613509565b3360005b8451811015611f1357838181518110611e9557611e95613705565b602002602001015160016000878481518110611eb357611eb3613705565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611efb91906135b5565b90915550819050611f0b816136aa565b915050611e7a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f649291906132ec565b60405180910390a4610c228160008787878761279f565b816001600160a01b0316836001600160a01b03161415611fef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016107d6565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826120698584612a1f565b14949350505050565b6107ea8160125461208391906135b5565b11156120d15760405162461bcd60e51b815260206004820152601d60248201527f50757263686173653a204d617820737570706c7920726561636865642000000060448201526064016107d6565b6011546120de90826135e1565b341461212c5760405162461bcd60e51b815260206004820152601e60248201527f50757263686173653a20496e636f7272656374207061796d656e74205858000060448201526064016107d6565b6000816001600160401b038111156121465761214661371b565b60405190808252806020026020018201604052801561216f578160200160208202803683370190505b5090506000826001600160401b0381111561218c5761218c61371b565b6040519080825280602002602001820160405280156121b5578160200160208202803683370190505b50905082601260008282546121ca91906135b5565b909155505060125460005b8481101561223957818482815181106121f0576121f0613705565b6020908102919091010152612206600183613600565b9150600183828151811061221c5761221c613705565b602090810291909101015280612231816136aa565b9150506121d5565b5033600090815260166020526040812080548692906122599084906135b5565b9250508190555061227b33848460405180602001604052806000815250611e2f565b6012546040518581523391907ffd51b2c9f55c42d2b72ac683526519563be02fc0107f034ff430c05185ff1b669060200160405180910390a350505050565b600081116123015760405162461bcd60e51b8152602060048201526014602482015273030b6b7bab73a1031b0b73a103132903d32b937960651b60448201526064016107d6565b6107ea8160125461231291906135b5565b111561236c5760405162461bcd60e51b8152602060048201526024808201527f50757263686173653a204d617820737570706c79206f6620323032362072656160448201526318da195960e21b60648201526084016107d6565b60115461237990826135e1565b34146123c75760405162461bcd60e51b815260206004820152601b60248201527f50757263686173653a20496e636f7272656374207061796d656e74000000000060448201526064016107d6565b6001601260008282546123da91906135b5565b90915550503360009081526016602052604081208054600192906123ff9084906135b5565b92505081905550612423336012548360405180602001604052806000815250611d5d565b6012546040518281523391907ffd51b2c9f55c42d2b72ac683526519563be02fc0107f034ff430c05185ff1b669060200160405180910390a350565b6001600160a01b0384166124855760405162461bcd60e51b81526004016107d690613402565b33612495818787611d948861290a565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156124d85760405162461bcd60e51b81526004016107d69061348a565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906125179084906135b5565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612577828888888888612955565b50505050505050565b6001600160a01b0383166125a65760405162461bcd60e51b81526004016107d690613447565b336125d6818560006125b78761290a565b6125c08761290a565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b0388168452909152902054828110156126195760405162461bcd60e51b81526004016107d690613375565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b804710156126d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107d6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612723576040519150601f19603f3d011682016040523d82523d6000602084013e612728565b606091505b5050905080610e535760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107d6565b6001600160a01b0384163b15611a765760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906127e39089908990889088908890600401613236565b602060405180830381600087803b1580156127fd57600080fd5b505af192505050801561282d575060408051601f3d908101601f1916820190925261282a91810190613005565b60015b6128da57612839613731565b806308c379a01415612873575061284e61374d565b806128595750612875565b8060405162461bcd60e51b81526004016107d6919061331a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016107d6565b6001600160e01b0319811663bc197c8160e01b146125775760405162461bcd60e51b81526004016107d69061332d565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061294457612944613705565b602090810291909101015292915050565b6001600160a01b0384163b15611a765760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906129999089908990889088908890600401613294565b602060405180830381600087803b1580156129b357600080fd5b505af19250505080156129e3575060408051601f3d908101601f191682019092526129e091810190613005565b60015b6129ef57612839613731565b6001600160e01b0319811663f23a6e6160e01b146125775760405162461bcd60e51b81526004016107d69061332d565b600081815b8451811015610d7e576000858281518110612a4157612a41613705565b60200260200101519050808311612a83576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612ab0565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612abb816136aa565b915050612a24565b828054612acf90613643565b90600052602060002090601f016020900481019282612af15760008555612b37565b82601f10612b0a57805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b37578251825591602001919060010190612b1c565b50612b43929150612b47565b5090565b5b80821115612b435760008155600101612b48565b60006001600160401b03831115612b7557612b7561371b565b604051612b8c601f8501601f19166020018261367e565b809150838152848484011115612ba157600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612bca57600080fd5b81356020612bd782613592565b604051612be4828261367e565b8381528281019150858301600585901b87018401881015612c0457600080fd5b60005b85811015612c2357813584529284019290840190600101612c07565b5090979650505050505050565b80358015158114612c4057600080fd5b919050565b600082601f830112612c5657600080fd5b612c6583833560208501612b5c565b9392505050565b600060208284031215612c7e57600080fd5b8135612c65816137d6565b60008060408385031215612c9c57600080fd5b8235612ca7816137d6565b946020939093013593505050565b60008060408385031215612cc857600080fd5b8235612cd3816137d6565b91506020830135612ce3816137d6565b809150509250929050565b600080600080600060a08688031215612d0657600080fd5b8535612d11816137d6565b94506020860135612d21816137d6565b935060408601356001600160401b0380821115612d3d57600080fd5b612d4989838a01612bb9565b94506060880135915080821115612d5f57600080fd5b612d6b89838a01612bb9565b93506080880135915080821115612d8157600080fd5b50612d8e88828901612c45565b9150509295509295909350565b600080600080600060a08688031215612db357600080fd5b8535612dbe816137d6565b94506020860135612dce816137d6565b9350604086013592506060860135915060808601356001600160401b03811115612df757600080fd5b612d8e88828901612c45565b600080600060608486031215612e1857600080fd5b8335612e23816137d6565b925060208401356001600160401b0380821115612e3f57600080fd5b612e4b87838801612bb9565b93506040860135915080821115612e6157600080fd5b50612e6e86828701612bb9565b9150509250925092565b60008060408385031215612e8b57600080fd5b8235612e96816137d6565b9150612ea460208401612c30565b90509250929050565b600080600060608486031215612ec257600080fd5b8335612ecd816137d6565b95602085013595506040909401359392505050565b60008060408385031215612ef557600080fd5b82356001600160401b0380821115612f0c57600080fd5b818501915085601f830112612f2057600080fd5b81356020612f2d82613592565b604051612f3a828261367e565b8381528281019150858301600585901b870184018b1015612f5a57600080fd5b600096505b84871015612f86578035612f72816137d6565b835260019690960195918301918301612f5f565b5096505086013592505080821115612f9d57600080fd5b50612faa85828601612bb9565b9150509250929050565b600060208284031215612fc657600080fd5b612c6582612c30565b600060208284031215612fe157600080fd5b5035919050565b600060208284031215612ffa57600080fd5b8135612c65816137eb565b60006020828403121561301757600080fd5b8151612c65816137eb565b60006020828403121561303457600080fd5b81356001600160401b0381111561304a57600080fd5b8201601f8101841361305b57600080fd5b61170684823560208401612b5c565b60008060006040848603121561307f57600080fd5b8335925060208401356001600160401b038082111561309d57600080fd5b818601915086601f8301126130b157600080fd5b8135818111156130c057600080fd5b8760208260051b85010111156130d557600080fd5b6020830194508093505050509250925092565b6000602082840312156130fa57600080fd5b813560ff81168114612c6557600080fd5b600081518084526020808501945080840160005b8381101561313b5781518752958201959082019060010161311f565b509495945050505050565b6000815180845261315e816020860160208601613617565b601f01601f19169290920160200192915050565b6000845160206131858285838a01613617565b8551918401916131988184848a01613617565b8554920191600090600181811c90808316806131b557607f831692505b8583108114156131d357634e487b7160e01b85526022600452602485fd5b8080156131e757600181146131f857613225565b60ff19851688528388019550613225565b60008b81526020902060005b8581101561321d5781548a820152908401908801613204565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906132629083018661310b565b8281036060840152613274818661310b565b905082810360808401526132888185613146565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906132ce90830184613146565b979650505050505050565b602081526000612c65602083018461310b565b6040815260006132ff604083018561310b565b8281036020840152613311818561310b565b95945050505050565b602081526000612c656020830184613146565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60006001600160401b038211156135ab576135ab61371b565b5060051b60200190565b600082198211156135c8576135c86136d9565b500190565b6000826135dc576135dc6136ef565b500490565b60008160001904831182151516156135fb576135fb6136d9565b500290565b600082821015613612576136126136d9565b500390565b60005b8381101561363257818101518382015260200161361a565b8381111561139e5750506000910152565b600181811c9082168061365757607f821691505b6020821081141561367857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156136a3576136a361371b565b6040525050565b60006000198214156136be576136be6136d9565b5060010190565b6000826136d4576136d46136ef565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561374a5760046000803e5060005160e01c5b90565b600060443d101561375b5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561378a57505050505090565b82850191508151818111156137a25750505050505090565b843d87010160208285010111156137bc5750505050505090565b6137cb6020828601018761367e565b509095945050505050565b6001600160a01b038116811461089c57600080fd5b6001600160e01b03198116811461089c57600080fdfea264697066735822122015f5e562bb19fe719da655ff0812dfb70680cc24e6d5da614ceea438c5a4866964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c09650f9cf50529870dcf410850dbd3631ebe94cd80040c000a5878f4126a168b400000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000b59656c6c6f776e617574730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002594e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d536e5a396463783435346663644344556358354b79554e44487364753861785a696b694b70323853436256592f682e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000beb3b8bd01a842be859a5a92ca3758132c08b54600000000000000000000000011ceb840abd76c65d7a053ff06fee216769c00aa000000000000000000000000ba7cd318b0860052ebb1ad8e7475d1319f90558f00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000003

Deployed Bytecode

0x6080604052600436106102505760003560e01c80636b20c45411610139578063a475b5dd116100b6578063e985e9c51161007a578063e985e9c514610685578063efef39a1146106ce578063f242432a146106e1578063f2fde38b14610701578063f5298aca14610721578063f86850301461074157600080fd5b8063a475b5dd146105ed578063ac543b7b14610602578063c54e73e314610615578063ce7c2ac214610635578063e4c94fa11461066b57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461055057806391b7f5ed1461057857806395d89b41146105985780639c019d59146105ad578063a22cb465146105cd57600080fd5b80636b20c454146104c6578063715018a6146104e65780637cb64759146104fb5780638456cb591461051b5780638ba4cc3c1461053057600080fd5b80632eb4a7ab116101d25780635183022711610196578063518302271461042f57806356dda5871461044e57806358c94fe9146104635780635c975abb146104785780636352211e146104905780636817c76c146104b057600080fd5b80632eb4a7ab146103ab57806332cb6b0c146103c15780633f4ba83a146103d757806349047863146103ec5780634e1273f41461040257600080fd5b80630dccc9ad116102195780630dccc9ad146103165780630e89341c1461032b578063191655871461034b5780632016ba961461036b5780632eb2c2d61461038b57600080fd5b8062fdd58e1461025557806301ffc9a71461028857806302fe5305146102b8578063054f7d9c146102da57806306fdde03146102f4575b600080fd5b34801561026157600080fd5b50610275610270366004612c89565b61076e565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004612fe8565b610807565b604051901515815260200161027f565b3480156102c457600080fd5b506102d86102d3366004613022565b610859565b005b3480156102e657600080fd5b506008546102a89060ff1681565b34801561030057600080fd5b5061030961089f565b60405161027f919061331a565b34801561032257600080fd5b50610309610931565b34801561033757600080fd5b50610309610346366004612fcf565b6109bf565b34801561035757600080fd5b506102d8610366366004612c6c565b610ae2565b34801561037757600080fd5b506102d8610386366004613022565b610b51565b34801561039757600080fd5b506102d86103a6366004612cee565b610b92565b3480156103b757600080fd5b5061027560145481565b3480156103cd57600080fd5b506102756107ea81565b3480156103e357600080fd5b506102d8610c29565b3480156103f857600080fd5b5061027560125481565b34801561040e57600080fd5b5061042261041d366004612ee2565b610c5d565b60405161027f91906132d9565b34801561043b57600080fd5b506013546102a890610100900460ff1681565b34801561045a57600080fd5b506102d8610d86565b34801561046f57600080fd5b506102d8610dc3565b34801561048457600080fd5b5060005460ff166102a8565b34801561049c57600080fd5b506102a86104ab366004612fcf565b610dfc565b3480156104bc57600080fd5b5061027560115481565b3480156104d257600080fd5b506102d86104e1366004612e03565b610e10565b3480156104f257600080fd5b506102d8610e58565b34801561050757600080fd5b506102d8610516366004612fcf565b610e8c565b34801561052757600080fd5b506102d8610ebb565b34801561053c57600080fd5b506102d861054b366004612c89565b610eed565b34801561055c57600080fd5b506004546040516001600160a01b03909116815260200161027f565b34801561058457600080fd5b506102d8610593366004612fcf565b61111f565b3480156105a457600080fd5b5061030961114e565b3480156105b957600080fd5b506102d86105c83660046130e8565b61115d565b3480156105d957600080fd5b506102d86105e8366004612e78565b61118f565b3480156105f957600080fd5b506102d861119a565b6102d861061036600461306a565b6111d5565b34801561062157600080fd5b506102d8610630366004612fb4565b6113a4565b34801561064157600080fd5b50610275610650366004612c6c565b6001600160a01b03166000908152600c602052604090205490565b34801561067757600080fd5b506013546102a89060ff1681565b34801561069157600080fd5b506102a86106a0366004612cb5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102d86106dc366004612fcf565b6113e1565b3480156106ed57600080fd5b506102d86106fc366004612d9b565b611442565b34801561070d57600080fd5b506102d861071c366004612c6c565b611487565b34801561072d57600080fd5b506102d861073c366004612ead565b61151f565b34801561074d57600080fd5b5061027561075c366004612c6c565b60166020526000908152604090205481565b60006001600160a01b0383166107df5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061083857506001600160e01b031982166303a24d0760e21b145b8061085357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146108835760405162461bcd60e51b81526004016107d6906134d4565b60085460ff161561089357600080fd5b61089c81611562565b50565b6060600580546108ae90613643565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90613643565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b6015805461093e90613643565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90613643565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b505050505081565b6060601254821115610a085760405162461bcd60e51b8152602060048201526012602482015271024b2103232b7b9903737ba1032bc34b9ba160751b60448201526064016107d6565b601354610100900460ff16610aa75760078054610a2490613643565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090613643565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050610853565b610ab082611575565b610ab983611609565b6009604051602001610acd93929190613172565b60405160208183030381529060405292915050565b336001600160a01b0382161480610b0357506004546001600160a01b031633145b610b485760405162461bcd60e51b81526020600482015260166024820152752932b632b0b9b29d103737903832b936b4b9b9b4b7b760511b60448201526064016107d6565b61089c8161170e565b6004546001600160a01b03163314610b7b5760405162461bcd60e51b81526004016107d6906134d4565b8051610b8e906007906020840190612ac3565b5050565b6001600160a01b038516331480610bae5750610bae85336106a0565b610c155760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107d6565b610c2285858585856118df565b5050505050565b6004546001600160a01b03163314610c535760405162461bcd60e51b81526004016107d6906134d4565b610c5b611a7e565b565b60608151835114610cc25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016107d6565b600083516001600160401b03811115610cdd57610cdd61371b565b604051908082528060200260200182016040528015610d06578160200160208202803683370190505b50905060005b8451811015610d7e57610d51858281518110610d2a57610d2a613705565b6020026020010151858381518110610d4457610d44613705565b602002602001015161076e565b828281518110610d6357610d63613705565b6020908102919091010152610d77816136aa565b9050610d0c565b509392505050565b6004546001600160a01b03163314610db05760405162461bcd60e51b81526004016107d6906134d4565b66f8b0a10e470000601155610c5b611a7e565b6004546001600160a01b03163314610ded5760405162461bcd60e51b81526004016107d6906134d4565b6008805460ff19166001179055565b6000610e08338361076e565b151592915050565b6001600160a01b038316331480610e2c5750610e2c83336106a0565b610e485760405162461bcd60e51b81526004016107d6906133b9565b610e53838383611b11565b505050565b6004546001600160a01b03163314610e825760405162461bcd60e51b81526004016107d6906134d4565b610c5b6000611c90565b6004546001600160a01b03163314610eb65760405162461bcd60e51b81526004016107d6906134d4565b601455565b6004546001600160a01b03163314610ee55760405162461bcd60e51b81526004016107d6906134d4565b610c5b611ce2565b6004546001600160a01b03163314610f175760405162461bcd60e51b81526004016107d6906134d4565b6107ea81601254610f2891906135b5565b1115610f765760405162461bcd60e51b815260206004820152601a60248201527f4d617820737570706c79206f662032303236207265616368656400000000000060448201526064016107d6565b6001811015610fb55760405162461bcd60e51b815260206004820152600b60248201526a3737b73d32b9379032b93960a91b60448201526064016107d6565b8060011415610ff657600160126000828254610fd191906135b5565b92505081905550610b8e82601254600160405180602001604052806000815250611d5d565b6000816001600160401b038111156110105761101061371b565b604051908082528060200260200182016040528015611039578160200160208202803683370190505b5090506000826001600160401b038111156110565761105661371b565b60405190808252806020026020018201604052801561107f578160200160208202803683370190505b509050826012600082825461109491906135b5565b909155505060125460005b8481101561110357818482815181106110ba576110ba613705565b60209081029190910101526110d0600183613600565b915060018382815181106110e6576110e6613705565b6020908102919091010152806110fb816136aa565b91505061109f565b50610c2285848460405180602001604052806000815250611e2f565b6004546001600160a01b031633146111495760405162461bcd60e51b81526004016107d6906134d4565b601155565b6060600680546108ae90613643565b6004546001600160a01b031633146111875760405162461bcd60e51b81526004016107d6906134d4565b60ff16600f55565b610b8e338383611f7b565b6004546001600160a01b031633146111c45760405162461bcd60e51b81526004016107d6906134d4565b6013805461ff001916610100179055565b60135460ff166112275760405162461bcd60e51b815260206004820181905260248201527f4561726c79206163636573733a206e6f7420617661696c61626c65207965742060448201526064016107d6565b6000831180156112395750600f548311155b6112855760405162461bcd60e51b815260206004820152601b60248201527f50757263686173653a20616d6f756e742070726f68696269746564000000000060448201526064016107d6565b601054336000908152601660205260409020546112a39085906135b5565b11156112ae57600080fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061132883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061205c565b61137e5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016107d6565b60018411156113955761139084612072565b61139e565b61139e846122ba565b50505050565b6004546001600160a01b031633146113ce5760405162461bcd60e51b81526004016107d6906134d4565b6013805460ff1916911515919091179055565b60005460ff16156114275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107d6565b60018111156114395761089c81612072565b61089c816122ba565b6001600160a01b03851633148061145e575061145e85336106a0565b61147a5760405162461bcd60e51b81526004016107d6906133b9565b610c22858585858561245f565b6004546001600160a01b031633146114b15760405162461bcd60e51b81526004016107d6906134d4565b6001600160a01b0381166115165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d6565b61089c81611c90565b6001600160a01b03831633148061153b575061153b83336106a0565b6115575760405162461bcd60e51b81526004016107d6906133b9565b610e53838383612580565b8051610b8e906003906020840190612ac3565b60606003805461158490613643565b80601f01602080910402602001604051908101604052809291908181526020018280546115b090613643565b80156115fd5780601f106115d2576101008083540402835291602001916115fd565b820191906000526020600020905b8154815290600101906020018083116115e057829003601f168201915b50505050509050919050565b60608161162d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116575780611641816136aa565b91506116509050600a836135cd565b9150611631565b6000816001600160401b038111156116715761167161371b565b6040519080825280601f01601f19166020018201604052801561169b576020820181803683370190505b5090505b8415611706576116b0600183613600565b91506116bd600a866136c5565b6116c89060306135b5565b60f81b8183815181106116dd576116dd613705565b60200101906001600160f81b031916908160001a9053506116ff600a866135cd565b945061169f565b949350505050565b6001600160a01b0381166000908152600c60205260409020546117825760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016107d6565b6000600b544761179291906135b5565b6001600160a01b0383166000908152600d6020908152604080832054600a54600c9093529083205493945091926117c990856135e1565b6117d391906135cd565b6117dd9190613600565b9050806118405760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016107d6565b6001600160a01b0383166000908152600d60205260409020546118649082906135b5565b6001600160a01b0384166000908152600d6020526040902055600b5461188b9082906135b5565b600b556118988382612686565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b81518351146119005760405162461bcd60e51b81526004016107d690613509565b6001600160a01b0384166119265760405162461bcd60e51b81526004016107d690613402565b3360005b8451811015611a1057600085828151811061194757611947613705565b60200260200101519050600085838151811061196557611965613705565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156119b65760405162461bcd60e51b81526004016107d69061348a565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906119f59084906135b5565b9250508190555050505080611a09906136aa565b905061192a565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a609291906132ec565b60405180910390a4611a7681878787878761279f565b505050505050565b60005460ff16611ac75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107d6565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038316611b375760405162461bcd60e51b81526004016107d690613447565b8051825114611b585760405162461bcd60e51b81526004016107d690613509565b604080516020810190915260009081905233905b8351811015611c31576000848281518110611b8957611b89613705565b602002602001015190506000848381518110611ba757611ba7613705565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015611bf85760405162461bcd60e51b81526004016107d690613375565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580611c29816136aa565b915050611b6c565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611c829291906132ec565b60405180910390a450505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005460ff1615611d285760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107d6565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611af43390565b6001600160a01b038416611d835760405162461bcd60e51b81526004016107d690613551565b33611d9d81600087611d948861290a565b610c228861290a565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611dcf9084906135b5565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c2281600087878787612955565b6001600160a01b038416611e555760405162461bcd60e51b81526004016107d690613551565b8151835114611e765760405162461bcd60e51b81526004016107d690613509565b3360005b8451811015611f1357838181518110611e9557611e95613705565b602002602001015160016000878481518110611eb357611eb3613705565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611efb91906135b5565b90915550819050611f0b816136aa565b915050611e7a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f649291906132ec565b60405180910390a4610c228160008787878761279f565b816001600160a01b0316836001600160a01b03161415611fef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016107d6565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826120698584612a1f565b14949350505050565b6107ea8160125461208391906135b5565b11156120d15760405162461bcd60e51b815260206004820152601d60248201527f50757263686173653a204d617820737570706c7920726561636865642000000060448201526064016107d6565b6011546120de90826135e1565b341461212c5760405162461bcd60e51b815260206004820152601e60248201527f50757263686173653a20496e636f7272656374207061796d656e74205858000060448201526064016107d6565b6000816001600160401b038111156121465761214661371b565b60405190808252806020026020018201604052801561216f578160200160208202803683370190505b5090506000826001600160401b0381111561218c5761218c61371b565b6040519080825280602002602001820160405280156121b5578160200160208202803683370190505b50905082601260008282546121ca91906135b5565b909155505060125460005b8481101561223957818482815181106121f0576121f0613705565b6020908102919091010152612206600183613600565b9150600183828151811061221c5761221c613705565b602090810291909101015280612231816136aa565b9150506121d5565b5033600090815260166020526040812080548692906122599084906135b5565b9250508190555061227b33848460405180602001604052806000815250611e2f565b6012546040518581523391907ffd51b2c9f55c42d2b72ac683526519563be02fc0107f034ff430c05185ff1b669060200160405180910390a350505050565b600081116123015760405162461bcd60e51b8152602060048201526014602482015273030b6b7bab73a1031b0b73a103132903d32b937960651b60448201526064016107d6565b6107ea8160125461231291906135b5565b111561236c5760405162461bcd60e51b8152602060048201526024808201527f50757263686173653a204d617820737570706c79206f6620323032362072656160448201526318da195960e21b60648201526084016107d6565b60115461237990826135e1565b34146123c75760405162461bcd60e51b815260206004820152601b60248201527f50757263686173653a20496e636f7272656374207061796d656e74000000000060448201526064016107d6565b6001601260008282546123da91906135b5565b90915550503360009081526016602052604081208054600192906123ff9084906135b5565b92505081905550612423336012548360405180602001604052806000815250611d5d565b6012546040518281523391907ffd51b2c9f55c42d2b72ac683526519563be02fc0107f034ff430c05185ff1b669060200160405180910390a350565b6001600160a01b0384166124855760405162461bcd60e51b81526004016107d690613402565b33612495818787611d948861290a565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156124d85760405162461bcd60e51b81526004016107d69061348a565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906125179084906135b5565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612577828888888888612955565b50505050505050565b6001600160a01b0383166125a65760405162461bcd60e51b81526004016107d690613447565b336125d6818560006125b78761290a565b6125c08761290a565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b0388168452909152902054828110156126195760405162461bcd60e51b81526004016107d690613375565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b804710156126d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107d6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612723576040519150601f19603f3d011682016040523d82523d6000602084013e612728565b606091505b5050905080610e535760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107d6565b6001600160a01b0384163b15611a765760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906127e39089908990889088908890600401613236565b602060405180830381600087803b1580156127fd57600080fd5b505af192505050801561282d575060408051601f3d908101601f1916820190925261282a91810190613005565b60015b6128da57612839613731565b806308c379a01415612873575061284e61374d565b806128595750612875565b8060405162461bcd60e51b81526004016107d6919061331a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016107d6565b6001600160e01b0319811663bc197c8160e01b146125775760405162461bcd60e51b81526004016107d69061332d565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061294457612944613705565b602090810291909101015292915050565b6001600160a01b0384163b15611a765760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906129999089908990889088908890600401613294565b602060405180830381600087803b1580156129b357600080fd5b505af19250505080156129e3575060408051601f3d908101601f191682019092526129e091810190613005565b60015b6129ef57612839613731565b6001600160e01b0319811663f23a6e6160e01b146125775760405162461bcd60e51b81526004016107d69061332d565b600081815b8451811015610d7e576000858281518110612a4157612a41613705565b60200260200101519050808311612a83576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612ab0565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612abb816136aa565b915050612a24565b828054612acf90613643565b90600052602060002090601f016020900481019282612af15760008555612b37565b82601f10612b0a57805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b37578251825591602001919060010190612b1c565b50612b43929150612b47565b5090565b5b80821115612b435760008155600101612b48565b60006001600160401b03831115612b7557612b7561371b565b604051612b8c601f8501601f19166020018261367e565b809150838152848484011115612ba157600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612bca57600080fd5b81356020612bd782613592565b604051612be4828261367e565b8381528281019150858301600585901b87018401881015612c0457600080fd5b60005b85811015612c2357813584529284019290840190600101612c07565b5090979650505050505050565b80358015158114612c4057600080fd5b919050565b600082601f830112612c5657600080fd5b612c6583833560208501612b5c565b9392505050565b600060208284031215612c7e57600080fd5b8135612c65816137d6565b60008060408385031215612c9c57600080fd5b8235612ca7816137d6565b946020939093013593505050565b60008060408385031215612cc857600080fd5b8235612cd3816137d6565b91506020830135612ce3816137d6565b809150509250929050565b600080600080600060a08688031215612d0657600080fd5b8535612d11816137d6565b94506020860135612d21816137d6565b935060408601356001600160401b0380821115612d3d57600080fd5b612d4989838a01612bb9565b94506060880135915080821115612d5f57600080fd5b612d6b89838a01612bb9565b93506080880135915080821115612d8157600080fd5b50612d8e88828901612c45565b9150509295509295909350565b600080600080600060a08688031215612db357600080fd5b8535612dbe816137d6565b94506020860135612dce816137d6565b9350604086013592506060860135915060808601356001600160401b03811115612df757600080fd5b612d8e88828901612c45565b600080600060608486031215612e1857600080fd5b8335612e23816137d6565b925060208401356001600160401b0380821115612e3f57600080fd5b612e4b87838801612bb9565b93506040860135915080821115612e6157600080fd5b50612e6e86828701612bb9565b9150509250925092565b60008060408385031215612e8b57600080fd5b8235612e96816137d6565b9150612ea460208401612c30565b90509250929050565b600080600060608486031215612ec257600080fd5b8335612ecd816137d6565b95602085013595506040909401359392505050565b60008060408385031215612ef557600080fd5b82356001600160401b0380821115612f0c57600080fd5b818501915085601f830112612f2057600080fd5b81356020612f2d82613592565b604051612f3a828261367e565b8381528281019150858301600585901b870184018b1015612f5a57600080fd5b600096505b84871015612f86578035612f72816137d6565b835260019690960195918301918301612f5f565b5096505086013592505080821115612f9d57600080fd5b50612faa85828601612bb9565b9150509250929050565b600060208284031215612fc657600080fd5b612c6582612c30565b600060208284031215612fe157600080fd5b5035919050565b600060208284031215612ffa57600080fd5b8135612c65816137eb565b60006020828403121561301757600080fd5b8151612c65816137eb565b60006020828403121561303457600080fd5b81356001600160401b0381111561304a57600080fd5b8201601f8101841361305b57600080fd5b61170684823560208401612b5c565b60008060006040848603121561307f57600080fd5b8335925060208401356001600160401b038082111561309d57600080fd5b818601915086601f8301126130b157600080fd5b8135818111156130c057600080fd5b8760208260051b85010111156130d557600080fd5b6020830194508093505050509250925092565b6000602082840312156130fa57600080fd5b813560ff81168114612c6557600080fd5b600081518084526020808501945080840160005b8381101561313b5781518752958201959082019060010161311f565b509495945050505050565b6000815180845261315e816020860160208601613617565b601f01601f19169290920160200192915050565b6000845160206131858285838a01613617565b8551918401916131988184848a01613617565b8554920191600090600181811c90808316806131b557607f831692505b8583108114156131d357634e487b7160e01b85526022600452602485fd5b8080156131e757600181146131f857613225565b60ff19851688528388019550613225565b60008b81526020902060005b8581101561321d5781548a820152908401908801613204565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906132629083018661310b565b8281036060840152613274818661310b565b905082810360808401526132888185613146565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906132ce90830184613146565b979650505050505050565b602081526000612c65602083018461310b565b6040815260006132ff604083018561310b565b8281036020840152613311818561310b565b95945050505050565b602081526000612c656020830184613146565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60006001600160401b038211156135ab576135ab61371b565b5060051b60200190565b600082198211156135c8576135c86136d9565b500190565b6000826135dc576135dc6136ef565b500490565b60008160001904831182151516156135fb576135fb6136d9565b500290565b600082821015613612576136126136d9565b500390565b60005b8381101561363257818101518382015260200161361a565b8381111561139e5750506000910152565b600181811c9082168061365757607f821691505b6020821081141561367857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156136a3576136a361371b565b6040525050565b60006000198214156136be576136be6136d9565b5060010190565b6000826136d4576136d46136ef565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561374a5760046000803e5060005160e01c5b90565b600060443d101561375b5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561378a57505050505090565b82850191508151818111156137a25750505050505090565b843d87010160208285010111156137bc5750505050505090565b6137cb6020828601018761367e565b509095945050505050565b6001600160a01b038116811461089c57600080fd5b6001600160e01b03198116811461089c57600080fdfea264697066735822122015f5e562bb19fe719da655ff0812dfb70680cc24e6d5da614ceea438c5a4866964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c09650f9cf50529870dcf410850dbd3631ebe94cd80040c000a5878f4126a168b400000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000b59656c6c6f776e617574730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002594e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d536e5a396463783435346663644344556358354b79554e44487364753861785a696b694b70323853436256592f682e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000beb3b8bd01a842be859a5a92ca3758132c08b54600000000000000000000000011ceb840abd76c65d7a053ff06fee216769c00aa000000000000000000000000ba7cd318b0860052ebb1ad8e7475d1319f90558f00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000003

-----Decoded View---------------
Arg [0] : _name (string): Yellownauts
Arg [1] : _symbol (string): YN
Arg [2] : obscurumuri (string): ipfs://QmSnZ9dcx454fcdCDUcX5KyUNDHsdu8axZikiKp28SCbVY/h.json
Arg [3] : _extension (string): .json
Arg [4] : _merkleRoot (bytes32): 0x9650f9cf50529870dcf410850dbd3631ebe94cd80040c000a5878f4126a168b4
Arg [5] : payees (address[]): 0xbeB3B8BD01a842Be859A5a92cA3758132C08B546,0x11cEb840abD76C65d7A053FF06fee216769C00aa,0xBa7Cd318b0860052eBB1AD8E7475D1319f90558F
Arg [6] : shares_ (uint256[]): 2,95,3

-----Encoded View---------------
24 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 9650f9cf50529870dcf410850dbd3631ebe94cd80040c000a5878f4126a168b4
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 59656c6c6f776e61757473000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [10] : 594e000000000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [12] : 697066733a2f2f516d536e5a396463783435346663644344556358354b79554e
Arg [13] : 44487364753861785a696b694b70323853436256592f682e6a736f6e00000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [15] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [17] : 000000000000000000000000beb3b8bd01a842be859a5a92ca3758132c08b546
Arg [18] : 00000000000000000000000011ceb840abd76c65d7a053ff06fee216769c00aa
Arg [19] : 000000000000000000000000ba7cd318b0860052ebb1ad8e7475d1319f90558f
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [22] : 000000000000000000000000000000000000000000000000000000000000005f
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000003


Deployed Bytecode Sourcemap

63084:7063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40957:231;;;;;;;;;;-1:-1:-1;40957:231:0;;;;;:::i;:::-;;:::i;:::-;;;16092:25:1;;;16080:2;16065:18;40957:231:0;;;;;;;;39980:310;;;;;;;;;;-1:-1:-1;39980:310:0;;;;;:::i;:::-;;:::i;:::-;;;15919:14:1;;15912:22;15894:41;;15882:2;15867:18;39980:310:0;15754:187:1;56298:128:0;;;;;;;;;;-1:-1:-1;56298:128:0;;;;;:::i;:::-;;:::i;:::-;;56081:29;;;;;;;;;;-1:-1:-1;56081:29:0;;;;;;;;56438:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63486:18::-;;;;;;;;;;;;;:::i;69874:270::-;;;;;;;;;;-1:-1:-1;69874:270:0;;;;;:::i;:::-;;:::i;69562:195::-;;;;;;;;;;-1:-1:-1;69562:195:0;;;;;:::i;:::-;;:::i;69765:103::-;;;;;;;;;;-1:-1:-1;69765:103:0;;;;;:::i;:::-;;:::i;42896:442::-;;;;;;;;;;-1:-1:-1;42896:442:0;;;;;:::i;:::-;;:::i;63454:25::-;;;;;;;;;;;;;;;;63188:41;;;;;;;;;;;;63225:4;63188:41;;56219:67;;;;;;;;;;;;;:::i;63346:22::-;;;;;;;;;;;;;;;;41354:524;;;;;;;;;;-1:-1:-1;41354:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63418:29::-;;;;;;;;;;-1:-1:-1;63418:29:0;;;;;;;;;;;64288:207;;;;;;;;;;;;;:::i;65021:75::-;;;;;;;;;;;;;:::i;21544:86::-;;;;;;;;;;-1:-1:-1;21591:4:0;21615:7;;;21544:86;;64515:116;;;;;;;;;;-1:-1:-1;64515:116:0;;;;;:::i;:::-;;:::i;63295:44::-;;;;;;;;;;;;;;;;55468:353;;;;;;;;;;-1:-1:-1;55468:353:0;;;;;:::i;:::-;;:::i;24452:103::-;;;;;;;;;;;;;:::i;64760:106::-;;;;;;;;;;-1:-1:-1;64760:106:0;;;;;:::i;:::-;;:::i;56148:63::-;;;;;;;;;;;;;:::i;68600:945::-;;;;;;;;;;-1:-1:-1;68600:945:0;;;;;:::i;:::-;;:::i;23801:87::-;;;;;;;;;;-1:-1:-1;23874:6:0;;23801:87;;-1:-1:-1;;;;;23874:6:0;;;13273:51:1;;13261:2;13246:18;23801:87:0;13127:203:1;64882:98:0;;;;;;;;;;-1:-1:-1;64882:98:0;;;;;:::i;:::-;;:::i;56529:87::-;;;;;;;;;;;;;:::i;65250:115::-;;;;;;;;;;-1:-1:-1;65250:115:0;;;;;:::i;:::-;;:::i;41951:155::-;;;;;;;;;;-1:-1:-1;41951:155:0;;;;;:::i;:::-;;:::i;65512:71::-;;;;;;;;;;;;;:::i;65706:826::-;;;;;;:::i;:::-;;:::i;65371:125::-;;;;;;;;;;-1:-1:-1;65371:125:0;;;;;:::i;:::-;;:::i;18196:105::-;;;;;;;;;;-1:-1:-1;18196:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;18277:16:0;18250:7;18277:16;;;:7;:16;;;;;;;18196:105;63375:36;;;;;;;;;;-1:-1:-1;63375:36:0;;;;;;;;42178:168;;;;;;;;;;-1:-1:-1;42178:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;42301:27:0;;;42277:4;42301:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;42178:168;66549:278;;;;;;:::i;:::-;;:::i;42418:401::-;;;;;;;;;;-1:-1:-1;42418:401:0;;;;;:::i;:::-;;:::i;24710:201::-;;;;;;;;;;-1:-1:-1;24710:201:0;;;;;:::i;:::-;;:::i;55139:321::-;;;;;;;;;;-1:-1:-1;55139:321:0;;;;;:::i;:::-;;:::i;63511:46::-;;;;;;;;;;-1:-1:-1;63511:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;40957:231;41043:7;-1:-1:-1;;;;;41071:21:0;;41063:77;;;;-1:-1:-1;;;41063:77:0;;18447:2:1;41063:77:0;;;18429:21:1;18486:2;18466:18;;;18459:30;18525:34;18505:18;;;18498:62;-1:-1:-1;;;18576:18:1;;;18569:41;18627:19;;41063:77:0;;;;;;;;;-1:-1:-1;41158:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;41158:22:0;;;;;;;;;;;;40957:231::o;39980:310::-;40082:4;-1:-1:-1;;;;;;40119:41:0;;-1:-1:-1;;;40119:41:0;;:110;;-1:-1:-1;;;;;;;40177:52:0;;-1:-1:-1;;;40177:52:0;40119:110;:163;;;-1:-1:-1;;;;;;;;;;31448:40:0;;;40246:36;40099:183;39980:310;-1:-1:-1;;39980:310:0:o;56298:128::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;56375:6:::1;::::0;::::1;;:15;56367:24;;;::::0;::::1;;56402:16;56410:7;56402;:16::i;:::-;56298:128:::0;:::o;56438:83::-;56475:13;56508:5;56501:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56438:83;:::o;63486:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69874:270::-;69930:13;69979:3;;69972;:10;;69964:42;;;;-1:-1:-1;;;69964:42:0;;25892:2:1;69964:42:0;;;25874:21:1;25931:2;25911:18;;;25904:30;-1:-1:-1;;;25950:18:1;;;25943:48;26008:18;;69964:42:0;25690:342:1;69964:42:0;70032:8;;;;;;;:101;;70121:12;70032:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70067:14;70077:3;70067:9;:14::i;:::-;70082:21;70099:3;70082:16;:21::i;:::-;70107:9;70050:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70025:108;69874:270;-1:-1:-1;;69874:270:0:o;69562:195::-;69639:10;-1:-1:-1;;;;;69639:21:0;;;;:46;;-1:-1:-1;23874:6:0;;-1:-1:-1;;;;;23874:6:0;69664:10;:21;69639:46;69631:81;;;;-1:-1:-1;;;69631:81:0;;27817:2:1;69631:81:0;;;27799:21:1;27856:2;27836:18;;;27829:30;-1:-1:-1;;;27875:18:1;;;27868:52;27937:18;;69631:81:0;27615:346:1;69631:81:0;69725:22;69739:7;69725:13;:22::i;69765:103::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;69839:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;69765:103:::0;:::o;42896:442::-;-1:-1:-1;;;;;43129:20:0;;15928:10;43129:20;;:60;;-1:-1:-1;43153:36:0;43170:4;15928:10;42178:168;:::i;43153:36::-;43107:160;;;;-1:-1:-1;;;43107:160:0;;23178:2:1;43107:160:0;;;23160:21:1;23217:2;23197:18;;;23190:30;23256:34;23236:18;;;23229:62;-1:-1:-1;;;23307:18:1;;;23300:48;23365:19;;43107:160:0;22976:414:1;43107:160:0;43278:52;43301:4;43307:2;43311:3;43316:7;43325:4;43278:22;:52::i;:::-;42896:442;;;;;:::o;56219:67::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;56268:10:::1;:8;:10::i;:::-;56219:67::o:0;41354:524::-;41510:16;41571:3;:10;41552:8;:15;:29;41544:83;;;;-1:-1:-1;;;41544:83:0;;26649:2:1;41544:83:0;;;26631:21:1;26688:2;26668:18;;;26661:30;26727:34;26707:18;;;26700:62;-1:-1:-1;;;26778:18:1;;;26771:39;26827:19;;41544:83:0;26447:405:1;41544:83:0;41640:30;41687:8;:15;-1:-1:-1;;;;;41673:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41673:30:0;;41640:63;;41721:9;41716:122;41740:8;:15;41736:1;:19;41716:122;;;41796:30;41806:8;41815:1;41806:11;;;;;;;;:::i;:::-;;;;;;;41819:3;41823:1;41819:6;;;;;;;;:::i;:::-;;;;;;;41796:9;:30::i;:::-;41777:13;41791:1;41777:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;41757:3;;;:::i;:::-;;;41716:122;;;-1:-1:-1;41857:13:0;41354:524;-1:-1:-1;;;41354:524:0:o;64288:207::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;64418:17:::1;64406:9;:29:::0;64455:10:::1;:8;:10::i;65021:75::-:0;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;65075:6:::1;:13:::0;;-1:-1:-1;;65075:13:0::1;65084:4;65075:13;::::0;;65021:75::o;64515:116::-;64572:4;64592:30;64602:10;64614:7;64592:9;:30::i;:::-;:35;;;64515:116;-1:-1:-1;;64515:116:0:o;55468:353::-;-1:-1:-1;;;;;55633:23:0;;15928:10;55633:23;;:66;;-1:-1:-1;55660:39:0;55677:7;15928:10;42178:168;:::i;55660:39::-;55611:157;;;;-1:-1:-1;;;55611:157:0;;;;;;;:::i;:::-;55781:32;55792:7;55801:3;55806:6;55781:10;:32::i;:::-;55468:353;;;:::o;24452:103::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;24517:30:::1;24544:1;24517:18;:30::i;64760:106::-:0;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;64834:10:::1;:24:::0;64760:106::o;56148:63::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;56195:8:::1;:6;:8::i;68600:945::-:0;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;63225:4:::1;68714:6;68708:3;;:12;;;;:::i;:::-;:26;;68700:65;;;::::0;-1:-1:-1;;;68700:65:0;;25132:2:1;68700:65:0::1;::::0;::::1;25114:21:1::0;25171:2;25151:18;;;25144:30;25210:28;25190:18;;;25183:56;25256:18;;68700:65:0::1;24930:350:1::0;68700:65:0::1;68793:1;68783:6;:11;;68775:35;;;::::0;-1:-1:-1;;;68775:35:0;;20488:2:1;68775:35:0::1;::::0;::::1;20470:21:1::0;20527:2;20507:18;;;20500:30;-1:-1:-1;;;20546:18:1;;;20539:41;20597:18;;68775:35:0::1;20286:335:1::0;68775:35:0::1;68835:6;68845:1;68835:11;68832:689;;;68871:1;68864:3;;:8;;;;;;;:::i;:::-;;;;;;;;68886:28;68892:8;68902:3;;68907:1;68886:28;;;;;;;;;;;::::0;:5:::1;:28::i;68832:689::-;68966:20;69003:6;-1:-1:-1::0;;;;;68989:21:0::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;68989:21:0::1;;68966:44;;69021:23;69061:6;-1:-1:-1::0;;;;;69047:21:0::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;69047:21:0::1;;69021:47;;69086:6;69079:3;;:13;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;69125:3:0::1;::::0;69104:17:::1;69141:304;69162:6;69158:1;:10;69141:304;;;69200:8;69191:3;69195:1;69191:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:17;69289:10:::1;69298:1;69289:8:::0;:10:::1;:::i;:::-;69278:21;;69329:1;69317:6;69324:1;69317:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:13;69170:3;::::1;::::0;::::1;:::i;:::-;;;;69141:304;;;;69474:36;69485:8;69495:3;69499:6;69474:36;;;;;;;;;;;::::0;:10:::1;:36::i;64882:98::-:0;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;64950:9:::1;:22:::0;64882:98::o;56529:87::-;56568:13;56601:7;56594:14;;;;;:::i;65250:115::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;65327:20:::1;;:8;:20:::0;65250:115::o;41951:155::-;42046:52;15928:10;42079:8;42089;42046:18;:52::i;65512:71::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;65560:8:::1;:15:::0;;-1:-1:-1;;65560:15:0::1;;;::::0;;65512:71::o;65706:826::-;65855:16;;;;65846:63;;;;-1:-1:-1;;;65846:63:0;;28570:2:1;65846:63:0;;;28552:21:1;;;28589:18;;;28582:30;28648:34;28628:18;;;28621:62;28700:18;;65846:63:0;28368:356:1;65846:63:0;65937:1;65928:6;:10;:32;;;;;65952:8;;65942:6;:18;;65928:32;65920:72;;;;-1:-1:-1;;;65920:72:0;;17384:2:1;65920:72:0;;;17366:21:1;17423:2;17403:18;;;17396:30;17462:29;17442:18;;;17435:57;17509:18;;65920:72:0;17182:351:1;65920:72:0;66048:13;;66023:10;66011:23;;;;:11;:23;;;;;;:32;;66037:6;;66011:32;:::i;:::-;:50;;66003:59;;;;;;66177:28;;-1:-1:-1;;66194:10:0;11048:2:1;11044:15;11040:53;66177:28:0;;;11028:66:1;66152:12:0;;11110::1;;66177:28:0;;;;;;;;;;;;66167:39;;;;;;66152:54;;66239:49;66258:11;;66239:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66271:10:0;;;-1:-1:-1;66283:4:0;;-1:-1:-1;66239:18:0;:49::i;:::-;66217:132;;;;-1:-1:-1;;;66217:132:0;;22370:2:1;66217:132:0;;;22352:21:1;22409:2;22389:18;;;22382:30;22448:34;22428:18;;;22421:62;-1:-1:-1;;;22499:18:1;;;22492:31;22540:19;;66217:132:0;22168:397:1;66217:132:0;66390:1;66381:6;:10;66378:131;;;66419:21;66433:6;66419:13;:21::i;:::-;66378:131;;;66478:17;66488:6;66478:9;:17::i;:::-;65823:709;65706:826;;;:::o;65371:125::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;65436:16:::1;:26:::0;;-1:-1:-1;;65436:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65371:125::o;66549:278::-;21591:4;21615:7;;;21869:9;21861:38;;;;-1:-1:-1;;;21861:38:0;;22025:2:1;21861:38:0;;;22007:21:1;22064:2;22044:18;;;22037:30;-1:-1:-1;;;22083:18:1;;;22076:46;22139:18;;21861:38:0;21823:340:1;21861:38:0;66656:1:::1;66647:6;:10;66644:171;;;66713:21;66727:6;66713:13;:21::i;66644:171::-;66784:17;66794:6;66784:9;:17::i;42418:401::-:0;-1:-1:-1;;;;;42626:20:0;;15928:10;42626:20;;:60;;-1:-1:-1;42650:36:0;42667:4;15928:10;42178:168;:::i;42650:36::-;42604:151;;;;-1:-1:-1;;;42604:151:0;;;;;;;:::i;:::-;42766:45;42784:4;42790:2;42794;42798:6;42806:4;42766:17;:45::i;24710:201::-;23874:6;;-1:-1:-1;;;;;23874:6:0;15928:10;24021:23;24013:68;;;;-1:-1:-1;;;24013:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24799:22:0;::::1;24791:73;;;::::0;-1:-1:-1;;;24791:73:0;;18859:2:1;24791:73:0::1;::::0;::::1;18841:21:1::0;18898:2;18878:18;;;18871:30;18937:34;18917:18;;;18910:62;-1:-1:-1;;;18988:18:1;;;18981:36;19034:19;;24791:73:0::1;18657:402:1::0;24791:73:0::1;24875:28;24894:8;24875:18;:28::i;55139:321::-:0;-1:-1:-1;;;;;55279:23:0;;15928:10;55279:23;;:66;;-1:-1:-1;55306:39:0;55323:7;15928:10;42178:168;:::i;55306:39::-;55257:157;;;;-1:-1:-1;;;55257:157:0;;;;;;;:::i;:::-;55427:25;55433:7;55442:2;55446:5;55427;:25::i;46898:88::-;46965:13;;;;:4;;:13;;;;;:::i;40701:105::-;40761:13;40794:4;40787:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40701:105;;;:::o;25633:723::-;25689:13;25910:10;25906:53;;-1:-1:-1;;25937:10:0;;;;;;;;;;;;-1:-1:-1;;;25937:10:0;;;;;25633:723::o;25906:53::-;25984:5;25969:12;26025:78;26032:9;;26025:78;;26058:8;;;;:::i;:::-;;-1:-1:-1;26081:10:0;;-1:-1:-1;26089:2:0;26081:10;;:::i;:::-;;;26025:78;;;26113:19;26145:6;-1:-1:-1;;;;;26135:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26135:17:0;;26113:39;;26163:154;26170:10;;26163:154;;26197:11;26207:1;26197:11;;:::i;:::-;;-1:-1:-1;26266:10:0;26274:2;26266:5;:10;:::i;:::-;26253:24;;:2;:24;:::i;:::-;26240:39;;26223:6;26230;26223:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26223:56:0;;;;;;;;-1:-1:-1;26294:11:0;26303:2;26294:11;;:::i;:::-;;;26163:154;;;26341:6;25633:723;-1:-1:-1;;;;25633:723:0:o;18501:613::-;-1:-1:-1;;;;;18577:16:0;;18596:1;18577:16;;;:7;:16;;;;;;18569:71;;;;-1:-1:-1;;;18569:71:0;;20081:2:1;18569:71:0;;;20063:21:1;20120:2;20100:18;;;20093:30;20159:34;20139:18;;;20132:62;-1:-1:-1;;;20210:18:1;;;20203:36;20256:19;;18569:71:0;19879:402:1;18569:71:0;18653:21;18701:14;;18677:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;18796:18:0;;18726:15;18796:18;;;:9;:18;;;;;;;;;18781:12;;18761:7;:16;;;;;;;18653:62;;-1:-1:-1;18726:15:0;;18745:32;;18653:62;18745:32;:::i;:::-;18744:49;;;;:::i;:::-;:70;;;;:::i;:::-;18726:88;-1:-1:-1;18835:12:0;18827:68;;;;-1:-1:-1;;;18827:68:0;;21613:2:1;18827:68:0;;;21595:21:1;21652:2;21632:18;;;21625:30;21691:34;21671:18;;;21664:62;-1:-1:-1;;;21742:18:1;;;21735:41;21793:19;;18827:68:0;21411:407:1;18827:68:0;-1:-1:-1;;;;;18929:18:0;;;;;;:9;:18;;;;;;:28;;18950:7;;18929:28;:::i;:::-;-1:-1:-1;;;;;18908:18:0;;;;;;:9;:18;;;;;:49;18985:14;;:24;;19002:7;;18985:24;:::i;:::-;18968:14;:41;19022:35;19040:7;19049;19022:17;:35::i;:::-;19073:33;;;-1:-1:-1;;;;;13535:32:1;;13517:51;;13599:2;13584:18;;13577:34;;;19073:33:0;;13490:18:1;19073:33:0;;;;;;;18558:556;;18501:613;:::o;44980:1074::-;45207:7;:14;45193:3;:10;:28;45185:81;;;;-1:-1:-1;;;45185:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45285:16:0;;45277:66;;;;-1:-1:-1;;;45277:66:0;;;;;;;:::i;:::-;15928:10;45356:16;45473:421;45497:3;:10;45493:1;:14;45473:421;;;45529:10;45542:3;45546:1;45542:6;;;;;;;;:::i;:::-;;;;;;;45529:19;;45563:14;45580:7;45588:1;45580:10;;;;;;;;:::i;:::-;;;;;;;;;;;;45607:19;45629:13;;;:9;:13;;;;;;-1:-1:-1;;;;;45629:19:0;;;;;;;;;;;;45580:10;;-1:-1:-1;45671:21:0;;;;45663:76;;;;-1:-1:-1;;;45663:76:0;;;;;;;:::i;:::-;45783:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;45783:19:0;;;;;;;;;;45805:20;;;45783:42;;45855:17;;;;;;;:27;;45805:20;;45783:13;45855:27;;45805:20;;45855:27;:::i;:::-;;;;;;;;45514:380;;;45509:3;;;;:::i;:::-;;;45473:421;;;;45941:2;-1:-1:-1;;;;;45911:47:0;45935:4;-1:-1:-1;;;;;45911:47:0;45925:8;-1:-1:-1;;;;;45911:47:0;;45945:3;45950:7;45911:47;;;;;;;:::i;:::-;;;;;;;;45971:75;46007:8;46017:4;46023:2;46027:3;46032:7;46041:4;45971:35;:75::i;:::-;45174:880;44980:1074;;;;;:::o;22603:130::-;21591:4;21615:7;;;22139:41;;;;-1:-1:-1;;;22139:41:0;;17740:2:1;22139:41:0;;;17722:21:1;17779:2;17759:18;;;17752:30;-1:-1:-1;;;17798:18:1;;;17791:50;17858:18;;22139:41:0;17538:344:1;22139:41:0;22672:5:::1;22662:15:::0;;-1:-1:-1;;22662:15:0::1;::::0;;22703:22:::1;15928:10:::0;22712:12:::1;22703:22;::::0;-1:-1:-1;;;;;13291:32:1;;;13273:51;;13261:2;13246:18;22703:22:0::1;;;;;;;22603:130::o:0;50190:891::-;-1:-1:-1;;;;;50342:18:0;;50334:66;;;;-1:-1:-1;;;50334:66:0;;;;;;;:::i;:::-;50433:7;:14;50419:3;:10;:28;50411:81;;;;-1:-1:-1;;;50411:81:0;;;;;;;:::i;:::-;50549:66;;;;;;;;;50505:16;50549:66;;;;15928:10;;50628:373;50652:3;:10;50648:1;:14;50628:373;;;50684:10;50697:3;50701:1;50697:6;;;;;;;;:::i;:::-;;;;;;;50684:19;;50718:14;50735:7;50743:1;50735:10;;;;;;;;:::i;:::-;;;;;;;;;;;;50762:19;50784:13;;;:9;:13;;;;;;-1:-1:-1;;;;;50784:19:0;;;;;;;;;;;;50735:10;;-1:-1:-1;50826:21:0;;;;50818:70;;;;-1:-1:-1;;;50818:70:0;;;;;;;:::i;:::-;50932:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;50932:19:0;;;;;;;;;;50954:20;;50932:42;;50664:3;;;;:::i;:::-;;;;50628:373;;;;51056:1;-1:-1:-1;;;;;51018:55:0;51042:4;-1:-1:-1;;;;;51018:55:0;51032:8;-1:-1:-1;;;;;51018:55:0;;51060:3;51065:7;51018:55;;;;;;;:::i;:::-;;;;;;;;50323:758;50190:891;;;:::o;25071:191::-;25164:6;;;-1:-1:-1;;;;;25181:17:0;;;-1:-1:-1;;;;;;25181:17:0;;;;;;;25214:40;;25164:6;;;25181:17;25164:6;;25214:40;;25145:16;;25214:40;25134:128;25071:191;:::o;22344:118::-;21591:4;21615:7;;;21869:9;21861:38;;;;-1:-1:-1;;;21861:38:0;;22025:2:1;21861:38:0;;;22007:21:1;22064:2;22044:18;;;22037:30;-1:-1:-1;;;22083:18:1;;;22076:46;22139:18;;21861:38:0;21823:340:1;21861:38:0;22404:7:::1;:14:::0;;-1:-1:-1;;22404:14:0::1;22414:4;22404:14;::::0;;22434:20:::1;22441:12;15928:10:::0;;15848:98;47372:569;-1:-1:-1;;;;;47525:16:0;;47517:62;;;;-1:-1:-1;;;47517:62:0;;;;;;;:::i;:::-;15928:10;47636:102;15928:10;47592:16;47679:2;47683:21;47701:2;47683:17;:21::i;:::-;47706:25;47724:6;47706:17;:25::i;47636:102::-;47751:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;47751:17:0;;;;;;;;;:27;;47772:6;;47751:13;:27;;47772:6;;47751:27;:::i;:::-;;;;-1:-1:-1;;47794:52:0;;;29441:25:1;;;29497:2;29482:18;;29475:34;;;-1:-1:-1;;;;;47794:52:0;;;;47827:1;;47794:52;;;;;;29414:18:1;47794:52:0;;;;;;;47859:74;47890:8;47908:1;47912:2;47916;47920:6;47928:4;47859:30;:74::i;48354:735::-;-1:-1:-1;;;;;48532:16:0;;48524:62;;;;-1:-1:-1;;;48524:62:0;;;;;;;:::i;:::-;48619:7;:14;48605:3;:10;:28;48597:81;;;;-1:-1:-1;;;48597:81:0;;;;;;;:::i;:::-;15928:10;48691:16;48814:103;48838:3;:10;48834:1;:14;48814:103;;;48895:7;48903:1;48895:10;;;;;;;;:::i;:::-;;;;;;;48870:9;:17;48880:3;48884:1;48880:6;;;;;;;;:::i;:::-;;;;;;;48870:17;;;;;;;;;;;:21;48888:2;-1:-1:-1;;;;;48870:21:0;-1:-1:-1;;;;;48870:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;48850:3:0;;-1:-1:-1;48850:3:0;;;:::i;:::-;;;;48814:103;;;;48970:2;-1:-1:-1;;;;;48934:53:0;48966:1;-1:-1:-1;;;;;48934:53:0;48948:8;-1:-1:-1;;;;;48934:53:0;;48974:3;48979:7;48934:53;;;;;;;:::i;:::-;;;;;;;;49000:81;49036:8;49054:1;49058:2;49062:3;49067:7;49076:4;49000:35;:81::i;51223:331::-;51378:8;-1:-1:-1;;;;;51369:17:0;:5;-1:-1:-1;;;;;51369:17:0;;;51361:71;;;;-1:-1:-1;;;51361:71:0;;26239:2:1;51361:71:0;;;26221:21:1;26278:2;26258:18;;;26251:30;26317:34;26297:18;;;26290:62;-1:-1:-1;;;26368:18:1;;;26361:39;26417:19;;51361:71:0;26037:405:1;51361:71:0;-1:-1:-1;;;;;51443:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51443:46:0;;;;;;;;;;51505:41;;15894::1;;;51505::0;;15867:18:1;51505:41:0;;;;;;;51223:331;;;:::o;28299:190::-;28424:4;28477;28448:25;28461:5;28468:4;28448:12;:25::i;:::-;:33;;28299:190;-1:-1:-1;;;;28299:190:0:o;67632:883::-;63225:4;67705:6;67699:3;;:12;;;;:::i;:::-;:26;;67691:68;;;;-1:-1:-1;;;67691:68:0;;18089:2:1;67691:68:0;;;18071:21:1;18128:2;18108:18;;;18101:30;18167:31;18147:18;;;18140:59;18216:18;;67691:68:0;17887:353:1;67691:68:0;67800:9;;67791:18;;:6;:18;:::i;:::-;67778:9;:31;67770:74;;;;-1:-1:-1;;;67770:74:0;;23597:2:1;67770:74:0;;;23579:21:1;23636:2;23616:18;;;23609:30;23675:32;23655:18;;;23648:60;23725:18;;67770:74:0;23395:354:1;67770:74:0;67855:20;67892:6;-1:-1:-1;;;;;67878:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67878:21:0;;67855:44;;67910:23;67950:6;-1:-1:-1;;;;;67936:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67936:21:0;;67910:47;;67975:6;67968:3;;:13;;;;;;;:::i;:::-;;;;-1:-1:-1;;68014:3:0;;67993:17;68030:293;68051:6;68047:1;:10;68030:293;;;68089:8;68080:3;68084:1;68080:6;;;;;;;;:::i;:::-;;;;;;;;;;:17;68167:10;68176:1;68167:8;:10;:::i;:::-;68156:21;;68207:1;68195:6;68202:1;68195:9;;;;;;;;:::i;:::-;;;;;;;;;;:13;68059:3;;;;:::i;:::-;;;;68030:293;;;-1:-1:-1;68356:10:0;68344:23;;;;:11;:23;;;;;:33;;68371:6;;68344:23;:33;;68371:6;;68344:33;:::i;:::-;;;;;;;;68388:38;68399:10;68411:3;68415:6;68388:38;;;;;;;;;;;;:10;:38::i;:::-;68463:3;;68453:34;;16092:25:1;;;68468:10:0;;68463:3;68453:34;;16080:2:1;16065:18;68453:34:0;;;;;;;67680:835;;;67632:883;:::o;67120:446::-;67210:1;67201:6;:10;67193:44;;;;-1:-1:-1;;;67193:44:0;;27059:2:1;67193:44:0;;;27041:21:1;27098:2;27078:18;;;27071:30;-1:-1:-1;;;27117:18:1;;;27110:50;27177:18;;67193:44:0;26857:344:1;67193:44:0;63225:4;67262:6;67256:3;;:12;;;;:::i;:::-;:26;;67248:76;;;;-1:-1:-1;;;67248:76:0;;25487:2:1;67248:76:0;;;25469:21:1;25526:2;25506:18;;;25499:30;25565:34;25545:18;;;25538:62;-1:-1:-1;;;25616:18:1;;;25609:34;25660:19;;67248:76:0;25285:400:1;67248:76:0;67365:9;;67356:18;;:6;:18;:::i;:::-;67343:9;:31;67335:71;;;;-1:-1:-1;;;67335:71:0;;28931:2:1;67335:71:0;;;28913:21:1;28970:2;28950:18;;;28943:30;29009:29;28989:18;;;28982:57;29056:18;;67335:71:0;28729:351:1;67335:71:0;67424:1;67417:3;;:8;;;;;;;:::i;:::-;;;;-1:-1:-1;;67448:10:0;67436:23;;;;:11;:23;;;;;:28;;67463:1;;67436:23;:28;;67463:1;;67436:28;:::i;:::-;;;;;;;;67475:33;67481:10;67492:3;;67497:6;67475:33;;;;;;;;;;;;:5;:33::i;:::-;67534:3;;67524:34;;16092:25:1;;;67539:10:0;;67534:3;67524:34;;16080:2:1;16065:18;67524:34:0;;;;;;;67120:446;:::o;43802:820::-;-1:-1:-1;;;;;43990:16:0;;43982:66;;;;-1:-1:-1;;;43982:66:0;;;;;;;:::i;:::-;15928:10;44105:96;15928:10;44136:4;44142:2;44146:21;44164:2;44146:17;:21::i;44105:96::-;44214:19;44236:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;44236:19:0;;;;;;;;;;44274:21;;;;44266:76;;;;-1:-1:-1;;;44266:76:0;;;;;;;:::i;:::-;44378:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;44378:19:0;;;;;;;;;;44400:20;;;44378:42;;44442:17;;;;;;;:27;;44400:20;;44378:13;44442:27;;44400:20;;44442:27;:::i;:::-;;;;-1:-1:-1;;44487:46:0;;;29441:25:1;;;29497:2;29482:18;;29475:34;;;-1:-1:-1;;;;;44487:46:0;;;;;;;;;;;;;;29414:18:1;44487:46:0;;;;;;;44546:68;44577:8;44587:4;44593:2;44597;44601:6;44609:4;44546:30;:68::i;:::-;43971:651;;43802:820;;;;;:::o;49339:648::-;-1:-1:-1;;;;;49466:18:0;;49458:66;;;;-1:-1:-1;;;49458:66:0;;;;;;;:::i;:::-;15928:10;49581:102;15928:10;49612:4;49537:16;49630:21;49648:2;49630:17;:21::i;:::-;49653:25;49671:6;49653:17;:25::i;:::-;-1:-1:-1;;49581:102:0;;;;;;;;;-1:-1:-1;49581:102:0;;-1:-1:-1;;;44980:1074:0;49581:102;49696:19;49718:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;49718:19:0;;;;;;;;;;49756:21;;;;49748:70;;;;-1:-1:-1;;;49748:70:0;;;;;;;:::i;:::-;49854:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;49854:19:0;;;;;;;;;;;;49876:20;;;49854:42;;49925:54;;29441:25:1;;;29482:18;;;29475:34;;;49854:19:0;;49925:54;;;;;;29414:18:1;49925:54:0;;;;;;;49447:540;;49339:648;;;:::o;9161:317::-;9276:6;9251:21;:31;;9243:73;;;;-1:-1:-1;;;9243:73:0;;21255:2:1;9243:73:0;;;21237:21:1;21294:2;21274:18;;;21267:30;21333:31;21313:18;;;21306:59;21382:18;;9243:73:0;21053:353:1;9243:73:0;9330:12;9348:9;-1:-1:-1;;;;;9348:14:0;9370:6;9348:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9329:52;;;9400:7;9392:78;;;;-1:-1:-1;;;9392:78:0;;20828:2:1;9392:78:0;;;20810:21:1;20867:2;20847:18;;;20840:30;20906:34;20886:18;;;20879:62;20977:28;20957:18;;;20950:56;21023:19;;9392:78:0;20626:422:1;53491:813:0;-1:-1:-1;;;;;53731:13:0;;8162:20;8210:8;53727:570;;53767:79;;-1:-1:-1;;;53767:79:0;;-1:-1:-1;;;;;53767:43:0;;;;;:79;;53811:8;;53821:4;;53827:3;;53832:7;;53841:4;;53767:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53767:79:0;;;;;;;;-1:-1:-1;;53767:79:0;;;;;;;;;;;;:::i;:::-;;;53763:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;54159:6;54152:14;;-1:-1:-1;;;54152:14:0;;;;;;;;:::i;53763:523::-;;;54208:62;;-1:-1:-1;;;54208:62:0;;16554:2:1;54208:62:0;;;16536:21:1;16593:2;16573:18;;;16566:30;16632:34;16612:18;;;16605:62;-1:-1:-1;;;16683:18:1;;;16676:50;16743:19;;54208:62:0;16352:416:1;53763:523:0;-1:-1:-1;;;;;;53928:60:0;;-1:-1:-1;;;53928:60:0;53924:159;;54013:50;;-1:-1:-1;;;54013:50:0;;;;;;;:::i;54312:198::-;54432:16;;;54446:1;54432:16;;;;;;;;;54378;;54407:22;;54432:16;;;;;;;;;;;;-1:-1:-1;54432:16:0;54407:41;;54470:7;54459:5;54465:1;54459:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;54497:5;54312:198;-1:-1:-1;;54312:198:0:o;52739:744::-;-1:-1:-1;;;;;52954:13:0;;8162:20;8210:8;52950:526;;52990:72;;-1:-1:-1;;;52990:72:0;;-1:-1:-1;;;;;52990:38:0;;;;;:72;;53029:8;;53039:4;;53045:2;;53049:6;;53057:4;;52990:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52990:72:0;;;;;;;;-1:-1:-1;;52990:72:0;;;;;;;;;;;;:::i;:::-;;;52986:479;;;;:::i;:::-;-1:-1:-1;;;;;;53112:55:0;;-1:-1:-1;;;53112:55:0;53108:154;;53192:50;;-1:-1:-1;;;53192:50:0;;;;;;;:::i;28851:701::-;28934:7;28977:4;28934:7;28992:523;29016:5;:12;29012:1;:16;28992:523;;;29050:20;29073:5;29079:1;29073:8;;;;;;;;:::i;:::-;;;;;;;29050:31;;29116:12;29100;:28;29096:408;;29253:44;;;;;;11290:19:1;;;11325:12;;;11318:28;;;11362:12;;29253:44:0;;;;;;;;;;;;29243:55;;;;;;29228:70;;29096:408;;;29443:44;;;;;;11290:19:1;;;11325:12;;;11318:28;;;11362:12;;29443:44:0;;;;;;;;;;;;29433:55;;;;;;29418:70;;29096:408;-1:-1:-1;29030:3:0;;;;:::i;:::-;;;;28992:523;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:735::-;541:5;594:3;587:4;579:6;575:17;571:27;561:55;;612:1;609;602:12;561:55;648:6;635:20;674:4;697:43;737:2;697:43;:::i;:::-;769:2;763:9;781:31;809:2;801:6;781:31;:::i;:::-;847:18;;;881:15;;;;-1:-1:-1;916:15:1;;;966:1;962:10;;;950:23;;946:32;;943:41;-1:-1:-1;940:61:1;;;997:1;994;987:12;940:61;1019:1;1029:163;1043:2;1040:1;1037:9;1029:163;;;1100:17;;1088:30;;1138:12;;;;1170;;;;1061:1;1054:9;1029:163;;;-1:-1:-1;1210:6:1;;487:735;-1:-1:-1;;;;;;;487:735:1:o;1227:160::-;1292:20;;1348:13;;1341:21;1331:32;;1321:60;;1377:1;1374;1367:12;1321:60;1227:160;;;:::o;1392:220::-;1434:5;1487:3;1480:4;1472:6;1468:17;1464:27;1454:55;;1505:1;1502;1495:12;1454:55;1527:79;1602:3;1593:6;1580:20;1573:4;1565:6;1561:17;1527:79;:::i;:::-;1518:88;1392:220;-1:-1:-1;;;1392:220:1:o;1617:247::-;1676:6;1729:2;1717:9;1708:7;1704:23;1700:32;1697:52;;;1745:1;1742;1735:12;1697:52;1784:9;1771:23;1803:31;1828:5;1803:31;:::i;2129:323::-;2205:6;2213;2266:2;2254:9;2245:7;2241:23;2237:32;2234:52;;;2282:1;2279;2272:12;2234:52;2321:9;2308:23;2340:31;2365:5;2340:31;:::i;:::-;2390:5;2442:2;2427:18;;;;2414:32;;-1:-1:-1;;;2129:323:1:o;2457:388::-;2525:6;2533;2586:2;2574:9;2565:7;2561:23;2557:32;2554:52;;;2602:1;2599;2592:12;2554:52;2641:9;2628:23;2660:31;2685:5;2660:31;:::i;:::-;2710:5;-1:-1:-1;2767:2:1;2752:18;;2739:32;2780:33;2739:32;2780:33;:::i;:::-;2832:7;2822:17;;;2457:388;;;;;:::o;2850:1071::-;3004:6;3012;3020;3028;3036;3089:3;3077:9;3068:7;3064:23;3060:33;3057:53;;;3106:1;3103;3096:12;3057:53;3145:9;3132:23;3164:31;3189:5;3164:31;:::i;:::-;3214:5;-1:-1:-1;3271:2:1;3256:18;;3243:32;3284:33;3243:32;3284:33;:::i;:::-;3336:7;-1:-1:-1;3394:2:1;3379:18;;3366:32;-1:-1:-1;;;;;3447:14:1;;;3444:34;;;3474:1;3471;3464:12;3444:34;3497:61;3550:7;3541:6;3530:9;3526:22;3497:61;:::i;:::-;3487:71;;3611:2;3600:9;3596:18;3583:32;3567:48;;3640:2;3630:8;3627:16;3624:36;;;3656:1;3653;3646:12;3624:36;3679:63;3734:7;3723:8;3712:9;3708:24;3679:63;:::i;:::-;3669:73;;3795:3;3784:9;3780:19;3767:33;3751:49;;3825:2;3815:8;3812:16;3809:36;;;3841:1;3838;3831:12;3809:36;;3864:51;3907:7;3896:8;3885:9;3881:24;3864:51;:::i;:::-;3854:61;;;2850:1071;;;;;;;;:::o;3926:734::-;4030:6;4038;4046;4054;4062;4115:3;4103:9;4094:7;4090:23;4086:33;4083:53;;;4132:1;4129;4122:12;4083:53;4171:9;4158:23;4190:31;4215:5;4190:31;:::i;:::-;4240:5;-1:-1:-1;4297:2:1;4282:18;;4269:32;4310:33;4269:32;4310:33;:::i;:::-;4362:7;-1:-1:-1;4416:2:1;4401:18;;4388:32;;-1:-1:-1;4467:2:1;4452:18;;4439:32;;-1:-1:-1;4522:3:1;4507:19;;4494:33;-1:-1:-1;;;;;4539:30:1;;4536:50;;;4582:1;4579;4572:12;4536:50;4605:49;4646:7;4637:6;4626:9;4622:22;4605:49;:::i;4665:730::-;4792:6;4800;4808;4861:2;4849:9;4840:7;4836:23;4832:32;4829:52;;;4877:1;4874;4867:12;4829:52;4916:9;4903:23;4935:31;4960:5;4935:31;:::i;:::-;4985:5;-1:-1:-1;5041:2:1;5026:18;;5013:32;-1:-1:-1;;;;;5094:14:1;;;5091:34;;;5121:1;5118;5111:12;5091:34;5144:61;5197:7;5188:6;5177:9;5173:22;5144:61;:::i;:::-;5134:71;;5258:2;5247:9;5243:18;5230:32;5214:48;;5287:2;5277:8;5274:16;5271:36;;;5303:1;5300;5293:12;5271:36;;5326:63;5381:7;5370:8;5359:9;5355:24;5326:63;:::i;:::-;5316:73;;;4665:730;;;;;:::o;5400:315::-;5465:6;5473;5526:2;5514:9;5505:7;5501:23;5497:32;5494:52;;;5542:1;5539;5532:12;5494:52;5581:9;5568:23;5600:31;5625:5;5600:31;:::i;:::-;5650:5;-1:-1:-1;5674:35:1;5705:2;5690:18;;5674:35;:::i;:::-;5664:45;;5400:315;;;;;:::o;6040:383::-;6117:6;6125;6133;6186:2;6174:9;6165:7;6161:23;6157:32;6154:52;;;6202:1;6199;6192:12;6154:52;6241:9;6228:23;6260:31;6285:5;6260:31;:::i;:::-;6310:5;6362:2;6347:18;;6334:32;;-1:-1:-1;6413:2:1;6398:18;;;6385:32;;6040:383;-1:-1:-1;;;6040:383:1:o;6428:1288::-;6546:6;6554;6607:2;6595:9;6586:7;6582:23;6578:32;6575:52;;;6623:1;6620;6613:12;6575:52;6663:9;6650:23;-1:-1:-1;;;;;6733:2:1;6725:6;6722:14;6719:34;;;6749:1;6746;6739:12;6719:34;6787:6;6776:9;6772:22;6762:32;;6832:7;6825:4;6821:2;6817:13;6813:27;6803:55;;6854:1;6851;6844:12;6803:55;6890:2;6877:16;6912:4;6935:43;6975:2;6935:43;:::i;:::-;7007:2;7001:9;7019:31;7047:2;7039:6;7019:31;:::i;:::-;7085:18;;;7119:15;;;;-1:-1:-1;7154:11:1;;;7196:1;7192:10;;;7184:19;;7180:28;;7177:41;-1:-1:-1;7174:61:1;;;7231:1;7228;7221:12;7174:61;7253:1;7244:10;;7263:238;7277:2;7274:1;7271:9;7263:238;;;7348:3;7335:17;7365:31;7390:5;7365:31;:::i;:::-;7409:18;;7295:1;7288:9;;;;;7447:12;;;;7479;;7263:238;;;-1:-1:-1;7520:6:1;-1:-1:-1;;7564:18:1;;7551:32;;-1:-1:-1;;7595:16:1;;;7592:36;;;7624:1;7621;7614:12;7592:36;;7647:63;7702:7;7691:8;7680:9;7676:24;7647:63;:::i;:::-;7637:73;;;6428:1288;;;;;:::o;7721:180::-;7777:6;7830:2;7818:9;7809:7;7805:23;7801:32;7798:52;;;7846:1;7843;7836:12;7798:52;7869:26;7885:9;7869:26;:::i;7906:180::-;7965:6;8018:2;8006:9;7997:7;7993:23;7989:32;7986:52;;;8034:1;8031;8024:12;7986:52;-1:-1:-1;8057:23:1;;7906:180;-1:-1:-1;7906:180:1:o;8091:245::-;8149:6;8202:2;8190:9;8181:7;8177:23;8173:32;8170:52;;;8218:1;8215;8208:12;8170:52;8257:9;8244:23;8276:30;8300:5;8276:30;:::i;8341:249::-;8410:6;8463:2;8451:9;8442:7;8438:23;8434:32;8431:52;;;8479:1;8476;8469:12;8431:52;8511:9;8505:16;8530:30;8554:5;8530:30;:::i;8595:450::-;8664:6;8717:2;8705:9;8696:7;8692:23;8688:32;8685:52;;;8733:1;8730;8723:12;8685:52;8773:9;8760:23;-1:-1:-1;;;;;8798:6:1;8795:30;8792:50;;;8838:1;8835;8828:12;8792:50;8861:22;;8914:4;8906:13;;8902:27;-1:-1:-1;8892:55:1;;8943:1;8940;8933:12;8892:55;8966:73;9031:7;9026:2;9013:16;9008:2;9004;9000:11;8966:73;:::i;9235:683::-;9330:6;9338;9346;9399:2;9387:9;9378:7;9374:23;9370:32;9367:52;;;9415:1;9412;9405:12;9367:52;9451:9;9438:23;9428:33;;9512:2;9501:9;9497:18;9484:32;-1:-1:-1;;;;;9576:2:1;9568:6;9565:14;9562:34;;;9592:1;9589;9582:12;9562:34;9630:6;9619:9;9615:22;9605:32;;9675:7;9668:4;9664:2;9660:13;9656:27;9646:55;;9697:1;9694;9687:12;9646:55;9737:2;9724:16;9763:2;9755:6;9752:14;9749:34;;;9779:1;9776;9769:12;9749:34;9832:7;9827:2;9817:6;9814:1;9810:14;9806:2;9802:23;9798:32;9795:45;9792:65;;;9853:1;9850;9843:12;9792:65;9884:2;9880;9876:11;9866:21;;9906:6;9896:16;;;;;9235:683;;;;;:::o;9923:269::-;9980:6;10033:2;10021:9;10012:7;10008:23;10004:32;10001:52;;;10049:1;10046;10039:12;10001:52;10088:9;10075:23;10138:4;10131:5;10127:16;10120:5;10117:27;10107:55;;10158:1;10155;10148:12;10197:435;10250:3;10288:5;10282:12;10315:6;10310:3;10303:19;10341:4;10370:2;10365:3;10361:12;10354:19;;10407:2;10400:5;10396:14;10428:1;10438:169;10452:6;10449:1;10446:13;10438:169;;;10513:13;;10501:26;;10547:12;;;;10582:15;;;;10474:1;10467:9;10438:169;;;-1:-1:-1;10623:3:1;;10197:435;-1:-1:-1;;;;;10197:435:1:o;10637:257::-;10678:3;10716:5;10710:12;10743:6;10738:3;10731:19;10759:63;10815:6;10808:4;10803:3;10799:14;10792:4;10785:5;10781:16;10759:63;:::i;:::-;10876:2;10855:15;-1:-1:-1;;10851:29:1;10842:39;;;;10883:4;10838:50;;10637:257;-1:-1:-1;;10637:257:1:o;11385:1527::-;11609:3;11647:6;11641:13;11673:4;11686:51;11730:6;11725:3;11720:2;11712:6;11708:15;11686:51;:::i;:::-;11800:13;;11759:16;;;;11822:55;11800:13;11759:16;11844:15;;;11822:55;:::i;:::-;11966:13;;11899:20;;;11939:1;;12026;12048:18;;;;12101;;;;12128:93;;12206:4;12196:8;12192:19;12180:31;;12128:93;12269:2;12259:8;12256:16;12236:18;12233:40;12230:167;;;-1:-1:-1;;;12296:33:1;;12352:4;12349:1;12342:15;12382:4;12303:3;12370:17;12230:167;12413:18;12440:110;;;;12564:1;12559:328;;;;12406:481;;12440:110;-1:-1:-1;;12475:24:1;;12461:39;;12520:20;;;;-1:-1:-1;12440:110:1;;12559:328;29781:1;29774:14;;;29818:4;29805:18;;12654:1;12668:169;12682:8;12679:1;12676:15;12668:169;;;12764:14;;12749:13;;;12742:37;12807:16;;;;12699:10;;12668:169;;;12672:3;;12868:8;12861:5;12857:20;12850:27;;12406:481;-1:-1:-1;12903:3:1;;11385:1527;-1:-1:-1;;;;;;;;;;;11385:1527:1:o;13622:826::-;-1:-1:-1;;;;;14019:15:1;;;14001:34;;14071:15;;14066:2;14051:18;;14044:43;13981:3;14118:2;14103:18;;14096:31;;;13944:4;;14150:57;;14187:19;;14179:6;14150:57;:::i;:::-;14255:9;14247:6;14243:22;14238:2;14227:9;14223:18;14216:50;14289:44;14326:6;14318;14289:44;:::i;:::-;14275:58;;14382:9;14374:6;14370:22;14364:3;14353:9;14349:19;14342:51;14410:32;14435:6;14427;14410:32;:::i;:::-;14402:40;13622:826;-1:-1:-1;;;;;;;;13622:826:1:o;14453:560::-;-1:-1:-1;;;;;14750:15:1;;;14732:34;;14802:15;;14797:2;14782:18;;14775:43;14849:2;14834:18;;14827:34;;;14892:2;14877:18;;14870:34;;;14712:3;14935;14920:19;;14913:32;;;14675:4;;14962:45;;14987:19;;14979:6;14962:45;:::i;:::-;14954:53;14453:560;-1:-1:-1;;;;;;;14453:560:1:o;15018:261::-;15197:2;15186:9;15179:21;15160:4;15217:56;15269:2;15258:9;15254:18;15246:6;15217:56;:::i;15284:465::-;15541:2;15530:9;15523:21;15504:4;15567:56;15619:2;15608:9;15604:18;15596:6;15567:56;:::i;:::-;15671:9;15663:6;15659:22;15654:2;15643:9;15639:18;15632:50;15699:44;15736:6;15728;15699:44;:::i;:::-;15691:52;15284:465;-1:-1:-1;;;;;15284:465:1:o;16128:219::-;16277:2;16266:9;16259:21;16240:4;16297:44;16337:2;16326:9;16322:18;16314:6;16297:44;:::i;16773:404::-;16975:2;16957:21;;;17014:2;16994:18;;;16987:30;17053:34;17048:2;17033:18;;17026:62;-1:-1:-1;;;17119:2:1;17104:18;;17097:38;17167:3;17152:19;;16773:404::o;19064:400::-;19266:2;19248:21;;;19305:2;19285:18;;;19278:30;19344:34;19339:2;19324:18;;19317:62;-1:-1:-1;;;19410:2:1;19395:18;;19388:34;19454:3;19439:19;;19064:400::o;19469:405::-;19671:2;19653:21;;;19710:2;19690:18;;;19683:30;19749:34;19744:2;19729:18;;19722:62;-1:-1:-1;;;19815:2:1;19800:18;;19793:39;19864:3;19849:19;;19469:405::o;22570:401::-;22772:2;22754:21;;;22811:2;22791:18;;;22784:30;22850:34;22845:2;22830:18;;22823:62;-1:-1:-1;;;22916:2:1;22901:18;;22894:35;22961:3;22946:19;;22570:401::o;23754:399::-;23956:2;23938:21;;;23995:2;23975:18;;;23968:30;24034:34;24029:2;24014:18;;24007:62;-1:-1:-1;;;24100:2:1;24085:18;;24078:33;24143:3;24128:19;;23754:399::o;24158:406::-;24360:2;24342:21;;;24399:2;24379:18;;;24372:30;24438:34;24433:2;24418:18;;24411:62;-1:-1:-1;;;24504:2:1;24489:18;;24482:40;24554:3;24539:19;;24158:406::o;24569:356::-;24771:2;24753:21;;;24790:18;;;24783:30;24849:34;24844:2;24829:18;;24822:62;24916:2;24901:18;;24569:356::o;27206:404::-;27408:2;27390:21;;;27447:2;27427:18;;;27420:30;27486:34;27481:2;27466:18;;27459:62;-1:-1:-1;;;27552:2:1;27537:18;;27530:38;27600:3;27585:19;;27206:404::o;27966:397::-;28168:2;28150:21;;;28207:2;28187:18;;;28180:30;28246:34;28241:2;28226:18;;28219:62;-1:-1:-1;;;28312:2:1;28297:18;;28290:31;28353:3;28338:19;;27966:397::o;29520:183::-;29580:4;-1:-1:-1;;;;;29605:6:1;29602:30;29599:56;;;29635:18;;:::i;:::-;-1:-1:-1;29680:1:1;29676:14;29692:4;29672:25;;29520:183::o;29834:128::-;29874:3;29905:1;29901:6;29898:1;29895:13;29892:39;;;29911:18;;:::i;:::-;-1:-1:-1;29947:9:1;;29834:128::o;29967:120::-;30007:1;30033;30023:35;;30038:18;;:::i;:::-;-1:-1:-1;30072:9:1;;29967:120::o;30092:168::-;30132:7;30198:1;30194;30190:6;30186:14;30183:1;30180:21;30175:1;30168:9;30161:17;30157:45;30154:71;;;30205:18;;:::i;:::-;-1:-1:-1;30245:9:1;;30092:168::o;30265:125::-;30305:4;30333:1;30330;30327:8;30324:34;;;30338:18;;:::i;:::-;-1:-1:-1;30375:9:1;;30265:125::o;30395:258::-;30467:1;30477:113;30491:6;30488:1;30485:13;30477:113;;;30567:11;;;30561:18;30548:11;;;30541:39;30513:2;30506:10;30477:113;;;30608:6;30605:1;30602:13;30599:48;;;-1:-1:-1;;30643:1:1;30625:16;;30618:27;30395:258::o;30658:380::-;30737:1;30733:12;;;;30780;;;30801:61;;30855:4;30847:6;30843:17;30833:27;;30801:61;30908:2;30900:6;30897:14;30877:18;30874:38;30871:161;;;30954:10;30949:3;30945:20;30942:1;30935:31;30989:4;30986:1;30979:15;31017:4;31014:1;31007:15;30871:161;;30658:380;;;:::o;31043:249::-;31153:2;31134:13;;-1:-1:-1;;31130:27:1;31118:40;;-1:-1:-1;;;;;31173:34:1;;31209:22;;;31170:62;31167:88;;;31235:18;;:::i;:::-;31271:2;31264:22;-1:-1:-1;;31043:249:1:o;31297:135::-;31336:3;-1:-1:-1;;31357:17:1;;31354:43;;;31377:18;;:::i;:::-;-1:-1:-1;31424:1:1;31413:13;;31297:135::o;31437:112::-;31469:1;31495;31485:35;;31500:18;;:::i;:::-;-1:-1:-1;31534:9:1;;31437:112::o;31554:127::-;31615:10;31610:3;31606:20;31603:1;31596:31;31646:4;31643:1;31636:15;31670:4;31667:1;31660:15;31686:127;31747:10;31742:3;31738:20;31735:1;31728:31;31778:4;31775:1;31768:15;31802:4;31799:1;31792:15;31818:127;31879:10;31874:3;31870:20;31867:1;31860:31;31910:4;31907:1;31900:15;31934:4;31931:1;31924:15;31950:127;32011:10;32006:3;32002:20;31999:1;31992:31;32042:4;32039:1;32032:15;32066:4;32063:1;32056:15;32082:179;32117:3;32159:1;32141:16;32138:23;32135:120;;;32205:1;32202;32199;32184:23;-1:-1:-1;32242:1:1;32236:8;32231:3;32227:18;32135:120;32082:179;:::o;32266:671::-;32305:3;32347:4;32329:16;32326:26;32323:39;;;32266:671;:::o;32323:39::-;32389:2;32383:9;-1:-1:-1;;32454:16:1;32450:25;;32447:1;32383:9;32426:50;32505:4;32499:11;32529:16;-1:-1:-1;;;;;32635:2:1;32628:4;32620:6;32616:17;32613:25;32608:2;32600:6;32597:14;32594:45;32591:58;;;32642:5;;;;;32266:671;:::o;32591:58::-;32679:6;32673:4;32669:17;32658:28;;32715:3;32709:10;32742:2;32734:6;32731:14;32728:27;;;32748:5;;;;;;32266:671;:::o;32728:27::-;32832:2;32813:16;32807:4;32803:27;32799:36;32792:4;32783:6;32778:3;32774:16;32770:27;32767:69;32764:82;;;32839:5;;;;;;32266:671;:::o;32764:82::-;32855:57;32906:4;32897:6;32889;32885:19;32881:30;32875:4;32855:57;:::i;:::-;-1:-1:-1;32928:3:1;;32266:671;-1:-1:-1;;;;;32266:671:1:o;32942:131::-;-1:-1:-1;;;;;33017:31:1;;33007:42;;32997:70;;33063:1;33060;33053:12;33078:131;-1:-1:-1;;;;;;33152:32:1;;33142:43;;33132:71;;33199:1;33196;33189:12

Swarm Source

ipfs://15f5e562bb19fe719da655ff0812dfb70680cc24e6d5da614ceea438c5a48669
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.