ETH Price: $3,457.82 (-1.83%)
Gas: 3 Gwei

Token

WincityLilleLiberte (WincityLL)
 

Overview

Max Total Supply

293 WincityLL

Holders

115

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nft-boutique.eth
0x114c7dba538049260e3c4919e98447943f9f228a
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:
WincityLilleLiberte

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : WincityLilleLiberte.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol";

//  __          _______ _   _  _____ _____ _________     __
//  \ \        / /_   _| \ | |/ ____|_   _|__   __\ \   / /
//   \ \  /\  / /  | | |  \| | |      | |    | |   \ \_/ / 
//    \ \/  \/ /   | | | . ` | |      | |    | |    \   /  
//     \  /\  /   _| |_| |\  | |____ _| |_   | |     | |   
//      \/  \/   |_____|_| \_|\_____|_____|  |_|     |_|   
//
// Contract Type :  Revenue-based Finance Decentralised
// Operator : SAS FONCIERE WINCITY ( French company )
// Fees : They are available on wincity.com
// @author WinCity | Emmanuel Chappat 
// @title Wincity Lille Liberte


contract WincityLilleLiberte is ERC1155, ERC1155Pausable, Ownable {
    using Counters for Counters.Counter;

    /**
    Triggered everytime the public / private reserve ratio is updated
    @param rarityRangeId Rarity Range Id (indexed at 0)
    @param newPublicSupply The new public supply count
    @param newFirstPrivateId The first private token in the range
    */
    event PublicReserveUpdated(
        uint8 rarityRangeId,
        uint16 newPublicSupply,
        uint16 newFirstPrivateId
    );
    event MintPriceUpdated(uint8 rarityRangeId, uint256 newPrice);

    string public name;
    string public symbol;

    /**
    Rarity is linked to token id as such:
    ID 1 = Unique
    ID 2 to ID 11 = RarityRange 1 (10 cards)
    ID 12 to ID 111 =  RarityRange 2 (100 cards)
    ID 112 to ID 1111 =  RarityRange 3 (1000 cards)
    */

    // Max supply for each rarity type
    uint16 public constant RARITY_RANGE1_SUPPLY = 1;
    uint16 public constant RARITY_RANGE2_SUPPLY = 10;
    uint16 public constant RARITY_RANGE3_SUPPLY = 100;
    uint16 public constant RARITY_RANGE4_SUPPLY = 1000;

    // Initial Public supply for each rarity type,
    // can be updated after deploy
    uint16 public constant RARITY_RANGE1_PUBLIC_SUPPLY = 1;
    uint16 public constant RARITY_RANGE2_PUBLIC_SUPPLY = 10;
    uint16 public constant RARITY_RANGE3_PUBLIC_SUPPLY = 100;
    uint16 public constant RARITY_RANGE4_PUBLIC_SUPPLY = 1000;

    uint16 public royaltyPercentage = 1;
    address public royaltyReceiver;
    uint16 public maxTokenPerTx = 100;

    bytes32 public whitelistMerkleRoot;

    struct RarityRange {
        // First token ID in this range
        uint16 firstTokenId;
        // Last token ID in this range
        uint16 lastTokenId;
        // First private token ID in this range
        uint16 firstPrivateTokenId;
        // Price for public mint in this range
        uint256 mintPrice;
    }

    // RarityRanges by id
    mapping(uint8 => RarityRange) private rarityRangeById;

    // Public mint starting time in seconds
    uint256 public publicSaleStartTimestamp;

    // Mapping to keep track of the public token minted. By RarityRange id
    mapping(uint8 => Counters.Counter) private publicMintedCounter;

    // Mapping to keep track of the tokens from the private reserve that have already been withdrawn
    mapping(uint16 => bool) private privateTokenClaimed;

    // Mapping to keep track of whitelist addresses that have already been claimed
    mapping(address => bool) private whitelistClaimed;

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * CONSTRUCTOR
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    constructor(
        string memory _uri,
        string memory _name,
        string memory _symbol
    ) ERC1155(string(abi.encodePacked(_uri,  _name, "/{id}"))) {
        name = _name;
        symbol = _symbol;

        uint16 rarityRange1FirstId = 1;
        uint16 rarityRange2FirstId = rarityRange1FirstId + RARITY_RANGE1_SUPPLY;
        uint16 rarityRange3FirstId = rarityRange2FirstId + RARITY_RANGE2_SUPPLY;
        uint16 rarityRange4FirstId = rarityRange3FirstId + RARITY_RANGE3_SUPPLY;

        // Initialize the 4 rarity ranges
        rarityRangeById[0] = RarityRange(
            rarityRange1FirstId,
            rarityRange2FirstId - 1,
            rarityRange1FirstId + RARITY_RANGE1_PUBLIC_SUPPLY,
            0.04 ether
        );
        rarityRangeById[1] = RarityRange(
            rarityRange2FirstId,
            rarityRange3FirstId - 1,
            rarityRange2FirstId + RARITY_RANGE2_PUBLIC_SUPPLY,
            0.03 ether
        );
        rarityRangeById[2] = RarityRange(
            rarityRange3FirstId,
            rarityRange4FirstId - 1,
            rarityRange3FirstId + RARITY_RANGE3_PUBLIC_SUPPLY,
            0.02 ether
        );
        rarityRangeById[3] = RarityRange(
            rarityRange4FirstId,
            rarityRange4FirstId + RARITY_RANGE4_SUPPLY - 1,
            rarityRange4FirstId + RARITY_RANGE4_PUBLIC_SUPPLY,
            0.01 ether
        );

        // The -1 are because the token are not yet minted and we increment
        // the counter after the minting is successful.
        publicMintedCounter[0] = Counters.Counter(rarityRange1FirstId - 1);
        publicMintedCounter[1] = Counters.Counter(rarityRange2FirstId - 1);
        publicMintedCounter[2] = Counters.Counter(rarityRange3FirstId - 1);
        publicMintedCounter[3] = Counters.Counter(rarityRange4FirstId - 1);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * MODIFIERS
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    modifier whenPublicSaleActive() {
        require(isPublicSaleOpen(), "Public sale not opened.");
        _;
    }
    modifier whenPreSaleActive() {
        require(isPreSaleOpen(), "Presale not opened.");
        _;
    }
    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * OpenZepplin Hooks
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Pausable) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * GETTERS / SETTERS
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function pause() external onlyOwner {
        _pause();
    }

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

    function isPublicSaleOpen() public view returns (bool) {
        return
            block.timestamp >= publicSaleStartTimestamp &&
            publicSaleStartTimestamp != 0;
    }

    function isPreSaleOpen() public view returns (bool) {
        return publicSaleStartTimestamp > 0 ?  block.timestamp  >= (publicSaleStartTimestamp - 3600) : false;
    }

    function getBalance() public view returns (uint256) {
        return address(this).balance;
    }

    function publicMintPrice(uint8 rarityRangeId)
        public
        view
        returns (uint256)
    {
        require(
            rarityRangeId >= 0 && rarityRangeId <= 3,
            "Invalid RarityRange ID"
        );
        return rarityRangeById[rarityRangeId].mintPrice;
    }

    function getRarityRangeById(uint8 id)
        public
        view
        returns (RarityRange memory)
    {
        require(id >= 0 && id <= 3, "Invalid RarityRange ID");
        return rarityRangeById[id];
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Setters (ownable)
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function setPublicSaleTimestamp(uint256 _timestamp) external onlyOwner {
        publicSaleStartTimestamp = _timestamp;
    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        whitelistMerkleRoot = _merkleRoot;
    }

    function setUri(string calldata _uri) external onlyOwner {
        _setURI(_uri);
    }

    function setPublicMintPrice(uint8 rarityRangeId, uint256 _mintPrice)
        public
        onlyOwner
    {
        require(_mintPrice > 0, "mintPrice must be greater than 0");
        require(
            rarityRangeId >= 0 && rarityRangeId <= 3,
            "Invalid RarityRange ID"
        );
        rarityRangeById[rarityRangeId].mintPrice = _mintPrice;

        emit MintPriceUpdated(rarityRangeId, _mintPrice);
    }

    function setMaxPerTx(uint8 maxPerTx) public onlyOwner {
        require(maxPerTx > 0, "maxPerTx must be greater than 0");
        maxTokenPerTx = maxPerTx;
    }

    /**
    Set a public reserve for a given rarity range
    @param rarityRangeId The rarity range ID (indexed at 0)
    @param newPublicSupply the new count of public supply tokens
    */
    function setPublicReserve(uint8 rarityRangeId, uint16 newPublicSupply)
        public
        onlyOwner
    {
        require(
            rarityRangeId >= 0 && rarityRangeId <= 3,
            "Invalid RarityRange ID"
        );
        RarityRange memory rarityRange = getRarityRangeById(rarityRangeId);
        uint16 newFirstPrivateId = rarityRange.firstTokenId + newPublicSupply;
        require(
            newFirstPrivateId != rarityRange.firstPrivateTokenId,
            "Public supply did not change."
        );

        // The +1 bellow for when a range is fully reserved for public sale
        require(
            newFirstPrivateId <= rarityRange.lastTokenId + 1,
            "Higher than max supply."
        );
        uint256 currentPublicSupply = totalSupplyForRarityRange(rarityRangeId);
        require(
            currentPublicSupply < newFirstPrivateId,
            "Public supply too low"
        );

        rarityRangeById[rarityRangeId].firstPrivateTokenId = newFirstPrivateId;

        emit PublicReserveUpdated(
            rarityRangeId,
            newPublicSupply,
            newFirstPrivateId
        );
    }

    /**
    Return the supply count for a given rarity range ID
    @param rarityRangeId The rarity range ID (indexed at 0)
    */
    function totalSupplyForRarityRange(uint8 rarityRangeId)
        public
        view
        returns (uint256)
    {
        return publicMintedCounter[rarityRangeId].current();
    }

    /**
    Return the total of publicly minted tokens
    @dev calculations are made here to save gas on minting
    */
    function totalSupply() public view returns (uint256) {
        RarityRange memory rarityRange1 = getRarityRangeById(0);
        RarityRange memory rarityRange2 = getRarityRangeById(1);
        RarityRange memory rarityRange3 = getRarityRangeById(2);
        RarityRange memory rarityRange4 = getRarityRangeById(3);
        uint256 current1 = publicMintedCounter[0].current() + 1;
        uint256 current2 = publicMintedCounter[1].current() + 1;
        uint256 current3 = publicMintedCounter[2].current() + 1;
        uint256 current4 = publicMintedCounter[3].current() + 1;

        return
            (current1 - rarityRange1.firstTokenId) +
            (current2 - rarityRange2.firstTokenId) +
            (current3 - rarityRange3.firstTokenId) +
            (current4 - rarityRange4.firstTokenId);
    }

    /**
    Check if a private token has been previously withdrawn
    @param id The token Id to be claimed
    */
    function checkClaimStatus(uint8 id) public view virtual returns (bool) {
        return privateTokenClaimed[id];
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * MINTING
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    /**
    Used to "extract" a privately held token and mint it to a given address
    @param rarityRangeId The rarity range ID (indexed at 0)
    @param id Id of the token
    @param receiver receipient address 
    */
    function claimTokenFromPrivateReserve(
        uint8 rarityRangeId,
        uint16 id,
        address receiver
    ) external onlyOwner returns (uint256) {
        // Do we have a valid RarityRange ID
        require(
            (rarityRangeId >= 0 && rarityRangeId <= 3),
            "Invalid RarityRange ID"
        );
    
        require(tx.origin == msg.sender, "Caller should not be a contract.");


        // Make sure the token has not been previously withdrawn
        require(privateTokenClaimed[id] == false, "Token previously withdrawn");

        RarityRange memory rarityRange = getRarityRangeById(rarityRangeId);

        require(
            (id >= rarityRange.firstPrivateTokenId &&
                id <= rarityRange.lastTokenId),
            "Token ID not eligeble for claim"
        );
        privateTokenClaimed[id] = true;
        _mint(receiver, id, 1, "");
        return id;
    }


    /**
    @param rarityRangeId The rarity range ID (indexed at 0)
    @param count how many tokens to mint at once
    */
    function _purchase(uint8 rarityRangeId, uint8 count)
        internal
        whenNotPaused
    {
        require(tx.origin == msg.sender, "Caller should not be a contract.");

        // Do we have a valid RarityRange ID
        require(
            rarityRangeId >= 0 && rarityRangeId <= 3,
            "Invalid RarityRange ID"
        );

        // Do we have enough supply to fullfil the order
        RarityRange memory currentRarityRange = getRarityRangeById(
            rarityRangeId
        );
        require(
            publicMintedCounter[rarityRangeId].current() + count <
                currentRarityRange.firstPrivateTokenId,
            "Not Enough Supply"
        );

        // Is count supperior than max per wallet
        require(count > 0 && count <= maxTokenPerTx, "Invalid count");

        // Check for payment
        require(
            count * currentRarityRange.mintPrice == msg.value || msg.sender == owner(),
            "Incorrect amount of ether sent"
        );

        // All good, we can start minting.
        for (uint16 i = 0; i < count; i++) {
            publicMintedCounter[rarityRangeId].increment();
            _mint(
                msg.sender,
                publicMintedCounter[rarityRangeId].current(),
                1,
                ""
            );
        }
    }

    /**
    Public mint is only for token assigned to the public reserve. Private token can not be minted directly via ethereum. 
    @param rarityRangeId The rarity range ID (indexed at 0)
    @param count how many tokens to mint at once
    */
    function mintPublicSale(uint8 rarityRangeId, uint8 count)
        external
        payable
        whenPublicSaleActive
        whenNotPaused
    {
        _purchase(rarityRangeId, count);
    }

    /**
    Presale mint.
    @param rarityRangeId The rarity range ID (indexed at 0)
    @param count how many tokens to mint at once
    @param merkleProof The merkle proof hashes 
    */
    function mintPreSale(
        uint8 rarityRangeId,
        uint8 count,
        bytes32[] calldata merkleProof
    ) external payable whenPreSaleActive whenNotPaused {
        // check is WL has already been claimed for this user
        require(
            whitelistClaimed[msg.sender] == false,
            "Address has already claim."
        );

        // merkle tree magic
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        require(
            MerkleProof.verify(merkleProof, whitelistMerkleRoot, leaf),
            "Address is not whitelisted."
        );

        whitelistClaimed[msg.sender] == true;
        _purchase(rarityRangeId, count);
    }

    /**
    Founder Mint
    @param rarityRangeId The rarity range ID (indexed at 0)
    @param count how many tokens to mint at once
    */
    function founderMint(uint8 rarityRangeId, uint8 count)
        external
        payable
        whenNotPaused
        onlyOwner
    {
        _purchase(rarityRangeId, count);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Withdrawls
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function withdrawAmount(address payable recipient, uint256 amount)
        public
        onlyOwner
    {
        (bool succeed, bytes memory data) = recipient.call{value: amount}("");
        require(succeed, "Failed to withdraw Ether");
    }
}

File 2 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 3 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @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 9 of 14 : ERC1155Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";
import "../../../security/Pausable.sol";

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

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

File 10 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 11 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 12 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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.
     */
    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 13 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

File 14 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"MintPriceUpdated","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":"uint8","name":"rarityRangeId","type":"uint8"},{"indexed":false,"internalType":"uint16","name":"newPublicSupply","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newFirstPrivateId","type":"uint16"}],"name":"PublicReserveUpdated","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":"RARITY_RANGE1_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE1_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE2_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE2_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE3_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE3_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE4_PUBLIC_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARITY_RANGE4_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"uint8","name":"id","type":"uint8"}],"name":"checkClaimStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint16","name":"id","type":"uint16"},{"internalType":"address","name":"receiver","type":"address"}],"name":"claimTokenFromPrivateReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint8","name":"count","type":"uint8"}],"name":"founderMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"id","type":"uint8"}],"name":"getRarityRangeById","outputs":[{"components":[{"internalType":"uint16","name":"firstTokenId","type":"uint16"},{"internalType":"uint16","name":"lastTokenId","type":"uint16"},{"internalType":"uint16","name":"firstPrivateTokenId","type":"uint16"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"internalType":"struct WincityLilleLiberte.RarityRange","name":"","type":"tuple"}],"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":"isPreSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerTx","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint8","name":"count","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint8","name":"count","type":"uint8"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"}],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyPercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"uint8","name":"maxPerTx","type":"uint8"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"},{"internalType":"uint16","name":"newPublicSupply","type":"uint16"}],"name":"setPublicReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setPublicSaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rarityRangeId","type":"uint8"}],"name":"totalSupplyForRarityRange","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600660006101000a81548161ffff021916908361ffff1602179055506064600660166101000a81548161ffff021916908361ffff1602179055503480156200004d57600080fd5b5060405162006b0e38038062006b0e83398181016040528101906200007391906200092f565b82826040516020016200008892919062000a85565b604051602081830303815290604052620000a881620005f860201b60201c565b506000600360006101000a81548160ff021916908315150217905550620000e4620000d86200061460201b60201c565b6200061c60201b60201c565b8160049080519060200190620000fc929190620006e2565b50806005908051906020019062000115929190620006e2565b5060006001905060006001826200012d919062000af7565b90506000600a8262000140919062000af7565b9050600060648262000153919062000af7565b905060405180608001604052808561ffff16815260200160018562000179919062000b36565b61ffff16815260200160018662000191919062000af7565b61ffff168152602001668e1bc9bf040000815250600860008060ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff1602179055506060820151816001015590505060405180608001604052808461ffff16815260200160018462000255919062000b36565b61ffff168152602001600a856200026d919062000af7565b61ffff168152602001666a94d74f43000081525060086000600160ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff1602179055506060820151816001015590505060405180608001604052808361ffff16815260200160018362000332919062000b36565b61ffff1681526020016064846200034a919062000af7565b61ffff16815260200166470de4df82000081525060086000600260ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff1602179055506060820151816001015590505060405180608001604052808261ffff16815260200160016103e88462000412919062000af7565b6200041e919062000b36565b61ffff1681526020016103e88362000437919062000af7565b61ffff168152602001662386f26fc1000081525060086000600360ff16815260200190815260200160002060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff160217905550606082015181600101559050506040518060200160405280600186620004f2919062000b36565b61ffff16815250600a60008060ff16815260200190815260200160002060008201518160000155905050604051806020016040528060018562000536919062000b36565b61ffff16815250600a6000600160ff1681526020019081526020016000206000820151816000015590505060405180602001604052806001846200057b919062000b36565b61ffff16815250600a6000600260ff168152602001908152602001600020600082015181600001559050506040518060200160405280600183620005c0919062000b36565b61ffff16815250600a6000600360ff168152602001908152602001600020600082015181600001559050505050505050505062000bd6565b806002908051906020019062000610929190620006e2565b5050565b600033905090565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620006f09062000ba0565b90600052602060002090601f01602090048101928262000714576000855562000760565b82601f106200072f57805160ff191683800117855562000760565b8280016001018555821562000760579182015b828111156200075f57825182559160200191906001019062000742565b5b5090506200076f919062000773565b5090565b5b808211156200078e57600081600090555060010162000774565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007fb82620007b0565b810181811067ffffffffffffffff821117156200081d576200081c620007c1565b5b80604052505050565b60006200083262000792565b9050620008408282620007f0565b919050565b600067ffffffffffffffff821115620008635762000862620007c1565b5b6200086e82620007b0565b9050602081019050919050565b60005b838110156200089b5780820151818401526020810190506200087e565b83811115620008ab576000848401525b50505050565b6000620008c8620008c28462000845565b62000826565b905082815260208101848484011115620008e757620008e6620007ab565b5b620008f48482856200087b565b509392505050565b600082601f830112620009145762000913620007a6565b5b815162000926848260208601620008b1565b91505092915050565b6000806000606084860312156200094b576200094a6200079c565b5b600084015167ffffffffffffffff8111156200096c576200096b620007a1565b5b6200097a86828701620008fc565b935050602084015167ffffffffffffffff8111156200099e576200099d620007a1565b5b620009ac86828701620008fc565b925050604084015167ffffffffffffffff811115620009d057620009cf620007a1565b5b620009de86828701620008fc565b9150509250925092565b600081519050919050565b600081905092915050565b600062000a0b82620009e8565b62000a178185620009f3565b935062000a298185602086016200087b565b80840191505092915050565b7f2f7b69647d000000000000000000000000000000000000000000000000000000600082015250565b600062000a6d600583620009f3565b915062000a7a8262000a35565b600582019050919050565b600062000a938285620009fe565b915062000aa18284620009fe565b915062000aae8262000a5e565b91508190509392505050565b600061ffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b048262000aba565b915062000b118362000aba565b92508261ffff0382111562000b2b5762000b2a62000ac8565b5b828201905092915050565b600062000b438262000aba565b915062000b508362000aba565b92508282101562000b665762000b6562000ac8565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bb957607f821691505b6020821081141562000bd05762000bcf62000b71565b5b50919050565b615f288062000be66000396000f3fe6080604052600436106102925760003560e01c80638a71bb2d1161015a578063bc94a45d116100c1578063e985e9c51161007a578063e985e9c5146109a8578063f242432a146109e5578063f2fde38b14610a0e578063f5bdcd0c14610a37578063f5d24c4f14610a74578063f8ede57914610a9f57610292565b8063bc94a45d146108aa578063bd32fb66146108d3578063c50ff818146108fc578063d3faf84e14610927578063d7822c9914610952578063e811fdea1461097d57610292565b8063a101ec2611610113578063a101ec26146107a7578063a22cb465146107c3578063a96784e4146107ec578063aa98e0c614610817578063aea92c7014610842578063b474596d1461086d57610292565b80638a71bb2d146106955780638da5cb5b146106c057806395d89b41146106eb5780639b642de1146107165780639f318b161461073f5780639fbc87131461077c57610292565b80632eb2c2d6116101fe5780635a43d818116101b75780635a43d818146105bf5780635c975abb146105ea5780636e34c79614610615578063715018a61461063e578063736fe565146106555780638456cb591461067e57610292565b80632eb2c2d6146104d457806335453da8146104fd5780633ec3e06d146105195780633f4ba83a146105425780634e1273f414610559578063511a96051461059657610292565b80630e89341c116102505780630e89341c146103cf57806312065fe01461040c57806318160ddd146104375780631a6949e3146104625780631b5f24301461048d5780631f281ace146104a957610292565b8062fdd58e1461029757806301d35173146102d457806301ffc9a7146102ff578063061ac1f71461033c57806306fdde03146103675780630e3e136414610392575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613b7f565b610adc565b6040516102cb9190613bce565b60405180910390f35b3480156102e057600080fd5b506102e9610ba5565b6040516102f69190613c06565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613c79565b610bb9565b6040516103339190613cc1565b60405180910390f35b34801561034857600080fd5b50610351610c9b565b60405161035e9190613c06565b60405180910390f35b34801561037357600080fd5b5061037c610ca0565b6040516103899190613d75565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613dd0565b610d2e565b6040516103c69190613bce565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613dfd565b610daa565b6040516104039190613d75565b60405180910390f35b34801561041857600080fd5b50610421610e3e565b60405161042e9190613bce565b60405180910390f35b34801561044357600080fd5b5061044c610e46565b6040516104599190613bce565b60405180910390f35b34801561046e57600080fd5b50610477610fb5565b6040516104849190613cc1565b60405180910390f35b6104a760048036038101906104a29190613e8f565b610fd1565b005b3480156104b557600080fd5b506104be61120c565b6040516104cb9190613cc1565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906140f6565b611237565b005b610517600480360381019061051291906141c5565b6112d8565b005b34801561052557600080fd5b50610540600480360381019061053b9190614205565b6113aa565b005b34801561054e57600080fd5b5061055761151e565b005b34801561056557600080fd5b50610580600480360381019061057b9190614308565b6115a4565b60405161058d919061443e565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190613dfd565b6116bd565b005b3480156105cb57600080fd5b506105d4611743565b6040516105e19190613c06565b60405180910390f35b3480156105f657600080fd5b506105ff611748565b60405161060c9190613cc1565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613dd0565b61175f565b005b34801561064a57600080fd5b50610653611844565b005b34801561066157600080fd5b5061067c6004803603810190610677919061449e565b6118cc565b005b34801561068a57600080fd5b506106936119fc565b005b3480156106a157600080fd5b506106aa611a82565b6040516106b79190613c06565b60405180910390f35b3480156106cc57600080fd5b506106d5611a96565b6040516106e291906144ed565b60405180910390f35b3480156106f757600080fd5b50610700611ac0565b60405161070d9190613d75565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061455e565b611b4e565b005b34801561074b57600080fd5b5061076660048036038101906107619190613dd0565b611c1b565b6040516107739190613cc1565b60405180910390f35b34801561078857600080fd5b50610791611c4c565b60405161079e91906144ed565b60405180910390f35b6107c160048036038101906107bc91906141c5565b611c72565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906145d7565b611d0f565b005b3480156107f857600080fd5b50610801611d25565b60405161080e9190613c06565b60405180910390f35b34801561082357600080fd5b5061082c611d2a565b6040516108399190614630565b60405180910390f35b34801561084e57600080fd5b50610857611d30565b6040516108649190613c06565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613dd0565b611d35565b6040516108a191906146af565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906146f6565b611e29565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190614762565b612093565b005b34801561090857600080fd5b50610911612119565b60405161091e9190613c06565b60405180910390f35b34801561093357600080fd5b5061093c61211f565b6040516109499190613c06565b60405180910390f35b34801561095e57600080fd5b50610967612125565b6040516109749190613bce565b60405180910390f35b34801561098957600080fd5b5061099261212b565b60405161099f9190613c06565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca919061478f565b612130565b6040516109dc9190613cc1565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a0791906147cf565b6121c4565b005b348015610a1a57600080fd5b50610a356004803603810190610a309190614866565b612265565b005b348015610a4357600080fd5b50610a5e6004803603810190610a599190614893565b61235d565b604051610a6b9190613bce565b60405180910390f35b348015610a8057600080fd5b50610a896125e6565b604051610a969190613c06565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190613dd0565b6125eb565b604051610ad39190613bce565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614958565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660169054906101000a900461ffff1681565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c945750610c9382612615565b5b9050919050565b606481565b60048054610cad906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd9906149a7565b8015610d265780601f10610cfb57610100808354040283529160200191610d26565b820191906000526020600020905b815481529060010190602001808311610d0957829003601f168201915b505050505081565b6000808260ff1610158015610d47575060038260ff1611155b610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90614a25565b60405180910390fd5b600860008360ff1660ff168152602001908152602001600020600101549050919050565b606060028054610db9906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610de5906149a7565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b50505050509050919050565b600047905090565b600080610e536000611d35565b90506000610e616001611d35565b90506000610e6f6002611d35565b90506000610e7d6003611d35565b905060006001610ea1600a60008060ff16815260200190815260200160002061267f565b610eab9190614a74565b905060006001610ed0600a6000600160ff16815260200190815260200160002061267f565b610eda9190614a74565b905060006001610eff600a6000600260ff16815260200190815260200160002061267f565b610f099190614a74565b905060006001610f2e600a6000600360ff16815260200190815260200160002061267f565b610f389190614a74565b9050846000015161ffff1681610f4e9190614aca565b866000015161ffff1683610f629190614aca565b886000015161ffff1685610f769190614aca565b8a6000015161ffff1687610f8a9190614aca565b610f949190614a74565b610f9e9190614a74565b610fa89190614a74565b9850505050505050505090565b60006009544210158015610fcc5750600060095414155b905090565b610fd961120c565b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90614b4a565b60405180910390fd5b611020611748565b15611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614bb6565b60405180910390fd5b60001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90614c22565b60405180910390fd5b6000336040516020016111069190614c8a565b60405160208183030381529060405280519060200120905061116c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361268d565b6111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290614cf1565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a9050505061120585856126a4565b5050505050565b6000806009541161121e576000611232565b610e1060095461122e9190614aca565b4210155b905090565b61123f6129b8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061128557506112848561127f6129b8565b612130565b5b6112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614d83565b60405180910390fd5b6112d185858585856129c0565b5050505050565b6112e0611748565b15611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790614bb6565b60405180910390fd5b6113286129b8565b73ffffffffffffffffffffffffffffffffffffffff16611346611a96565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390614def565b60405180910390fd5b6113a682826126a4565b5050565b6113b26129b8565b73ffffffffffffffffffffffffffffffffffffffff166113d0611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90614def565b60405180910390fd5b60008111611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090614e5b565b60405180910390fd5b60008260ff1610158015611481575060038260ff1611155b6114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614a25565b60405180910390fd5b80600860008460ff1660ff168152602001908152602001600020600101819055507f7c3597b21f39648603502ec9742c0fc04fbee88cc846e6ea40a3cb6f55f414578282604051611512929190614e8a565b60405180910390a15050565b6115266129b8565b73ffffffffffffffffffffffffffffffffffffffff16611544611a96565b73ffffffffffffffffffffffffffffffffffffffff161461159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190614def565b60405180910390fd5b6115a2612cd4565b565b606081518351146115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190614f25565b60405180910390fd5b6000835167ffffffffffffffff81111561160757611606613f03565b5b6040519080825280602002602001820160405280156116355781602001602082028036833780820191505090505b50905060005b84518110156116b25761168285828151811061165a57611659614f45565b5b602002602001015185838151811061167557611674614f45565b5b6020026020010151610adc565b82828151811061169557611694614f45565b5b602002602001018181525050806116ab90614f74565b905061163b565b508091505092915050565b6116c56129b8565b73ffffffffffffffffffffffffffffffffffffffff166116e3611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090614def565b60405180910390fd5b8060098190555050565b600181565b6000600360009054906101000a900460ff16905090565b6117676129b8565b73ffffffffffffffffffffffffffffffffffffffff16611785611a96565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290614def565b60405180910390fd5b60008160ff1611611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890615009565b60405180910390fd5b8060ff16600660166101000a81548161ffff021916908361ffff16021790555050565b61184c6129b8565b73ffffffffffffffffffffffffffffffffffffffff1661186a611a96565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790614def565b60405180910390fd5b6118ca6000612d76565b565b6118d46129b8565b73ffffffffffffffffffffffffffffffffffffffff166118f2611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90614def565b60405180910390fd5b6000808373ffffffffffffffffffffffffffffffffffffffff168360405161196f9061505a565b60006040518083038185875af1925050503d80600081146119ac576040519150601f19603f3d011682016040523d82523d6000602084013e6119b1565b606091505b5091509150816119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906150bb565b60405180910390fd5b50505050565b611a046129b8565b73ffffffffffffffffffffffffffffffffffffffff16611a22611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614def565b60405180910390fd5b611a80612e3c565b565b600660009054906101000a900461ffff1681565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054611acd906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611af9906149a7565b8015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b505050505081565b611b566129b8565b73ffffffffffffffffffffffffffffffffffffffff16611b74611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614def565b60405180910390fd5b611c1782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612edf565b5050565b6000600b60008360ff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c7a610fb5565b611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090615127565b60405180910390fd5b611cc1611748565b15611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890614bb6565b60405180910390fd5b611d0b82826126a4565b5050565b611d21611d1a6129b8565b8383612ef9565b5050565b600a81565b60075481565b606481565b611d3d613a00565b60008260ff1610158015611d55575060038260ff1611155b611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90614a25565b60405180910390fd5b600860008360ff1660ff1681526020019081526020016000206040518060800160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050919050565b611e316129b8565b73ffffffffffffffffffffffffffffffffffffffff16611e4f611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90614def565b60405180910390fd5b60008260ff1610158015611ebd575060038260ff1611155b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614a25565b60405180910390fd5b6000611f0783611d35565b90506000828260000151611f1b9190615147565b9050816040015161ffff168161ffff161415611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906151cb565b60405180910390fd5b60018260200151611f7d9190615147565b61ffff168161ffff161115611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe90615237565b60405180910390fd5b6000611fd2856125eb565b90508161ffff16811061201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906152a3565b60405180910390fd5b81600860008760ff1660ff16815260200190815260200160002060000160046101000a81548161ffff021916908361ffff1602179055507fe9da5d67aab9f197f7c9df5e5e1ff6ea4130a6674b1d0505f055d40a561bf6cc858584604051612084939291906152c3565b60405180910390a15050505050565b61209b6129b8565b73ffffffffffffffffffffffffffffffffffffffff166120b9611a96565b73ffffffffffffffffffffffffffffffffffffffff161461210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690614def565b60405180910390fd5b8060078190555050565b6103e881565b6103e881565b60095481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121cc6129b8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061221257506122118561220c6129b8565b612130565b5b612251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122489061536c565b60405180910390fd5b61225e8585858585613066565b5050505050565b61226d6129b8565b73ffffffffffffffffffffffffffffffffffffffff1661228b611a96565b73ffffffffffffffffffffffffffffffffffffffff16146122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d890614def565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612348906153fe565b60405180910390fd5b61235a81612d76565b50565b60006123676129b8565b73ffffffffffffffffffffffffffffffffffffffff16612385611a96565b73ffffffffffffffffffffffffffffffffffffffff16146123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290614def565b60405180910390fd5b60008460ff16101580156123f3575060038460ff1611155b612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990614a25565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146124a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124979061546a565b60405180910390fd5b60001515600b60008561ffff1661ffff16815260200190815260200160002060009054906101000a900460ff1615151461250f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612506906154d6565b60405180910390fd5b600061251a85611d35565b9050806040015161ffff168461ffff16101580156125445750806020015161ffff168461ffff1611155b612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90615542565b60405180910390fd5b6001600b60008661ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125d7838561ffff166001604051806020016040528060008152506132e8565b8361ffff169150509392505050565b600181565b600061260e600a60008460ff1660ff16815260200190815260200160002061267f565b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b60008261269a858461347e565b1490509392505050565b6126ac611748565b156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390614bb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461275a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127519061546a565b60405180910390fd5b60008260ff1610158015612772575060038260ff1611155b6127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614a25565b60405180910390fd5b60006127bc83611d35565b9050806040015161ffff168260ff166127ec600a60008760ff1660ff16815260200190815260200160002061267f565b6127f69190614a74565b10612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906155ae565b60405180910390fd5b60008260ff161180156128605750600660169054906101000a900461ffff1661ffff168260ff1611155b61289f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128969061561a565b60405180910390fd5b3481606001518360ff166128b3919061563a565b14806128f157506128c2611a96565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612927906156e0565b60405180910390fd5b60005b8260ff168161ffff1610156129b257612963600a60008660ff1660ff168152602001908152602001600020613531565b61299f33612988600a60008860ff1660ff16815260200190815260200160002061267f565b6001604051806020016040528060008152506132e8565b80806129aa90615700565b915050612933565b50505050565b600033905090565b8151835114612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb9061579d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6b9061582f565b60405180910390fd5b6000612a7e6129b8565b9050612a8e818787878787613547565b60005b8451811015612c3f576000858281518110612aaf57612aae614f45565b5b602002602001015190506000858381518110612ace57612acd614f45565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b66906158c1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c249190614a74565b9250508190555050505080612c3890614f74565b9050612a91565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612cb69291906158e1565b60405180910390a4612ccc81878787878761355d565b505050505050565b612cdc611748565b612d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1290615964565b60405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d5f6129b8565b604051612d6c91906144ed565b60405180910390a1565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e44611748565b15612e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7b90614bb6565b60405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ec86129b8565b604051612ed591906144ed565b60405180910390a1565b8060029080519060200190612ef5929190613a34565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5f906159f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516130599190613cc1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd9061582f565b60405180910390fd5b60006130e06129b8565b90506131008187876130f188613735565b6130fa88613735565b87613547565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318e906158c1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461324c9190614a74565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516132c9929190615a16565b60405180910390a46132df8288888888886137af565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334f90615ab1565b60405180910390fd5b60006133626129b8565b90506133838160008761337488613735565b61337d88613735565b87613547565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e29190614a74565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613460929190615a16565b60405180910390a4613477816000878787876137af565b5050505050565b60008082905060005b84518110156135265760008582815181106134a5576134a4614f45565b5b602002602001015190508083116134e65782816040516020016134c9929190615af2565b604051602081830303815290604052805190602001209250613512565b80836040516020016134f9929190615af2565b6040516020818303038152906040528051906020012092505b50808061351e90614f74565b915050613487565b508091505092915050565b6001816000016000828254019250508190555050565b613555868686868686613987565b505050505050565b61357c8473ffffffffffffffffffffffffffffffffffffffff166139e5565b1561372d578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016135c2959493929190615b73565b6020604051808303816000875af19250505080156135fe57506040513d601f19601f820116820180604052508101906135fb9190615bf0565b60015b6136a45761360a615c2a565b806308c379a01415613667575061361f615c4c565b8061362a5750613669565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365e9190613d75565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369b90615d54565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461372b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372290615de6565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561375457613753613f03565b5b6040519080825280602002602001820160405280156137825781602001602082028036833780820191505090505b509050828160008151811061379a57613799614f45565b5b60200260200101818152505080915050919050565b6137ce8473ffffffffffffffffffffffffffffffffffffffff166139e5565b1561397f578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613814959493929190615e06565b6020604051808303816000875af192505050801561385057506040513d601f19601f8201168201806040525081019061384d9190615bf0565b60015b6138f65761385c615c2a565b806308c379a014156138b95750613871615c4c565b8061387c57506138bb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b09190613d75565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ed90615d54565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461397d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397490615de6565b60405180910390fd5b505b505050505050565b6139958686868686866139f8565b61399d611748565b156139dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d490615ed2565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b6040518060800160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001600081525090565b828054613a40906149a7565b90600052602060002090601f016020900481019282613a625760008555613aa9565b82601f10613a7b57805160ff1916838001178555613aa9565b82800160010185558215613aa9579182015b82811115613aa8578251825591602001919060010190613a8d565b5b509050613ab69190613aba565b5090565b5b80821115613ad3576000816000905550600101613abb565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1682613aeb565b9050919050565b613b2681613b0b565b8114613b3157600080fd5b50565b600081359050613b4381613b1d565b92915050565b6000819050919050565b613b5c81613b49565b8114613b6757600080fd5b50565b600081359050613b7981613b53565b92915050565b60008060408385031215613b9657613b95613ae1565b5b6000613ba485828601613b34565b9250506020613bb585828601613b6a565b9150509250929050565b613bc881613b49565b82525050565b6000602082019050613be36000830184613bbf565b92915050565b600061ffff82169050919050565b613c0081613be9565b82525050565b6000602082019050613c1b6000830184613bf7565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c5681613c21565b8114613c6157600080fd5b50565b600081359050613c7381613c4d565b92915050565b600060208284031215613c8f57613c8e613ae1565b5b6000613c9d84828501613c64565b91505092915050565b60008115159050919050565b613cbb81613ca6565b82525050565b6000602082019050613cd66000830184613cb2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d16578082015181840152602081019050613cfb565b83811115613d25576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4782613cdc565b613d518185613ce7565b9350613d61818560208601613cf8565b613d6a81613d2b565b840191505092915050565b60006020820190508181036000830152613d8f8184613d3c565b905092915050565b600060ff82169050919050565b613dad81613d97565b8114613db857600080fd5b50565b600081359050613dca81613da4565b92915050565b600060208284031215613de657613de5613ae1565b5b6000613df484828501613dbb565b91505092915050565b600060208284031215613e1357613e12613ae1565b5b6000613e2184828501613b6a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e4f57613e4e613e2a565b5b8235905067ffffffffffffffff811115613e6c57613e6b613e2f565b5b602083019150836020820283011115613e8857613e87613e34565b5b9250929050565b60008060008060608587031215613ea957613ea8613ae1565b5b6000613eb787828801613dbb565b9450506020613ec887828801613dbb565b935050604085013567ffffffffffffffff811115613ee957613ee8613ae6565b5b613ef587828801613e39565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3b82613d2b565b810181811067ffffffffffffffff82111715613f5a57613f59613f03565b5b80604052505050565b6000613f6d613ad7565b9050613f798282613f32565b919050565b600067ffffffffffffffff821115613f9957613f98613f03565b5b602082029050602081019050919050565b6000613fbd613fb884613f7e565b613f63565b90508083825260208201905060208402830185811115613fe057613fdf613e34565b5b835b818110156140095780613ff58882613b6a565b845260208401935050602081019050613fe2565b5050509392505050565b600082601f83011261402857614027613e2a565b5b8135614038848260208601613faa565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406157614060613f03565b5b61406a82613d2b565b9050602081019050919050565b82818337600083830152505050565b600061409961409484614046565b613f63565b9050828152602081018484840111156140b5576140b4614041565b5b6140c0848285614077565b509392505050565b600082601f8301126140dd576140dc613e2a565b5b81356140ed848260208601614086565b91505092915050565b600080600080600060a0868803121561411257614111613ae1565b5b600061412088828901613b34565b955050602061413188828901613b34565b945050604086013567ffffffffffffffff81111561415257614151613ae6565b5b61415e88828901614013565b935050606086013567ffffffffffffffff81111561417f5761417e613ae6565b5b61418b88828901614013565b925050608086013567ffffffffffffffff8111156141ac576141ab613ae6565b5b6141b8888289016140c8565b9150509295509295909350565b600080604083850312156141dc576141db613ae1565b5b60006141ea85828601613dbb565b92505060206141fb85828601613dbb565b9150509250929050565b6000806040838503121561421c5761421b613ae1565b5b600061422a85828601613dbb565b925050602061423b85828601613b6a565b9150509250929050565b600067ffffffffffffffff8211156142605761425f613f03565b5b602082029050602081019050919050565b600061428461427f84614245565b613f63565b905080838252602082019050602084028301858111156142a7576142a6613e34565b5b835b818110156142d057806142bc8882613b34565b8452602084019350506020810190506142a9565b5050509392505050565b600082601f8301126142ef576142ee613e2a565b5b81356142ff848260208601614271565b91505092915050565b6000806040838503121561431f5761431e613ae1565b5b600083013567ffffffffffffffff81111561433d5761433c613ae6565b5b614349858286016142da565b925050602083013567ffffffffffffffff81111561436a57614369613ae6565b5b61437685828601614013565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143b581613b49565b82525050565b60006143c783836143ac565b60208301905092915050565b6000602082019050919050565b60006143eb82614380565b6143f5818561438b565b93506144008361439c565b8060005b8381101561443157815161441888826143bb565b9750614423836143d3565b925050600181019050614404565b5085935050505092915050565b6000602082019050818103600083015261445881846143e0565b905092915050565b600061446b82613aeb565b9050919050565b61447b81614460565b811461448657600080fd5b50565b60008135905061449881614472565b92915050565b600080604083850312156144b5576144b4613ae1565b5b60006144c385828601614489565b92505060206144d485828601613b6a565b9150509250929050565b6144e781613b0b565b82525050565b600060208201905061450260008301846144de565b92915050565b60008083601f84011261451e5761451d613e2a565b5b8235905067ffffffffffffffff81111561453b5761453a613e2f565b5b60208301915083600182028301111561455757614556613e34565b5b9250929050565b6000806020838503121561457557614574613ae1565b5b600083013567ffffffffffffffff81111561459357614592613ae6565b5b61459f85828601614508565b92509250509250929050565b6145b481613ca6565b81146145bf57600080fd5b50565b6000813590506145d1816145ab565b92915050565b600080604083850312156145ee576145ed613ae1565b5b60006145fc85828601613b34565b925050602061460d858286016145c2565b9150509250929050565b6000819050919050565b61462a81614617565b82525050565b60006020820190506146456000830184614621565b92915050565b61465481613be9565b82525050565b608082016000820151614670600085018261464b565b506020820151614683602085018261464b565b506040820151614696604085018261464b565b5060608201516146a960608501826143ac565b50505050565b60006080820190506146c4600083018461465a565b92915050565b6146d381613be9565b81146146de57600080fd5b50565b6000813590506146f0816146ca565b92915050565b6000806040838503121561470d5761470c613ae1565b5b600061471b85828601613dbb565b925050602061472c858286016146e1565b9150509250929050565b61473f81614617565b811461474a57600080fd5b50565b60008135905061475c81614736565b92915050565b60006020828403121561477857614777613ae1565b5b60006147868482850161474d565b91505092915050565b600080604083850312156147a6576147a5613ae1565b5b60006147b485828601613b34565b92505060206147c585828601613b34565b9150509250929050565b600080600080600060a086880312156147eb576147ea613ae1565b5b60006147f988828901613b34565b955050602061480a88828901613b34565b945050604061481b88828901613b6a565b935050606061482c88828901613b6a565b925050608086013567ffffffffffffffff81111561484d5761484c613ae6565b5b614859888289016140c8565b9150509295509295909350565b60006020828403121561487c5761487b613ae1565b5b600061488a84828501613b34565b91505092915050565b6000806000606084860312156148ac576148ab613ae1565b5b60006148ba86828701613dbb565b93505060206148cb868287016146e1565b92505060406148dc86828701613b34565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614942602b83613ce7565b915061494d826148e6565b604082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149bf57607f821691505b602082108114156149d3576149d2614978565b5b50919050565b7f496e76616c69642052617269747952616e676520494400000000000000000000600082015250565b6000614a0f601683613ce7565b9150614a1a826149d9565b602082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a7f82613b49565b9150614a8a83613b49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614abf57614abe614a45565b5b828201905092915050565b6000614ad582613b49565b9150614ae083613b49565b925082821015614af357614af2614a45565b5b828203905092915050565b7f50726573616c65206e6f74206f70656e65642e00000000000000000000000000600082015250565b6000614b34601383613ce7565b9150614b3f82614afe565b602082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ba0601083613ce7565b9150614bab82614b6a565b602082019050919050565b60006020820190508181036000830152614bcf81614b93565b9050919050565b7f416464726573732068617320616c726561647920636c61696d2e000000000000600082015250565b6000614c0c601a83613ce7565b9150614c1782614bd6565b602082019050919050565b60006020820190508181036000830152614c3b81614bff565b9050919050565b60008160601b9050919050565b6000614c5a82614c42565b9050919050565b6000614c6c82614c4f565b9050919050565b614c84614c7f82613b0b565b614c61565b82525050565b6000614c968284614c73565b60148201915081905092915050565b7f41646472657373206973206e6f742077686974656c69737465642e0000000000600082015250565b6000614cdb601b83613ce7565b9150614ce682614ca5565b602082019050919050565b60006020820190508181036000830152614d0a81614cce565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614d6d603283613ce7565b9150614d7882614d11565b604082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dd9602083613ce7565b9150614de482614da3565b602082019050919050565b60006020820190508181036000830152614e0881614dcc565b9050919050565b7f6d696e745072696365206d7573742062652067726561746572207468616e2030600082015250565b6000614e45602083613ce7565b9150614e5082614e0f565b602082019050919050565b60006020820190508181036000830152614e7481614e38565b9050919050565b614e8481613d97565b82525050565b6000604082019050614e9f6000830185614e7b565b614eac6020830184613bbf565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614f0f602983613ce7565b9150614f1a82614eb3565b604082019050919050565b60006020820190508181036000830152614f3e81614f02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f7f82613b49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fb257614fb1614a45565b5b600182019050919050565b7f6d61785065725478206d7573742062652067726561746572207468616e203000600082015250565b6000614ff3601f83613ce7565b9150614ffe82614fbd565b602082019050919050565b6000602082019050818103600083015261502281614fe6565b9050919050565b600081905092915050565b50565b6000615044600083615029565b915061504f82615034565b600082019050919050565b600061506582615037565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b60006150a5601883613ce7565b91506150b08261506f565b602082019050919050565b600060208201905081810360008301526150d481615098565b9050919050565b7f5075626c69632073616c65206e6f74206f70656e65642e000000000000000000600082015250565b6000615111601783613ce7565b915061511c826150db565b602082019050919050565b6000602082019050818103600083015261514081615104565b9050919050565b600061515282613be9565b915061515d83613be9565b92508261ffff0382111561517457615173614a45565b5b828201905092915050565b7f5075626c696320737570706c7920646964206e6f74206368616e67652e000000600082015250565b60006151b5601d83613ce7565b91506151c08261517f565b602082019050919050565b600060208201905081810360008301526151e4816151a8565b9050919050565b7f486967686572207468616e206d617820737570706c792e000000000000000000600082015250565b6000615221601783613ce7565b915061522c826151eb565b602082019050919050565b6000602082019050818103600083015261525081615214565b9050919050565b7f5075626c696320737570706c7920746f6f206c6f770000000000000000000000600082015250565b600061528d601583613ce7565b915061529882615257565b602082019050919050565b600060208201905081810360008301526152bc81615280565b9050919050565b60006060820190506152d86000830186614e7b565b6152e56020830185613bf7565b6152f26040830184613bf7565b949350505050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000615356602983613ce7565b9150615361826152fa565b604082019050919050565b6000602082019050818103600083015261538581615349565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153e8602683613ce7565b91506153f38261538c565b604082019050919050565b60006020820190508181036000830152615417816153db565b9050919050565b7f43616c6c65722073686f756c64206e6f74206265206120636f6e74726163742e600082015250565b6000615454602083613ce7565b915061545f8261541e565b602082019050919050565b6000602082019050818103600083015261548381615447565b9050919050565b7f546f6b656e2070726576696f75736c792077697468647261776e000000000000600082015250565b60006154c0601a83613ce7565b91506154cb8261548a565b602082019050919050565b600060208201905081810360008301526154ef816154b3565b9050919050565b7f546f6b656e204944206e6f7420656c696765626c6520666f7220636c61696d00600082015250565b600061552c601f83613ce7565b9150615537826154f6565b602082019050919050565b6000602082019050818103600083015261555b8161551f565b9050919050565b7f4e6f7420456e6f75676820537570706c79000000000000000000000000000000600082015250565b6000615598601183613ce7565b91506155a382615562565b602082019050919050565b600060208201905081810360008301526155c78161558b565b9050919050565b7f496e76616c696420636f756e7400000000000000000000000000000000000000600082015250565b6000615604600d83613ce7565b915061560f826155ce565b602082019050919050565b60006020820190508181036000830152615633816155f7565b9050919050565b600061564582613b49565b915061565083613b49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561568957615688614a45565b5b828202905092915050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e740000600082015250565b60006156ca601e83613ce7565b91506156d582615694565b602082019050919050565b600060208201905081810360008301526156f9816156bd565b9050919050565b600061570b82613be9565b915061ffff8214156157205761571f614a45565b5b600182019050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000615787602883613ce7565b91506157928261572b565b604082019050919050565b600060208201905081810360008301526157b68161577a565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615819602583613ce7565b9150615824826157bd565b604082019050919050565b600060208201905081810360008301526158488161580c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006158ab602a83613ce7565b91506158b68261584f565b604082019050919050565b600060208201905081810360008301526158da8161589e565b9050919050565b600060408201905081810360008301526158fb81856143e0565b9050818103602083015261590f81846143e0565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061594e601483613ce7565b915061595982615918565b602082019050919050565b6000602082019050818103600083015261597d81615941565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006159e0602983613ce7565b91506159eb82615984565b604082019050919050565b60006020820190508181036000830152615a0f816159d3565b9050919050565b6000604082019050615a2b6000830185613bbf565b615a386020830184613bbf565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a9b602183613ce7565b9150615aa682615a3f565b604082019050919050565b60006020820190508181036000830152615aca81615a8e565b9050919050565b6000819050919050565b615aec615ae782614617565b615ad1565b82525050565b6000615afe8285615adb565b602082019150615b0e8284615adb565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000615b4582615b1e565b615b4f8185615b29565b9350615b5f818560208601613cf8565b615b6881613d2b565b840191505092915050565b600060a082019050615b8860008301886144de565b615b9560208301876144de565b8181036040830152615ba781866143e0565b90508181036060830152615bbb81856143e0565b90508181036080830152615bcf8184615b3a565b90509695505050505050565b600081519050615bea81613c4d565b92915050565b600060208284031215615c0657615c05613ae1565b5b6000615c1484828501615bdb565b91505092915050565b60008160e01c9050919050565b600060033d1115615c495760046000803e615c46600051615c1d565b90505b90565b600060443d1015615c5c57615cdf565b615c64613ad7565b60043d036004823e80513d602482011167ffffffffffffffff82111715615c8c575050615cdf565b808201805167ffffffffffffffff811115615caa5750505050615cdf565b80602083010160043d038501811115615cc7575050505050615cdf565b615cd682602001850186613f32565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615d3e603483613ce7565b9150615d4982615ce2565b604082019050919050565b60006020820190508181036000830152615d6d81615d31565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615dd0602883613ce7565b9150615ddb82615d74565b604082019050919050565b60006020820190508181036000830152615dff81615dc3565b9050919050565b600060a082019050615e1b60008301886144de565b615e2860208301876144de565b615e356040830186613bbf565b615e426060830185613bbf565b8181036080830152615e548184615b3a565b90509695505050505050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000615ebc602c83613ce7565b9150615ec782615e60565b604082019050919050565b60006020820190508181036000830152615eeb81615eaf565b905091905056fea2646970667358221220109dcc42aee1a448c929d7fb0134e6cee3b55363377fcb91280c5465f4f3317f64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f7777772e77696e636974792e636f6d2f6170692f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001357696e636974794c696c6c654c69626572746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957696e636974794c4c0000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102925760003560e01c80638a71bb2d1161015a578063bc94a45d116100c1578063e985e9c51161007a578063e985e9c5146109a8578063f242432a146109e5578063f2fde38b14610a0e578063f5bdcd0c14610a37578063f5d24c4f14610a74578063f8ede57914610a9f57610292565b8063bc94a45d146108aa578063bd32fb66146108d3578063c50ff818146108fc578063d3faf84e14610927578063d7822c9914610952578063e811fdea1461097d57610292565b8063a101ec2611610113578063a101ec26146107a7578063a22cb465146107c3578063a96784e4146107ec578063aa98e0c614610817578063aea92c7014610842578063b474596d1461086d57610292565b80638a71bb2d146106955780638da5cb5b146106c057806395d89b41146106eb5780639b642de1146107165780639f318b161461073f5780639fbc87131461077c57610292565b80632eb2c2d6116101fe5780635a43d818116101b75780635a43d818146105bf5780635c975abb146105ea5780636e34c79614610615578063715018a61461063e578063736fe565146106555780638456cb591461067e57610292565b80632eb2c2d6146104d457806335453da8146104fd5780633ec3e06d146105195780633f4ba83a146105425780634e1273f414610559578063511a96051461059657610292565b80630e89341c116102505780630e89341c146103cf57806312065fe01461040c57806318160ddd146104375780631a6949e3146104625780631b5f24301461048d5780631f281ace146104a957610292565b8062fdd58e1461029757806301d35173146102d457806301ffc9a7146102ff578063061ac1f71461033c57806306fdde03146103675780630e3e136414610392575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613b7f565b610adc565b6040516102cb9190613bce565b60405180910390f35b3480156102e057600080fd5b506102e9610ba5565b6040516102f69190613c06565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613c79565b610bb9565b6040516103339190613cc1565b60405180910390f35b34801561034857600080fd5b50610351610c9b565b60405161035e9190613c06565b60405180910390f35b34801561037357600080fd5b5061037c610ca0565b6040516103899190613d75565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613dd0565b610d2e565b6040516103c69190613bce565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613dfd565b610daa565b6040516104039190613d75565b60405180910390f35b34801561041857600080fd5b50610421610e3e565b60405161042e9190613bce565b60405180910390f35b34801561044357600080fd5b5061044c610e46565b6040516104599190613bce565b60405180910390f35b34801561046e57600080fd5b50610477610fb5565b6040516104849190613cc1565b60405180910390f35b6104a760048036038101906104a29190613e8f565b610fd1565b005b3480156104b557600080fd5b506104be61120c565b6040516104cb9190613cc1565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906140f6565b611237565b005b610517600480360381019061051291906141c5565b6112d8565b005b34801561052557600080fd5b50610540600480360381019061053b9190614205565b6113aa565b005b34801561054e57600080fd5b5061055761151e565b005b34801561056557600080fd5b50610580600480360381019061057b9190614308565b6115a4565b60405161058d919061443e565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190613dfd565b6116bd565b005b3480156105cb57600080fd5b506105d4611743565b6040516105e19190613c06565b60405180910390f35b3480156105f657600080fd5b506105ff611748565b60405161060c9190613cc1565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613dd0565b61175f565b005b34801561064a57600080fd5b50610653611844565b005b34801561066157600080fd5b5061067c6004803603810190610677919061449e565b6118cc565b005b34801561068a57600080fd5b506106936119fc565b005b3480156106a157600080fd5b506106aa611a82565b6040516106b79190613c06565b60405180910390f35b3480156106cc57600080fd5b506106d5611a96565b6040516106e291906144ed565b60405180910390f35b3480156106f757600080fd5b50610700611ac0565b60405161070d9190613d75565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061455e565b611b4e565b005b34801561074b57600080fd5b5061076660048036038101906107619190613dd0565b611c1b565b6040516107739190613cc1565b60405180910390f35b34801561078857600080fd5b50610791611c4c565b60405161079e91906144ed565b60405180910390f35b6107c160048036038101906107bc91906141c5565b611c72565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906145d7565b611d0f565b005b3480156107f857600080fd5b50610801611d25565b60405161080e9190613c06565b60405180910390f35b34801561082357600080fd5b5061082c611d2a565b6040516108399190614630565b60405180910390f35b34801561084e57600080fd5b50610857611d30565b6040516108649190613c06565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613dd0565b611d35565b6040516108a191906146af565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906146f6565b611e29565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190614762565b612093565b005b34801561090857600080fd5b50610911612119565b60405161091e9190613c06565b60405180910390f35b34801561093357600080fd5b5061093c61211f565b6040516109499190613c06565b60405180910390f35b34801561095e57600080fd5b50610967612125565b6040516109749190613bce565b60405180910390f35b34801561098957600080fd5b5061099261212b565b60405161099f9190613c06565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca919061478f565b612130565b6040516109dc9190613cc1565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a0791906147cf565b6121c4565b005b348015610a1a57600080fd5b50610a356004803603810190610a309190614866565b612265565b005b348015610a4357600080fd5b50610a5e6004803603810190610a599190614893565b61235d565b604051610a6b9190613bce565b60405180910390f35b348015610a8057600080fd5b50610a896125e6565b604051610a969190613c06565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190613dd0565b6125eb565b604051610ad39190613bce565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614958565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660169054906101000a900461ffff1681565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c945750610c9382612615565b5b9050919050565b606481565b60048054610cad906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd9906149a7565b8015610d265780601f10610cfb57610100808354040283529160200191610d26565b820191906000526020600020905b815481529060010190602001808311610d0957829003601f168201915b505050505081565b6000808260ff1610158015610d47575060038260ff1611155b610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90614a25565b60405180910390fd5b600860008360ff1660ff168152602001908152602001600020600101549050919050565b606060028054610db9906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610de5906149a7565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b50505050509050919050565b600047905090565b600080610e536000611d35565b90506000610e616001611d35565b90506000610e6f6002611d35565b90506000610e7d6003611d35565b905060006001610ea1600a60008060ff16815260200190815260200160002061267f565b610eab9190614a74565b905060006001610ed0600a6000600160ff16815260200190815260200160002061267f565b610eda9190614a74565b905060006001610eff600a6000600260ff16815260200190815260200160002061267f565b610f099190614a74565b905060006001610f2e600a6000600360ff16815260200190815260200160002061267f565b610f389190614a74565b9050846000015161ffff1681610f4e9190614aca565b866000015161ffff1683610f629190614aca565b886000015161ffff1685610f769190614aca565b8a6000015161ffff1687610f8a9190614aca565b610f949190614a74565b610f9e9190614a74565b610fa89190614a74565b9850505050505050505090565b60006009544210158015610fcc5750600060095414155b905090565b610fd961120c565b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90614b4a565b60405180910390fd5b611020611748565b15611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614bb6565b60405180910390fd5b60001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90614c22565b60405180910390fd5b6000336040516020016111069190614c8a565b60405160208183030381529060405280519060200120905061116c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361268d565b6111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290614cf1565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a9050505061120585856126a4565b5050505050565b6000806009541161121e576000611232565b610e1060095461122e9190614aca565b4210155b905090565b61123f6129b8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061128557506112848561127f6129b8565b612130565b5b6112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614d83565b60405180910390fd5b6112d185858585856129c0565b5050505050565b6112e0611748565b15611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790614bb6565b60405180910390fd5b6113286129b8565b73ffffffffffffffffffffffffffffffffffffffff16611346611a96565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390614def565b60405180910390fd5b6113a682826126a4565b5050565b6113b26129b8565b73ffffffffffffffffffffffffffffffffffffffff166113d0611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90614def565b60405180910390fd5b60008111611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090614e5b565b60405180910390fd5b60008260ff1610158015611481575060038260ff1611155b6114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614a25565b60405180910390fd5b80600860008460ff1660ff168152602001908152602001600020600101819055507f7c3597b21f39648603502ec9742c0fc04fbee88cc846e6ea40a3cb6f55f414578282604051611512929190614e8a565b60405180910390a15050565b6115266129b8565b73ffffffffffffffffffffffffffffffffffffffff16611544611a96565b73ffffffffffffffffffffffffffffffffffffffff161461159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190614def565b60405180910390fd5b6115a2612cd4565b565b606081518351146115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190614f25565b60405180910390fd5b6000835167ffffffffffffffff81111561160757611606613f03565b5b6040519080825280602002602001820160405280156116355781602001602082028036833780820191505090505b50905060005b84518110156116b25761168285828151811061165a57611659614f45565b5b602002602001015185838151811061167557611674614f45565b5b6020026020010151610adc565b82828151811061169557611694614f45565b5b602002602001018181525050806116ab90614f74565b905061163b565b508091505092915050565b6116c56129b8565b73ffffffffffffffffffffffffffffffffffffffff166116e3611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090614def565b60405180910390fd5b8060098190555050565b600181565b6000600360009054906101000a900460ff16905090565b6117676129b8565b73ffffffffffffffffffffffffffffffffffffffff16611785611a96565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290614def565b60405180910390fd5b60008160ff1611611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890615009565b60405180910390fd5b8060ff16600660166101000a81548161ffff021916908361ffff16021790555050565b61184c6129b8565b73ffffffffffffffffffffffffffffffffffffffff1661186a611a96565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790614def565b60405180910390fd5b6118ca6000612d76565b565b6118d46129b8565b73ffffffffffffffffffffffffffffffffffffffff166118f2611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90614def565b60405180910390fd5b6000808373ffffffffffffffffffffffffffffffffffffffff168360405161196f9061505a565b60006040518083038185875af1925050503d80600081146119ac576040519150601f19603f3d011682016040523d82523d6000602084013e6119b1565b606091505b5091509150816119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906150bb565b60405180910390fd5b50505050565b611a046129b8565b73ffffffffffffffffffffffffffffffffffffffff16611a22611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614def565b60405180910390fd5b611a80612e3c565b565b600660009054906101000a900461ffff1681565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054611acd906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611af9906149a7565b8015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b505050505081565b611b566129b8565b73ffffffffffffffffffffffffffffffffffffffff16611b74611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614def565b60405180910390fd5b611c1782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612edf565b5050565b6000600b60008360ff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c7a610fb5565b611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090615127565b60405180910390fd5b611cc1611748565b15611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890614bb6565b60405180910390fd5b611d0b82826126a4565b5050565b611d21611d1a6129b8565b8383612ef9565b5050565b600a81565b60075481565b606481565b611d3d613a00565b60008260ff1610158015611d55575060038260ff1611155b611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90614a25565b60405180910390fd5b600860008360ff1660ff1681526020019081526020016000206040518060800160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050919050565b611e316129b8565b73ffffffffffffffffffffffffffffffffffffffff16611e4f611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90614def565b60405180910390fd5b60008260ff1610158015611ebd575060038260ff1611155b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614a25565b60405180910390fd5b6000611f0783611d35565b90506000828260000151611f1b9190615147565b9050816040015161ffff168161ffff161415611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906151cb565b60405180910390fd5b60018260200151611f7d9190615147565b61ffff168161ffff161115611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe90615237565b60405180910390fd5b6000611fd2856125eb565b90508161ffff16811061201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906152a3565b60405180910390fd5b81600860008760ff1660ff16815260200190815260200160002060000160046101000a81548161ffff021916908361ffff1602179055507fe9da5d67aab9f197f7c9df5e5e1ff6ea4130a6674b1d0505f055d40a561bf6cc858584604051612084939291906152c3565b60405180910390a15050505050565b61209b6129b8565b73ffffffffffffffffffffffffffffffffffffffff166120b9611a96565b73ffffffffffffffffffffffffffffffffffffffff161461210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690614def565b60405180910390fd5b8060078190555050565b6103e881565b6103e881565b60095481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121cc6129b8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061221257506122118561220c6129b8565b612130565b5b612251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122489061536c565b60405180910390fd5b61225e8585858585613066565b5050505050565b61226d6129b8565b73ffffffffffffffffffffffffffffffffffffffff1661228b611a96565b73ffffffffffffffffffffffffffffffffffffffff16146122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d890614def565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612348906153fe565b60405180910390fd5b61235a81612d76565b50565b60006123676129b8565b73ffffffffffffffffffffffffffffffffffffffff16612385611a96565b73ffffffffffffffffffffffffffffffffffffffff16146123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290614def565b60405180910390fd5b60008460ff16101580156123f3575060038460ff1611155b612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990614a25565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146124a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124979061546a565b60405180910390fd5b60001515600b60008561ffff1661ffff16815260200190815260200160002060009054906101000a900460ff1615151461250f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612506906154d6565b60405180910390fd5b600061251a85611d35565b9050806040015161ffff168461ffff16101580156125445750806020015161ffff168461ffff1611155b612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a90615542565b60405180910390fd5b6001600b60008661ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125d7838561ffff166001604051806020016040528060008152506132e8565b8361ffff169150509392505050565b600181565b600061260e600a60008460ff1660ff16815260200190815260200160002061267f565b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b60008261269a858461347e565b1490509392505050565b6126ac611748565b156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390614bb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461275a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127519061546a565b60405180910390fd5b60008260ff1610158015612772575060038260ff1611155b6127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614a25565b60405180910390fd5b60006127bc83611d35565b9050806040015161ffff168260ff166127ec600a60008760ff1660ff16815260200190815260200160002061267f565b6127f69190614a74565b10612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906155ae565b60405180910390fd5b60008260ff161180156128605750600660169054906101000a900461ffff1661ffff168260ff1611155b61289f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128969061561a565b60405180910390fd5b3481606001518360ff166128b3919061563a565b14806128f157506128c2611a96565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612927906156e0565b60405180910390fd5b60005b8260ff168161ffff1610156129b257612963600a60008660ff1660ff168152602001908152602001600020613531565b61299f33612988600a60008860ff1660ff16815260200190815260200160002061267f565b6001604051806020016040528060008152506132e8565b80806129aa90615700565b915050612933565b50505050565b600033905090565b8151835114612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb9061579d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6b9061582f565b60405180910390fd5b6000612a7e6129b8565b9050612a8e818787878787613547565b60005b8451811015612c3f576000858281518110612aaf57612aae614f45565b5b602002602001015190506000858381518110612ace57612acd614f45565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b66906158c1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c249190614a74565b9250508190555050505080612c3890614f74565b9050612a91565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612cb69291906158e1565b60405180910390a4612ccc81878787878761355d565b505050505050565b612cdc611748565b612d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1290615964565b60405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d5f6129b8565b604051612d6c91906144ed565b60405180910390a1565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e44611748565b15612e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7b90614bb6565b60405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ec86129b8565b604051612ed591906144ed565b60405180910390a1565b8060029080519060200190612ef5929190613a34565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5f906159f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516130599190613cc1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd9061582f565b60405180910390fd5b60006130e06129b8565b90506131008187876130f188613735565b6130fa88613735565b87613547565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318e906158c1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461324c9190614a74565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516132c9929190615a16565b60405180910390a46132df8288888888886137af565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334f90615ab1565b60405180910390fd5b60006133626129b8565b90506133838160008761337488613735565b61337d88613735565b87613547565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e29190614a74565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613460929190615a16565b60405180910390a4613477816000878787876137af565b5050505050565b60008082905060005b84518110156135265760008582815181106134a5576134a4614f45565b5b602002602001015190508083116134e65782816040516020016134c9929190615af2565b604051602081830303815290604052805190602001209250613512565b80836040516020016134f9929190615af2565b6040516020818303038152906040528051906020012092505b50808061351e90614f74565b915050613487565b508091505092915050565b6001816000016000828254019250508190555050565b613555868686868686613987565b505050505050565b61357c8473ffffffffffffffffffffffffffffffffffffffff166139e5565b1561372d578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016135c2959493929190615b73565b6020604051808303816000875af19250505080156135fe57506040513d601f19601f820116820180604052508101906135fb9190615bf0565b60015b6136a45761360a615c2a565b806308c379a01415613667575061361f615c4c565b8061362a5750613669565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365e9190613d75565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369b90615d54565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461372b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372290615de6565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561375457613753613f03565b5b6040519080825280602002602001820160405280156137825781602001602082028036833780820191505090505b509050828160008151811061379a57613799614f45565b5b60200260200101818152505080915050919050565b6137ce8473ffffffffffffffffffffffffffffffffffffffff166139e5565b1561397f578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613814959493929190615e06565b6020604051808303816000875af192505050801561385057506040513d601f19601f8201168201806040525081019061384d9190615bf0565b60015b6138f65761385c615c2a565b806308c379a014156138b95750613871615c4c565b8061387c57506138bb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b09190613d75565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ed90615d54565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461397d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397490615de6565b60405180910390fd5b505b505050505050565b6139958686868686866139f8565b61399d611748565b156139dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d490615ed2565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b6040518060800160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001600081525090565b828054613a40906149a7565b90600052602060002090601f016020900481019282613a625760008555613aa9565b82601f10613a7b57805160ff1916838001178555613aa9565b82800160010185558215613aa9579182015b82811115613aa8578251825591602001919060010190613a8d565b5b509050613ab69190613aba565b5090565b5b80821115613ad3576000816000905550600101613abb565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1682613aeb565b9050919050565b613b2681613b0b565b8114613b3157600080fd5b50565b600081359050613b4381613b1d565b92915050565b6000819050919050565b613b5c81613b49565b8114613b6757600080fd5b50565b600081359050613b7981613b53565b92915050565b60008060408385031215613b9657613b95613ae1565b5b6000613ba485828601613b34565b9250506020613bb585828601613b6a565b9150509250929050565b613bc881613b49565b82525050565b6000602082019050613be36000830184613bbf565b92915050565b600061ffff82169050919050565b613c0081613be9565b82525050565b6000602082019050613c1b6000830184613bf7565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c5681613c21565b8114613c6157600080fd5b50565b600081359050613c7381613c4d565b92915050565b600060208284031215613c8f57613c8e613ae1565b5b6000613c9d84828501613c64565b91505092915050565b60008115159050919050565b613cbb81613ca6565b82525050565b6000602082019050613cd66000830184613cb2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d16578082015181840152602081019050613cfb565b83811115613d25576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4782613cdc565b613d518185613ce7565b9350613d61818560208601613cf8565b613d6a81613d2b565b840191505092915050565b60006020820190508181036000830152613d8f8184613d3c565b905092915050565b600060ff82169050919050565b613dad81613d97565b8114613db857600080fd5b50565b600081359050613dca81613da4565b92915050565b600060208284031215613de657613de5613ae1565b5b6000613df484828501613dbb565b91505092915050565b600060208284031215613e1357613e12613ae1565b5b6000613e2184828501613b6a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e4f57613e4e613e2a565b5b8235905067ffffffffffffffff811115613e6c57613e6b613e2f565b5b602083019150836020820283011115613e8857613e87613e34565b5b9250929050565b60008060008060608587031215613ea957613ea8613ae1565b5b6000613eb787828801613dbb565b9450506020613ec887828801613dbb565b935050604085013567ffffffffffffffff811115613ee957613ee8613ae6565b5b613ef587828801613e39565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3b82613d2b565b810181811067ffffffffffffffff82111715613f5a57613f59613f03565b5b80604052505050565b6000613f6d613ad7565b9050613f798282613f32565b919050565b600067ffffffffffffffff821115613f9957613f98613f03565b5b602082029050602081019050919050565b6000613fbd613fb884613f7e565b613f63565b90508083825260208201905060208402830185811115613fe057613fdf613e34565b5b835b818110156140095780613ff58882613b6a565b845260208401935050602081019050613fe2565b5050509392505050565b600082601f83011261402857614027613e2a565b5b8135614038848260208601613faa565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406157614060613f03565b5b61406a82613d2b565b9050602081019050919050565b82818337600083830152505050565b600061409961409484614046565b613f63565b9050828152602081018484840111156140b5576140b4614041565b5b6140c0848285614077565b509392505050565b600082601f8301126140dd576140dc613e2a565b5b81356140ed848260208601614086565b91505092915050565b600080600080600060a0868803121561411257614111613ae1565b5b600061412088828901613b34565b955050602061413188828901613b34565b945050604086013567ffffffffffffffff81111561415257614151613ae6565b5b61415e88828901614013565b935050606086013567ffffffffffffffff81111561417f5761417e613ae6565b5b61418b88828901614013565b925050608086013567ffffffffffffffff8111156141ac576141ab613ae6565b5b6141b8888289016140c8565b9150509295509295909350565b600080604083850312156141dc576141db613ae1565b5b60006141ea85828601613dbb565b92505060206141fb85828601613dbb565b9150509250929050565b6000806040838503121561421c5761421b613ae1565b5b600061422a85828601613dbb565b925050602061423b85828601613b6a565b9150509250929050565b600067ffffffffffffffff8211156142605761425f613f03565b5b602082029050602081019050919050565b600061428461427f84614245565b613f63565b905080838252602082019050602084028301858111156142a7576142a6613e34565b5b835b818110156142d057806142bc8882613b34565b8452602084019350506020810190506142a9565b5050509392505050565b600082601f8301126142ef576142ee613e2a565b5b81356142ff848260208601614271565b91505092915050565b6000806040838503121561431f5761431e613ae1565b5b600083013567ffffffffffffffff81111561433d5761433c613ae6565b5b614349858286016142da565b925050602083013567ffffffffffffffff81111561436a57614369613ae6565b5b61437685828601614013565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143b581613b49565b82525050565b60006143c783836143ac565b60208301905092915050565b6000602082019050919050565b60006143eb82614380565b6143f5818561438b565b93506144008361439c565b8060005b8381101561443157815161441888826143bb565b9750614423836143d3565b925050600181019050614404565b5085935050505092915050565b6000602082019050818103600083015261445881846143e0565b905092915050565b600061446b82613aeb565b9050919050565b61447b81614460565b811461448657600080fd5b50565b60008135905061449881614472565b92915050565b600080604083850312156144b5576144b4613ae1565b5b60006144c385828601614489565b92505060206144d485828601613b6a565b9150509250929050565b6144e781613b0b565b82525050565b600060208201905061450260008301846144de565b92915050565b60008083601f84011261451e5761451d613e2a565b5b8235905067ffffffffffffffff81111561453b5761453a613e2f565b5b60208301915083600182028301111561455757614556613e34565b5b9250929050565b6000806020838503121561457557614574613ae1565b5b600083013567ffffffffffffffff81111561459357614592613ae6565b5b61459f85828601614508565b92509250509250929050565b6145b481613ca6565b81146145bf57600080fd5b50565b6000813590506145d1816145ab565b92915050565b600080604083850312156145ee576145ed613ae1565b5b60006145fc85828601613b34565b925050602061460d858286016145c2565b9150509250929050565b6000819050919050565b61462a81614617565b82525050565b60006020820190506146456000830184614621565b92915050565b61465481613be9565b82525050565b608082016000820151614670600085018261464b565b506020820151614683602085018261464b565b506040820151614696604085018261464b565b5060608201516146a960608501826143ac565b50505050565b60006080820190506146c4600083018461465a565b92915050565b6146d381613be9565b81146146de57600080fd5b50565b6000813590506146f0816146ca565b92915050565b6000806040838503121561470d5761470c613ae1565b5b600061471b85828601613dbb565b925050602061472c858286016146e1565b9150509250929050565b61473f81614617565b811461474a57600080fd5b50565b60008135905061475c81614736565b92915050565b60006020828403121561477857614777613ae1565b5b60006147868482850161474d565b91505092915050565b600080604083850312156147a6576147a5613ae1565b5b60006147b485828601613b34565b92505060206147c585828601613b34565b9150509250929050565b600080600080600060a086880312156147eb576147ea613ae1565b5b60006147f988828901613b34565b955050602061480a88828901613b34565b945050604061481b88828901613b6a565b935050606061482c88828901613b6a565b925050608086013567ffffffffffffffff81111561484d5761484c613ae6565b5b614859888289016140c8565b9150509295509295909350565b60006020828403121561487c5761487b613ae1565b5b600061488a84828501613b34565b91505092915050565b6000806000606084860312156148ac576148ab613ae1565b5b60006148ba86828701613dbb565b93505060206148cb868287016146e1565b92505060406148dc86828701613b34565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614942602b83613ce7565b915061494d826148e6565b604082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149bf57607f821691505b602082108114156149d3576149d2614978565b5b50919050565b7f496e76616c69642052617269747952616e676520494400000000000000000000600082015250565b6000614a0f601683613ce7565b9150614a1a826149d9565b602082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a7f82613b49565b9150614a8a83613b49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614abf57614abe614a45565b5b828201905092915050565b6000614ad582613b49565b9150614ae083613b49565b925082821015614af357614af2614a45565b5b828203905092915050565b7f50726573616c65206e6f74206f70656e65642e00000000000000000000000000600082015250565b6000614b34601383613ce7565b9150614b3f82614afe565b602082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ba0601083613ce7565b9150614bab82614b6a565b602082019050919050565b60006020820190508181036000830152614bcf81614b93565b9050919050565b7f416464726573732068617320616c726561647920636c61696d2e000000000000600082015250565b6000614c0c601a83613ce7565b9150614c1782614bd6565b602082019050919050565b60006020820190508181036000830152614c3b81614bff565b9050919050565b60008160601b9050919050565b6000614c5a82614c42565b9050919050565b6000614c6c82614c4f565b9050919050565b614c84614c7f82613b0b565b614c61565b82525050565b6000614c968284614c73565b60148201915081905092915050565b7f41646472657373206973206e6f742077686974656c69737465642e0000000000600082015250565b6000614cdb601b83613ce7565b9150614ce682614ca5565b602082019050919050565b60006020820190508181036000830152614d0a81614cce565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614d6d603283613ce7565b9150614d7882614d11565b604082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dd9602083613ce7565b9150614de482614da3565b602082019050919050565b60006020820190508181036000830152614e0881614dcc565b9050919050565b7f6d696e745072696365206d7573742062652067726561746572207468616e2030600082015250565b6000614e45602083613ce7565b9150614e5082614e0f565b602082019050919050565b60006020820190508181036000830152614e7481614e38565b9050919050565b614e8481613d97565b82525050565b6000604082019050614e9f6000830185614e7b565b614eac6020830184613bbf565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614f0f602983613ce7565b9150614f1a82614eb3565b604082019050919050565b60006020820190508181036000830152614f3e81614f02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f7f82613b49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fb257614fb1614a45565b5b600182019050919050565b7f6d61785065725478206d7573742062652067726561746572207468616e203000600082015250565b6000614ff3601f83613ce7565b9150614ffe82614fbd565b602082019050919050565b6000602082019050818103600083015261502281614fe6565b9050919050565b600081905092915050565b50565b6000615044600083615029565b915061504f82615034565b600082019050919050565b600061506582615037565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b60006150a5601883613ce7565b91506150b08261506f565b602082019050919050565b600060208201905081810360008301526150d481615098565b9050919050565b7f5075626c69632073616c65206e6f74206f70656e65642e000000000000000000600082015250565b6000615111601783613ce7565b915061511c826150db565b602082019050919050565b6000602082019050818103600083015261514081615104565b9050919050565b600061515282613be9565b915061515d83613be9565b92508261ffff0382111561517457615173614a45565b5b828201905092915050565b7f5075626c696320737570706c7920646964206e6f74206368616e67652e000000600082015250565b60006151b5601d83613ce7565b91506151c08261517f565b602082019050919050565b600060208201905081810360008301526151e4816151a8565b9050919050565b7f486967686572207468616e206d617820737570706c792e000000000000000000600082015250565b6000615221601783613ce7565b915061522c826151eb565b602082019050919050565b6000602082019050818103600083015261525081615214565b9050919050565b7f5075626c696320737570706c7920746f6f206c6f770000000000000000000000600082015250565b600061528d601583613ce7565b915061529882615257565b602082019050919050565b600060208201905081810360008301526152bc81615280565b9050919050565b60006060820190506152d86000830186614e7b565b6152e56020830185613bf7565b6152f26040830184613bf7565b949350505050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000615356602983613ce7565b9150615361826152fa565b604082019050919050565b6000602082019050818103600083015261538581615349565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153e8602683613ce7565b91506153f38261538c565b604082019050919050565b60006020820190508181036000830152615417816153db565b9050919050565b7f43616c6c65722073686f756c64206e6f74206265206120636f6e74726163742e600082015250565b6000615454602083613ce7565b915061545f8261541e565b602082019050919050565b6000602082019050818103600083015261548381615447565b9050919050565b7f546f6b656e2070726576696f75736c792077697468647261776e000000000000600082015250565b60006154c0601a83613ce7565b91506154cb8261548a565b602082019050919050565b600060208201905081810360008301526154ef816154b3565b9050919050565b7f546f6b656e204944206e6f7420656c696765626c6520666f7220636c61696d00600082015250565b600061552c601f83613ce7565b9150615537826154f6565b602082019050919050565b6000602082019050818103600083015261555b8161551f565b9050919050565b7f4e6f7420456e6f75676820537570706c79000000000000000000000000000000600082015250565b6000615598601183613ce7565b91506155a382615562565b602082019050919050565b600060208201905081810360008301526155c78161558b565b9050919050565b7f496e76616c696420636f756e7400000000000000000000000000000000000000600082015250565b6000615604600d83613ce7565b915061560f826155ce565b602082019050919050565b60006020820190508181036000830152615633816155f7565b9050919050565b600061564582613b49565b915061565083613b49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561568957615688614a45565b5b828202905092915050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e740000600082015250565b60006156ca601e83613ce7565b91506156d582615694565b602082019050919050565b600060208201905081810360008301526156f9816156bd565b9050919050565b600061570b82613be9565b915061ffff8214156157205761571f614a45565b5b600182019050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000615787602883613ce7565b91506157928261572b565b604082019050919050565b600060208201905081810360008301526157b68161577a565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615819602583613ce7565b9150615824826157bd565b604082019050919050565b600060208201905081810360008301526158488161580c565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006158ab602a83613ce7565b91506158b68261584f565b604082019050919050565b600060208201905081810360008301526158da8161589e565b9050919050565b600060408201905081810360008301526158fb81856143e0565b9050818103602083015261590f81846143e0565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061594e601483613ce7565b915061595982615918565b602082019050919050565b6000602082019050818103600083015261597d81615941565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006159e0602983613ce7565b91506159eb82615984565b604082019050919050565b60006020820190508181036000830152615a0f816159d3565b9050919050565b6000604082019050615a2b6000830185613bbf565b615a386020830184613bbf565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a9b602183613ce7565b9150615aa682615a3f565b604082019050919050565b60006020820190508181036000830152615aca81615a8e565b9050919050565b6000819050919050565b615aec615ae782614617565b615ad1565b82525050565b6000615afe8285615adb565b602082019150615b0e8284615adb565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000615b4582615b1e565b615b4f8185615b29565b9350615b5f818560208601613cf8565b615b6881613d2b565b840191505092915050565b600060a082019050615b8860008301886144de565b615b9560208301876144de565b8181036040830152615ba781866143e0565b90508181036060830152615bbb81856143e0565b90508181036080830152615bcf8184615b3a565b90509695505050505050565b600081519050615bea81613c4d565b92915050565b600060208284031215615c0657615c05613ae1565b5b6000615c1484828501615bdb565b91505092915050565b60008160e01c9050919050565b600060033d1115615c495760046000803e615c46600051615c1d565b90505b90565b600060443d1015615c5c57615cdf565b615c64613ad7565b60043d036004823e80513d602482011167ffffffffffffffff82111715615c8c575050615cdf565b808201805167ffffffffffffffff811115615caa5750505050615cdf565b80602083010160043d038501811115615cc7575050505050615cdf565b615cd682602001850186613f32565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615d3e603483613ce7565b9150615d4982615ce2565b604082019050919050565b60006020820190508181036000830152615d6d81615d31565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615dd0602883613ce7565b9150615ddb82615d74565b604082019050919050565b60006020820190508181036000830152615dff81615dc3565b9050919050565b600060a082019050615e1b60008301886144de565b615e2860208301876144de565b615e356040830186613bbf565b615e426060830185613bbf565b8181036080830152615e548184615b3a565b90509695505050505050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000615ebc602c83613ce7565b9150615ec782615e60565b604082019050919050565b60006020820190508181036000830152615eeb81615eaf565b905091905056fea2646970667358221220109dcc42aee1a448c929d7fb0134e6cee3b55363377fcb91280c5465f4f3317f64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f7777772e77696e636974792e636f6d2f6170692f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001357696e636974794c696c6c654c69626572746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957696e636974794c4c0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://www.wincity.com/api/metadata/
Arg [1] : _name (string): WincityLilleLiberte
Arg [2] : _symbol (string): WincityLL

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [4] : 68747470733a2f2f7777772e77696e636974792e636f6d2f6170692f6d657461
Arg [5] : 646174612f000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [7] : 57696e636974794c696c6c654c69626572746500000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 57696e636974794c4c0000000000000000000000000000000000000000000000


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.