ETH Price: $2,625.51 (+2.03%)

Token

Undead Ape Society Official Gen 2 (UAS)
 

Overview

Max Total Supply

330 UAS

Holders

181

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 UAS
0x04043da4470221950a9d75b12f2c42314e9f0a65
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:
UndeadApeSociety

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 13: UndeadApeSociety.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./MerkleProof.sol";

contract UndeadApeSociety is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 60000000000000000; // 0.06 eth
    uint256 public maxSupply = 6666; //setter to be change
    uint256 public maxMintAmount = 30; //max mint amount
    bool public paused = true;
    bool public revealed;
    bool public whitelistEnabled = true;
    string public notRevealedUri;
    address public withdrawalAccountOne =
        0x518cc602D0C0951D4AF8A7dc22C5B3fa8353E436; //founder
    address public withdrawalAccountTwo =
        0x5792b1026e98bbf32fABC6C97dAE53Cc5fC26957; //withdrawer with owner

    bytes32 public merkleRoot =
        0xb36927fe3be17449e5c2895e2f5a1c2b468156a3480e211ee66b3b34ae46342a; //will be change as we change whitelist

    mapping(address => bool) public approvalMap;

    address public founder = 0x518cc602D0C0951D4AF8A7dc22C5B3fa8353E436; //57%
    address public communityWallet = 0x509AEFfe3A4Ae8eD8D2bcfB31382b5Aee63d5f8c; //Community Wallet 10%
    address public partnerA = 0x5792b1026e98bbf32fABC6C97dAE53Cc5fC26957; //Partner10A 10%
    address public partnerB = 0xD1d48370ddE640a9e58728c235364612352F58a1; //Partner10B 10%
    address public partnerC = 0x23c9B8896A13194B2B97848B6299Ab997D2D38ba; //Partner10C 10%
    address public partnerD = 0x8Adf8482C0B7F2676405240060F668AC9aFe7d9C; //Partner10D 3%

    modifier withdrawers() {
        require(
            msg.sender == withdrawalAccountOne ||
                msg.sender == withdrawalAccountTwo
        );
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    // Minting for whitelist and public
    function mint(bytes32[] calldata _merkleProof, uint256 _mintAmount)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0, "Quantity cannot be zero");
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);
        require(msg.value >= cost * _mintAmount);

        if (whitelistEnabled == true) {
            //verify the provided _merkleProof given to us through the API call on our website
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(
                MerkleProof.verify(_merkleProof, merkleRoot, leaf),
                "Invalid Proof!!"
            );
            _safeMint(msg.sender, _mintAmount);
        } else {
            _safeMint(msg.sender, _mintAmount);
        }
    }

    // Minting for ownerOnly
    function reserveMint(uint256 _mintAmount) public payable onlyOwner {
        uint256 supply = totalSupply();
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply);
        _safeMint(msg.sender, _mintAmount);
    }

    // Reserve for community and send to community wallet
    function reserveForCommunity(uint256 _mintAmount) public payable onlyOwner {
        uint256 supply = totalSupply();
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply);
        _safeMint(communityWallet, _mintAmount);
    }

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

    //Returns URI of the particular token
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (!revealed) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    //only owner
    function reveal(bool _revealed) public onlyOwner {
        revealed = _revealed;
    }

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
        maxMintAmount = _maxMintAmount;
    }

    function setWithdrawalAccountOne(address _withdrawalAccountOne)
        public
        onlyOwner
    {
        withdrawalAccountOne = _withdrawalAccountOne;
    }

    function setWithdrawalAccountTwo(address _withdrawalAccountTwo)
        public
        onlyOwner
    {
        withdrawalAccountTwo = _withdrawalAccountTwo;
    }

    function setFounderAddress(address _founder) public onlyOwner {
        founder = _founder;
    }

    function setCommunityWallet(address _comWallet) public onlyOwner {
        communityWallet = _comWallet;
    }

    function setPartnerA(address _partnerA) public onlyOwner {
        partnerA = _partnerA;
    }

    function setPartnerB(address _partnerB) public onlyOwner {
        partnerB = _partnerB;
    }

    function setPartnerC(address _partnerC) public onlyOwner {
        partnerC = _partnerC;
    }

    function setPartnerD(address _partnerD) public onlyOwner {
        partnerD = _partnerD;
    }

    function setwhitelistEnabled(bool _whitelistEnabled) public onlyOwner {
        whitelistEnabled = _whitelistEnabled;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMerkleRoot(bytes32 _newMerkleRoot) public onlyOwner {
        merkleRoot = _newMerkleRoot;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function sendGifts(address[] memory _wallets) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            supply + _wallets.length <= maxSupply,
            "not enough tokens left"
        );
        for (uint256 i = 0; i < _wallets.length; i++) {
            _safeMint(_wallets[i], 1);
        }
    }

    function approveTransaction(bool _approvalOn) public withdrawers {
        approvalMap[msg.sender] = _approvalOn;
    }

    function withdraw() public payable withdrawers {
        require(
            approvalMap[withdrawalAccountOne],
            "First owner did not approve"
        );
        require(
            approvalMap[withdrawalAccountTwo],
            "Second owner did not approve"
        );
        uint256 hundredPercent = address(this).balance;
        uint256 fiftysevenPercent = (hundredPercent * 57) / 100;
        uint256 tenPercent = (hundredPercent * 10) / 100;
        uint256 threePercent = (hundredPercent * 3) / 100;
        payable(founder).transfer(fiftysevenPercent);
        payable(communityWallet).transfer(tenPercent);
        payable(partnerA).transfer(tenPercent);
        payable(partnerB).transfer(tenPercent);
        payable(partnerC).transfer(tenPercent);
        payable(partnerD).transfer(threePercent);
        approvalMap[withdrawalAccountOne] = false;
        approvalMap[withdrawalAccountTwo] = false;
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 2 of 13: 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 3 of 13: 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 13: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 of 13: 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 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 8 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 13: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

import "./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);
    }
}

File 11 of 13: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 12 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvalMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_approvalOn","type":"bool"}],"name":"approveTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerB","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveForCommunity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_comWallet","type":"address"}],"name":"setCommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_founder","type":"address"}],"name":"setFounderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partnerA","type":"address"}],"name":"setPartnerA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partnerB","type":"address"}],"name":"setPartnerB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partnerC","type":"address"}],"name":"setPartnerC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partnerD","type":"address"}],"name":"setPartnerD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawalAccountOne","type":"address"}],"name":"setWithdrawalAccountOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawalAccountTwo","type":"address"}],"name":"setWithdrawalAccountTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistEnabled","type":"bool"}],"name":"setwhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawalAccountOne","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalAccountTwo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000690565b5066d529ae9e860000600c55611a0a600d55601e600e556001600f60006101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555073518cc602d0c0951d4af8a7dc22c5b3fa8353e436601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735792b1026e98bbf32fabc6c97dae53cc5fc26957601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb36927fe3be17449e5c2895e2f5a1c2b468156a3480e211ee66b3b34ae46342a60001b60135573518cc602d0c0951d4af8a7dc22c5b3fa8353e436601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073509aeffe3a4ae8ed8d2bcfb31382b5aee63d5f8c601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735792b1026e98bbf32fabc6c97dae53cc5fc26957601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d1d48370dde640a9e58728c235364612352f58a1601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507323c9b8896a13194b2b97848b6299ab997d2d38ba601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738adf8482c0b7f2676405240060f668ac9afe7d9c601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200037a57600080fd5b5060405162005f5938038062005f598339818101604052810190620003a09190620007b2565b8383620003c2620003b66200044060201b60201c565b6200044860201b60201c565b8160039080519060200190620003da92919062000690565b508060049080519060200190620003f392919062000690565b50620004046200050c60201b60201c565b6001819055505050600160098190555062000425826200051160201b60201c565b6200043681620005bc60201b60201c565b5050505062000a75565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620005216200044060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005476200066760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059790620008a9565b60405180910390fd5b80600a9080519060200190620005b892919062000690565b5050565b620005cc6200044060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005f26200066760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200064b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064290620008a9565b60405180910390fd5b80601090805190602001906200066392919062000690565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200069e9062000971565b90600052602060002090601f016020900481019282620006c257600085556200070e565b82601f10620006dd57805160ff19168380011785556200070e565b828001600101855582156200070e579182015b828111156200070d578251825591602001919060010190620006f0565b5b5090506200071d919062000721565b5090565b5b808211156200073c57600081600090555060010162000722565b5090565b6000620007576200075184620008f4565b620008cb565b9050828152602081018484840111156200077057600080fd5b6200077d8482856200093b565b509392505050565b600082601f8301126200079757600080fd5b8151620007a984826020860162000740565b91505092915050565b60008060008060808587031215620007c957600080fd5b600085015167ffffffffffffffff811115620007e457600080fd5b620007f28782880162000785565b945050602085015167ffffffffffffffff8111156200081057600080fd5b6200081e8782880162000785565b935050604085015167ffffffffffffffff8111156200083c57600080fd5b6200084a8782880162000785565b925050606085015167ffffffffffffffff8111156200086857600080fd5b620008768782880162000785565b91505092959194509250565b6000620008916020836200092a565b91506200089e8262000a4c565b602082019050919050565b60006020820190508181036000830152620008c48162000882565b9050919050565b6000620008d7620008ea565b9050620008e58282620009a7565b919050565b6000604051905090565b600067ffffffffffffffff82111562000912576200091162000a0c565b5b6200091d8262000a3b565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200095b5780820151818401526020810190506200093e565b838111156200096b576000848401525b50505050565b600060028204905060018216806200098a57607f821691505b60208210811415620009a157620009a0620009dd565b5b50919050565b620009b28262000a3b565b810181811067ffffffffffffffff82111715620009d457620009d362000a0c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6154d48062000a856000396000f3fe6080604052600436106103815760003560e01c80636c9b3964116101d1578063b88d4fde11610102578063da3ef23f116100a0578063f2fde38b1161006f578063f2fde38b14610c88578063fe21f50c14610cb1578063ff01759814610cdc578063ff8a4f2014610d0557610381565b8063da3ef23f14610bd0578063e147b59114610bf9578063e985e9c514610c22578063f2c4ce1e14610c5f57610381565b8063c87b56dd116100dc578063c87b56dd14610b14578063d5abeb0114610b51578063d7b352d314610b7c578063d959d96b14610ba757610381565b8063b88d4fde14610a95578063c668286214610abe578063c757483914610ae957610381565b80637cdcebe21161016f578063940cd05b11610149578063940cd05b146109ef57806395d89b4114610a185780639a2705c614610a43578063a22cb46514610a6c57610381565b80637cdcebe21461097257806385d6bb811461099b5780638da5cb5b146109c457610381565b8063715018a6116101ab578063715018a6146108de57806374c1e1c7146108f55780637c8255db146109205780637cb647591461094957610381565b80636c9b39641461085c5780636d8cbc011461088557806370a08231146108a157610381565b80631eabab09116102b657806344a0d68a1161025457806351fb012d1161022357806351fb012d146107a057806355f804b3146107cb5780635c975abb146107f45780636352211e1461081f57610381565b806344a0d68a1461070557806345de0d9b1461072e5780634d853ee51461074a578063518302271461077557610381565b80632eb4a7ab116102905780632eb4a7ab1461067c57806332db5735146106a75780633ccfd60b146106d257806342842e0e146106dc57610381565b80631eabab09146105fd578063239c70ae1461062857806323b872dd1461065357610381565b8063095ea7b31161032357806313faede6116102fd57806313faede61461054157806315942de21461056c57806318160ddd146105a95780631a08b189146105d457610381565b8063095ea7b3146104d3578063104f3a70146104fc5780631342ff4c1461052557610381565b806306fdde031161035f57806306fdde0314610417578063081812fc14610442578063081c8c441461047f578063088a4ed0146104aa57610381565b806301ffc9a71461038657806302329a29146103c35780630628ff1a146103ec575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a8919061486d565b610d2e565b6040516103ba9190614c69565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e5919061481b565b610e10565b005b3480156103f857600080fd5b50610401610ea9565b60405161040e9190614c02565b60405180910390f35b34801561042357600080fd5b5061042c610ecf565b6040516104399190614c9f565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190614900565b610f61565b6040516104769190614c02565b60405180910390f35b34801561048b57600080fd5b50610494610fdd565b6040516104a19190614c9f565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190614900565b61106b565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190614746565b6110f1565b005b34801561050857600080fd5b50610523600480360381019061051e919061481b565b6111fc565b005b61053f600480360381019061053a9190614900565b611308565b005b34801561054d57600080fd5b506105566113c5565b6040516105639190614dc1565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906145db565b6113cb565b6040516105a09190614c69565b60405180910390f35b3480156105b557600080fd5b506105be6113eb565b6040516105cb9190614dc1565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906145db565b611402565b005b34801561060957600080fd5b506106126114c2565b60405161061f9190614c02565b60405180910390f35b34801561063457600080fd5b5061063d6114e8565b60405161064a9190614dc1565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190614640565b6114ee565b005b34801561068857600080fd5b506106916114fe565b60405161069e9190614c84565b60405180910390f35b3480156106b357600080fd5b506106bc611504565b6040516106c99190614c02565b60405180910390f35b6106da61152a565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190614640565b611b04565b005b34801561071157600080fd5b5061072c60048036038101906107279190614900565b611b24565b005b610748600480360381019061074391906147c3565b611baa565b005b34801561075657600080fd5b5061075f611d4b565b60405161076c9190614c02565b60405180910390f35b34801561078157600080fd5b5061078a611d71565b6040516107979190614c69565b60405180910390f35b3480156107ac57600080fd5b506107b5611d84565b6040516107c29190614c69565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed91906148bf565b611d97565b005b34801561080057600080fd5b50610809611e2d565b6040516108169190614c69565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190614900565b611e40565b6040516108539190614c02565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e91906145db565b611e56565b005b61089f600480360381019061089a9190614900565b611f16565b005b3480156108ad57600080fd5b506108c860048036038101906108c391906145db565b611ff5565b6040516108d59190614dc1565b60405180910390f35b3480156108ea57600080fd5b506108f36120c5565b005b34801561090157600080fd5b5061090a61214d565b6040516109179190614c02565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614782565b612173565b005b34801561095557600080fd5b50610970600480360381019061096b9190614844565b6122bb565b005b34801561097e57600080fd5b506109996004803603810190610994919061481b565b612341565b005b3480156109a757600080fd5b506109c260048036038101906109bd91906145db565b6123da565b005b3480156109d057600080fd5b506109d961249a565b6040516109e69190614c02565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a11919061481b565b6124c3565b005b348015610a2457600080fd5b50610a2d61255c565b604051610a3a9190614c9f565b60405180910390f35b348015610a4f57600080fd5b50610a6a6004803603810190610a6591906145db565b6125ee565b005b348015610a7857600080fd5b50610a936004803603810190610a8e919061470a565b6126ae565b005b348015610aa157600080fd5b50610abc6004803603810190610ab7919061468f565b612826565b005b348015610aca57600080fd5b50610ad36128a2565b604051610ae09190614c9f565b60405180910390f35b348015610af557600080fd5b50610afe612930565b604051610b0b9190614c02565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b369190614900565b612956565b604051610b489190614c9f565b60405180910390f35b348015610b5d57600080fd5b50610b66612aa7565b604051610b739190614dc1565b60405180910390f35b348015610b8857600080fd5b50610b91612aad565b604051610b9e9190614c02565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc991906145db565b612ad3565b005b348015610bdc57600080fd5b50610bf76004803603810190610bf291906148bf565b612b93565b005b348015610c0557600080fd5b50610c206004803603810190610c1b91906145db565b612c29565b005b348015610c2e57600080fd5b50610c496004803603810190610c449190614604565b612ce9565b604051610c569190614c69565b60405180910390f35b348015610c6b57600080fd5b50610c866004803603810190610c8191906148bf565b612d7d565b005b348015610c9457600080fd5b50610caf6004803603810190610caa91906145db565b612e13565b005b348015610cbd57600080fd5b50610cc6612f0b565b604051610cd39190614c02565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe91906145db565b612f31565b005b348015610d1157600080fd5b50610d2c6004803603810190610d2791906145db565b612ff1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610df957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e095750610e08826130b1565b5b9050919050565b610e1861311b565b73ffffffffffffffffffffffffffffffffffffffff16610e3661249a565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390614d41565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ede906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0a906150bc565b8015610f575780601f10610f2c57610100808354040283529160200191610f57565b820191906000526020600020905b815481529060010190602001808311610f3a57829003601f168201915b5050505050905090565b6000610f6c82613123565b610fa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60108054610fea906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611016906150bc565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b61107361311b565b73ffffffffffffffffffffffffffffffffffffffff1661109161249a565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614d41565b60405180910390fd5b80600e8190555050565b60006110fc82611e40565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611164576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661118361311b565b73ffffffffffffffffffffffffffffffffffffffff16141580156111b557506111b3816111ae61311b565b612ce9565b155b156111ec576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111f7838383613171565b505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112a55750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112ae57600080fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61131061311b565b73ffffffffffffffffffffffffffffffffffffffff1661132e61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614d41565b60405180910390fd5b600061138e6113eb565b90506000821161139d57600080fd5b600d5482826113ac9190614ee7565b11156113b757600080fd5b6113c13383613223565b5050565b600c5481565b60146020528060005260406000206000915054906101000a900460ff1681565b60006113f5613241565b6002546001540303905090565b61140a61311b565b73ffffffffffffffffffffffffffffffffffffffff1661142861249a565b73ffffffffffffffffffffffffffffffffffffffff161461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590614d41565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6114f9838383613246565b505050565b60135481565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115d35750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6115dc57600080fd5b60146000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190614d21565b60405180910390fd5b60146000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90614da1565b60405180910390fd5b60004790506000606460398361174e9190614f6e565b6117589190614f3d565b905060006064600a8461176b9190614f6e565b6117759190614f3d565b9050600060646003856117889190614f6e565b6117929190614f3d565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156117fc573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611865573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156118ce573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611937573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156119a0573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611a09573d6000803e3d6000fd5b50600060146000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060146000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b611b1f83838360405180602001604052806000815250612826565b505050565b611b2c61311b565b73ffffffffffffffffffffffffffffffffffffffff16611b4a61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614d41565b60405180910390fd5b80600c8190555050565b6000611bb46113eb565b9050600f60009054906101000a900460ff1615611bd057600080fd5b60008211611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614d01565b60405180910390fd5b600e54821115611c2257600080fd5b600d548282611c319190614ee7565b1115611c3c57600080fd5b81600c54611c4a9190614f6e565b341015611c5657600080fd5b60011515600f60029054906101000a900460ff1615151415611d3a57600033604051602001611c859190614bb6565b604051602081830303815290604052805190602001209050611ceb858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601354836136fc565b611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190614ce1565b60405180910390fd5b611d343384613223565b50611d45565b611d443383613223565b5b50505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60019054906101000a900460ff1681565b600f60029054906101000a900460ff1681565b611d9f61311b565b73ffffffffffffffffffffffffffffffffffffffff16611dbd61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90614d41565b60405180910390fd5b80600a9080519060200190611e299291906142c7565b5050565b600f60009054906101000a900460ff1681565b6000611e4b82613713565b600001519050919050565b611e5e61311b565b73ffffffffffffffffffffffffffffffffffffffff16611e7c61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614d41565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f1e61311b565b73ffffffffffffffffffffffffffffffffffffffff16611f3c61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614d41565b60405180910390fd5b6000611f9c6113eb565b905060008211611fab57600080fd5b600d548282611fba9190614ee7565b1115611fc557600080fd5b611ff1601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613223565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561205d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6120cd61311b565b73ffffffffffffffffffffffffffffffffffffffff166120eb61249a565b73ffffffffffffffffffffffffffffffffffffffff1614612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213890614d41565b60405180910390fd5b61214b60006139a2565b565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61217b61311b565b73ffffffffffffffffffffffffffffffffffffffff1661219961249a565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690614d41565b60405180910390fd5b60006121f96113eb565b9050600d5482518261220b9190614ee7565b111561224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390614d81565b60405180910390fd5b60005b82518110156122b6576122a3838281518110612294577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001613223565b80806122ae9061511f565b91505061224f565b505050565b6122c361311b565b73ffffffffffffffffffffffffffffffffffffffff166122e161249a565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90614d41565b60405180910390fd5b8060138190555050565b61234961311b565b73ffffffffffffffffffffffffffffffffffffffff1661236761249a565b73ffffffffffffffffffffffffffffffffffffffff16146123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490614d41565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6123e261311b565b73ffffffffffffffffffffffffffffffffffffffff1661240061249a565b73ffffffffffffffffffffffffffffffffffffffff1614612456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d90614d41565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124cb61311b565b73ffffffffffffffffffffffffffffffffffffffff166124e961249a565b73ffffffffffffffffffffffffffffffffffffffff161461253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614d41565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b60606004805461256b906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054612597906150bc565b80156125e45780601f106125b9576101008083540402835291602001916125e4565b820191906000526020600020905b8154815290600101906020018083116125c757829003601f168201915b5050505050905090565b6125f661311b565b73ffffffffffffffffffffffffffffffffffffffff1661261461249a565b73ffffffffffffffffffffffffffffffffffffffff161461266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614d41565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6126b661311b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061272861311b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127d561311b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161281a9190614c69565b60405180910390a35050565b612831848484613246565b6128508373ffffffffffffffffffffffffffffffffffffffff16613a66565b8015612865575061286384848484613a89565b155b1561289c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b80546128af906150bc565b80601f01602080910402602001604051908101604052809291908181526020018280546128db906150bc565b80156129285780601f106128fd57610100808354040283529160200191612928565b820191906000526020600020905b81548152906001019060200180831161290b57829003601f168201915b505050505081565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061296182613123565b6129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790614d61565b60405180910390fd5b600f60019054906101000a900460ff16612a4657601080546129c1906150bc565b80601f01602080910402602001604051908101604052809291908181526020018280546129ed906150bc565b8015612a3a5780601f10612a0f57610100808354040283529160200191612a3a565b820191906000526020600020905b815481529060010190602001808311612a1d57829003601f168201915b50505050509050612aa2565b6000612a50613be9565b90506000815111612a705760405180602001604052806000815250612a9e565b80612a7a84613c7b565b600b604051602001612a8e93929190614bd1565b6040516020818303038152906040525b9150505b919050565b600d5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612adb61311b565b73ffffffffffffffffffffffffffffffffffffffff16612af961249a565b73ffffffffffffffffffffffffffffffffffffffff1614612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4690614d41565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b9b61311b565b73ffffffffffffffffffffffffffffffffffffffff16612bb961249a565b73ffffffffffffffffffffffffffffffffffffffff1614612c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0690614d41565b60405180910390fd5b80600b9080519060200190612c259291906142c7565b5050565b612c3161311b565b73ffffffffffffffffffffffffffffffffffffffff16612c4f61249a565b73ffffffffffffffffffffffffffffffffffffffff1614612ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9c90614d41565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d8561311b565b73ffffffffffffffffffffffffffffffffffffffff16612da361249a565b73ffffffffffffffffffffffffffffffffffffffff1614612df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df090614d41565b60405180910390fd5b8060109080519060200190612e0f9291906142c7565b5050565b612e1b61311b565b73ffffffffffffffffffffffffffffffffffffffff16612e3961249a565b73ffffffffffffffffffffffffffffffffffffffff1614612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8690614d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef690614cc1565b60405180910390fd5b612f08816139a2565b50565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612f3961311b565b73ffffffffffffffffffffffffffffffffffffffff16612f5761249a565b73ffffffffffffffffffffffffffffffffffffffff1614612fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa490614d41565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ff961311b565b73ffffffffffffffffffffffffffffffffffffffff1661301761249a565b73ffffffffffffffffffffffffffffffffffffffff161461306d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306490614d41565b60405180910390fd5b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161312e613241565b1115801561313d575060015482105b801561316a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61323d828260405180602001604052806000815250613e28565b5050565b600090565b600061325182613713565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132bc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166132dd61311b565b73ffffffffffffffffffffffffffffffffffffffff16148061330c575061330b8561330661311b565b612ce9565b5b80613351575061331a61311b565b73ffffffffffffffffffffffffffffffffffffffff1661333984610f61565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061338a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133fe8585856001613e3a565b61340a60008487613171565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561368a57600154821461368957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136f58585856001613e40565b5050505050565b6000826137098584613e46565b1490509392505050565b61371b61434d565b600082905080613729613241565b11158015613738575060015481105b1561396b576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161396957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461384d57809250505061399d565b5b60011561396857818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461396357809250505061399d565b61384e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613aaf61311b565b8786866040518563ffffffff1660e01b8152600401613ad19493929190614c1d565b602060405180830381600087803b158015613aeb57600080fd5b505af1925050508015613b1c57506040513d601f19601f82011682018060405250810190613b199190614896565b60015b613b96573d8060008114613b4c576040519150601f19603f3d011682016040523d82523d6000602084013e613b51565b606091505b50600081511415613b8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054613bf8906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054613c24906150bc565b8015613c715780601f10613c4657610100808354040283529160200191613c71565b820191906000526020600020905b815481529060010190602001808311613c5457829003601f168201915b5050505050905090565b60606000821415613cc3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613e23565b600082905060005b60008214613cf5578080613cde9061511f565b915050600a82613cee9190614f3d565b9150613ccb565b60008167ffffffffffffffff811115613d37577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613d695781602001600182028036833780820191505090505b5090505b60008514613e1c57600182613d829190614fc8565b9150600a85613d91919061518c565b6030613d9d9190614ee7565b60f81b818381518110613dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613e159190614f3d565b9450613d6d565b8093505050505b919050565b613e358383836001613ee1565b505050565b50505050565b50505050565b60008082905060005b8451811015613ed6576000858281518110613e93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613eb557613eae83826142b0565b9250613ec2565b613ebf81846142b0565b92505b508080613ece9061511f565b915050613e4f565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613f4f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613f8a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613f976000868387613e3a565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561416157506141608773ffffffffffffffffffffffffffffffffffffffff16613a66565b5b15614227575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46141d66000888480600101955088613a89565b61420c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561416757826001541461422257600080fd5b614293565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614228575b8160018190555050506142a96000868387613e40565b5050505050565b600082600052816020526040600020905092915050565b8280546142d3906150bc565b90600052602060002090601f0160209004810192826142f5576000855561433c565b82601f1061430e57805160ff191683800117855561433c565b8280016001018555821561433c579182015b8281111561433b578251825591602001919060010190614320565b5b5090506143499190614390565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156143a9576000816000905550600101614391565b5090565b60006143c06143bb84614e01565b614ddc565b905080838252602082019050828560208602820111156143df57600080fd5b60005b8581101561440f57816143f58882614495565b8452602084019350602083019250506001810190506143e2565b5050509392505050565b600061442c61442784614e2d565b614ddc565b90508281526020810184848401111561444457600080fd5b61444f84828561507a565b509392505050565b600061446a61446584614e5e565b614ddc565b90508281526020810184848401111561448257600080fd5b61448d84828561507a565b509392505050565b6000813590506144a48161542b565b92915050565b600082601f8301126144bb57600080fd5b81356144cb8482602086016143ad565b91505092915050565b60008083601f8401126144e657600080fd5b8235905067ffffffffffffffff8111156144ff57600080fd5b60208301915083602082028301111561451757600080fd5b9250929050565b60008135905061452d81615442565b92915050565b60008135905061454281615459565b92915050565b60008135905061455781615470565b92915050565b60008151905061456c81615470565b92915050565b600082601f83011261458357600080fd5b8135614593848260208601614419565b91505092915050565b600082601f8301126145ad57600080fd5b81356145bd848260208601614457565b91505092915050565b6000813590506145d581615487565b92915050565b6000602082840312156145ed57600080fd5b60006145fb84828501614495565b91505092915050565b6000806040838503121561461757600080fd5b600061462585828601614495565b925050602061463685828601614495565b9150509250929050565b60008060006060848603121561465557600080fd5b600061466386828701614495565b935050602061467486828701614495565b9250506040614685868287016145c6565b9150509250925092565b600080600080608085870312156146a557600080fd5b60006146b387828801614495565b94505060206146c487828801614495565b93505060406146d5878288016145c6565b925050606085013567ffffffffffffffff8111156146f257600080fd5b6146fe87828801614572565b91505092959194509250565b6000806040838503121561471d57600080fd5b600061472b85828601614495565b925050602061473c8582860161451e565b9150509250929050565b6000806040838503121561475957600080fd5b600061476785828601614495565b9250506020614778858286016145c6565b9150509250929050565b60006020828403121561479457600080fd5b600082013567ffffffffffffffff8111156147ae57600080fd5b6147ba848285016144aa565b91505092915050565b6000806000604084860312156147d857600080fd5b600084013567ffffffffffffffff8111156147f257600080fd5b6147fe868287016144d4565b93509350506020614811868287016145c6565b9150509250925092565b60006020828403121561482d57600080fd5b600061483b8482850161451e565b91505092915050565b60006020828403121561485657600080fd5b600061486484828501614533565b91505092915050565b60006020828403121561487f57600080fd5b600061488d84828501614548565b91505092915050565b6000602082840312156148a857600080fd5b60006148b68482850161455d565b91505092915050565b6000602082840312156148d157600080fd5b600082013567ffffffffffffffff8111156148eb57600080fd5b6148f78482850161459c565b91505092915050565b60006020828403121561491257600080fd5b6000614920848285016145c6565b91505092915050565b61493281614ffc565b82525050565b61494961494482614ffc565b615168565b82525050565b6149588161500e565b82525050565b6149678161501a565b82525050565b600061497882614ea4565b6149828185614eba565b9350614992818560208601615089565b61499b81615279565b840191505092915050565b60006149b182614eaf565b6149bb8185614ecb565b93506149cb818560208601615089565b6149d481615279565b840191505092915050565b60006149ea82614eaf565b6149f48185614edc565b9350614a04818560208601615089565b80840191505092915050565b60008154614a1d816150bc565b614a278186614edc565b94506001821660008114614a425760018114614a5357614a86565b60ff19831686528186019350614a86565b614a5c85614e8f565b60005b83811015614a7e57815481890152600182019150602081019050614a5f565b838801955050505b50505092915050565b6000614a9c602683614ecb565b9150614aa782615297565b604082019050919050565b6000614abf600f83614ecb565b9150614aca826152e6565b602082019050919050565b6000614ae2601783614ecb565b9150614aed8261530f565b602082019050919050565b6000614b05601b83614ecb565b9150614b1082615338565b602082019050919050565b6000614b28602083614ecb565b9150614b3382615361565b602082019050919050565b6000614b4b602f83614ecb565b9150614b568261538a565b604082019050919050565b6000614b6e601683614ecb565b9150614b79826153d9565b602082019050919050565b6000614b91601c83614ecb565b9150614b9c82615402565b602082019050919050565b614bb081615070565b82525050565b6000614bc28284614938565b60148201915081905092915050565b6000614bdd82866149df565b9150614be982856149df565b9150614bf58284614a10565b9150819050949350505050565b6000602082019050614c176000830184614929565b92915050565b6000608082019050614c326000830187614929565b614c3f6020830186614929565b614c4c6040830185614ba7565b8181036060830152614c5e818461496d565b905095945050505050565b6000602082019050614c7e600083018461494f565b92915050565b6000602082019050614c99600083018461495e565b92915050565b60006020820190508181036000830152614cb981846149a6565b905092915050565b60006020820190508181036000830152614cda81614a8f565b9050919050565b60006020820190508181036000830152614cfa81614ab2565b9050919050565b60006020820190508181036000830152614d1a81614ad5565b9050919050565b60006020820190508181036000830152614d3a81614af8565b9050919050565b60006020820190508181036000830152614d5a81614b1b565b9050919050565b60006020820190508181036000830152614d7a81614b3e565b9050919050565b60006020820190508181036000830152614d9a81614b61565b9050919050565b60006020820190508181036000830152614dba81614b84565b9050919050565b6000602082019050614dd66000830184614ba7565b92915050565b6000614de6614df7565b9050614df282826150ee565b919050565b6000604051905090565b600067ffffffffffffffff821115614e1c57614e1b61524a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e4857614e4761524a565b5b614e5182615279565b9050602081019050919050565b600067ffffffffffffffff821115614e7957614e7861524a565b5b614e8282615279565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ef282615070565b9150614efd83615070565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f3257614f316151bd565b5b828201905092915050565b6000614f4882615070565b9150614f5383615070565b925082614f6357614f626151ec565b5b828204905092915050565b6000614f7982615070565b9150614f8483615070565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fbd57614fbc6151bd565b5b828202905092915050565b6000614fd382615070565b9150614fde83615070565b925082821015614ff157614ff06151bd565b5b828203905092915050565b600061500782615050565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156150a757808201518184015260208101905061508c565b838111156150b6576000848401525b50505050565b600060028204905060018216806150d457607f821691505b602082108114156150e8576150e761521b565b5b50919050565b6150f782615279565b810181811067ffffffffffffffff821117156151165761511561524a565b5b80604052505050565b600061512a82615070565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561515d5761515c6151bd565b5b600182019050919050565b60006151738261517a565b9050919050565b60006151858261528a565b9050919050565b600061519782615070565b91506151a283615070565b9250826151b2576151b16151ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f6621210000000000000000000000000000000000600082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4669727374206f776e657220646964206e6f7420617070726f76650000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f5365636f6e64206f776e657220646964206e6f7420617070726f766500000000600082015250565b61543481614ffc565b811461543f57600080fd5b50565b61544b8161500e565b811461545657600080fd5b50565b6154628161501a565b811461546d57600080fd5b50565b61547981615024565b811461548457600080fd5b50565b61549081615070565b811461549b57600080fd5b5056fea26469706673582212208ad79600a4d25f286a387f005fe4705eb97b2780f48df9f7721a279629c7006964736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000021556e646561642041706520536f6369657479204f6666696369616c2047656e20320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035541530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5850764d4141634477346166313232786e6b387a6d74724b665667733368433238735454436247517567426500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5850764d4141634477346166313232786e6b387a6d74724b665667733368433238735454436247517567426500000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103815760003560e01c80636c9b3964116101d1578063b88d4fde11610102578063da3ef23f116100a0578063f2fde38b1161006f578063f2fde38b14610c88578063fe21f50c14610cb1578063ff01759814610cdc578063ff8a4f2014610d0557610381565b8063da3ef23f14610bd0578063e147b59114610bf9578063e985e9c514610c22578063f2c4ce1e14610c5f57610381565b8063c87b56dd116100dc578063c87b56dd14610b14578063d5abeb0114610b51578063d7b352d314610b7c578063d959d96b14610ba757610381565b8063b88d4fde14610a95578063c668286214610abe578063c757483914610ae957610381565b80637cdcebe21161016f578063940cd05b11610149578063940cd05b146109ef57806395d89b4114610a185780639a2705c614610a43578063a22cb46514610a6c57610381565b80637cdcebe21461097257806385d6bb811461099b5780638da5cb5b146109c457610381565b8063715018a6116101ab578063715018a6146108de57806374c1e1c7146108f55780637c8255db146109205780637cb647591461094957610381565b80636c9b39641461085c5780636d8cbc011461088557806370a08231146108a157610381565b80631eabab09116102b657806344a0d68a1161025457806351fb012d1161022357806351fb012d146107a057806355f804b3146107cb5780635c975abb146107f45780636352211e1461081f57610381565b806344a0d68a1461070557806345de0d9b1461072e5780634d853ee51461074a578063518302271461077557610381565b80632eb4a7ab116102905780632eb4a7ab1461067c57806332db5735146106a75780633ccfd60b146106d257806342842e0e146106dc57610381565b80631eabab09146105fd578063239c70ae1461062857806323b872dd1461065357610381565b8063095ea7b31161032357806313faede6116102fd57806313faede61461054157806315942de21461056c57806318160ddd146105a95780631a08b189146105d457610381565b8063095ea7b3146104d3578063104f3a70146104fc5780631342ff4c1461052557610381565b806306fdde031161035f57806306fdde0314610417578063081812fc14610442578063081c8c441461047f578063088a4ed0146104aa57610381565b806301ffc9a71461038657806302329a29146103c35780630628ff1a146103ec575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a8919061486d565b610d2e565b6040516103ba9190614c69565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e5919061481b565b610e10565b005b3480156103f857600080fd5b50610401610ea9565b60405161040e9190614c02565b60405180910390f35b34801561042357600080fd5b5061042c610ecf565b6040516104399190614c9f565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190614900565b610f61565b6040516104769190614c02565b60405180910390f35b34801561048b57600080fd5b50610494610fdd565b6040516104a19190614c9f565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190614900565b61106b565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190614746565b6110f1565b005b34801561050857600080fd5b50610523600480360381019061051e919061481b565b6111fc565b005b61053f600480360381019061053a9190614900565b611308565b005b34801561054d57600080fd5b506105566113c5565b6040516105639190614dc1565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906145db565b6113cb565b6040516105a09190614c69565b60405180910390f35b3480156105b557600080fd5b506105be6113eb565b6040516105cb9190614dc1565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906145db565b611402565b005b34801561060957600080fd5b506106126114c2565b60405161061f9190614c02565b60405180910390f35b34801561063457600080fd5b5061063d6114e8565b60405161064a9190614dc1565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190614640565b6114ee565b005b34801561068857600080fd5b506106916114fe565b60405161069e9190614c84565b60405180910390f35b3480156106b357600080fd5b506106bc611504565b6040516106c99190614c02565b60405180910390f35b6106da61152a565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190614640565b611b04565b005b34801561071157600080fd5b5061072c60048036038101906107279190614900565b611b24565b005b610748600480360381019061074391906147c3565b611baa565b005b34801561075657600080fd5b5061075f611d4b565b60405161076c9190614c02565b60405180910390f35b34801561078157600080fd5b5061078a611d71565b6040516107979190614c69565b60405180910390f35b3480156107ac57600080fd5b506107b5611d84565b6040516107c29190614c69565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed91906148bf565b611d97565b005b34801561080057600080fd5b50610809611e2d565b6040516108169190614c69565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190614900565b611e40565b6040516108539190614c02565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e91906145db565b611e56565b005b61089f600480360381019061089a9190614900565b611f16565b005b3480156108ad57600080fd5b506108c860048036038101906108c391906145db565b611ff5565b6040516108d59190614dc1565b60405180910390f35b3480156108ea57600080fd5b506108f36120c5565b005b34801561090157600080fd5b5061090a61214d565b6040516109179190614c02565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614782565b612173565b005b34801561095557600080fd5b50610970600480360381019061096b9190614844565b6122bb565b005b34801561097e57600080fd5b506109996004803603810190610994919061481b565b612341565b005b3480156109a757600080fd5b506109c260048036038101906109bd91906145db565b6123da565b005b3480156109d057600080fd5b506109d961249a565b6040516109e69190614c02565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a11919061481b565b6124c3565b005b348015610a2457600080fd5b50610a2d61255c565b604051610a3a9190614c9f565b60405180910390f35b348015610a4f57600080fd5b50610a6a6004803603810190610a6591906145db565b6125ee565b005b348015610a7857600080fd5b50610a936004803603810190610a8e919061470a565b6126ae565b005b348015610aa157600080fd5b50610abc6004803603810190610ab7919061468f565b612826565b005b348015610aca57600080fd5b50610ad36128a2565b604051610ae09190614c9f565b60405180910390f35b348015610af557600080fd5b50610afe612930565b604051610b0b9190614c02565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b369190614900565b612956565b604051610b489190614c9f565b60405180910390f35b348015610b5d57600080fd5b50610b66612aa7565b604051610b739190614dc1565b60405180910390f35b348015610b8857600080fd5b50610b91612aad565b604051610b9e9190614c02565b60405180910390f35b348015610bb357600080fd5b50610bce6004803603810190610bc991906145db565b612ad3565b005b348015610bdc57600080fd5b50610bf76004803603810190610bf291906148bf565b612b93565b005b348015610c0557600080fd5b50610c206004803603810190610c1b91906145db565b612c29565b005b348015610c2e57600080fd5b50610c496004803603810190610c449190614604565b612ce9565b604051610c569190614c69565b60405180910390f35b348015610c6b57600080fd5b50610c866004803603810190610c8191906148bf565b612d7d565b005b348015610c9457600080fd5b50610caf6004803603810190610caa91906145db565b612e13565b005b348015610cbd57600080fd5b50610cc6612f0b565b604051610cd39190614c02565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe91906145db565b612f31565b005b348015610d1157600080fd5b50610d2c6004803603810190610d2791906145db565b612ff1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610df957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e095750610e08826130b1565b5b9050919050565b610e1861311b565b73ffffffffffffffffffffffffffffffffffffffff16610e3661249a565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390614d41565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ede906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0a906150bc565b8015610f575780601f10610f2c57610100808354040283529160200191610f57565b820191906000526020600020905b815481529060010190602001808311610f3a57829003601f168201915b5050505050905090565b6000610f6c82613123565b610fa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60108054610fea906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611016906150bc565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b61107361311b565b73ffffffffffffffffffffffffffffffffffffffff1661109161249a565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614d41565b60405180910390fd5b80600e8190555050565b60006110fc82611e40565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611164576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661118361311b565b73ffffffffffffffffffffffffffffffffffffffff16141580156111b557506111b3816111ae61311b565b612ce9565b155b156111ec576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111f7838383613171565b505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112a55750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112ae57600080fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61131061311b565b73ffffffffffffffffffffffffffffffffffffffff1661132e61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614d41565b60405180910390fd5b600061138e6113eb565b90506000821161139d57600080fd5b600d5482826113ac9190614ee7565b11156113b757600080fd5b6113c13383613223565b5050565b600c5481565b60146020528060005260406000206000915054906101000a900460ff1681565b60006113f5613241565b6002546001540303905090565b61140a61311b565b73ffffffffffffffffffffffffffffffffffffffff1661142861249a565b73ffffffffffffffffffffffffffffffffffffffff161461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590614d41565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6114f9838383613246565b505050565b60135481565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115d35750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6115dc57600080fd5b60146000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190614d21565b60405180910390fd5b60146000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90614da1565b60405180910390fd5b60004790506000606460398361174e9190614f6e565b6117589190614f3d565b905060006064600a8461176b9190614f6e565b6117759190614f3d565b9050600060646003856117889190614f6e565b6117929190614f3d565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156117fc573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611865573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156118ce573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611937573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156119a0573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611a09573d6000803e3d6000fd5b50600060146000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060146000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b611b1f83838360405180602001604052806000815250612826565b505050565b611b2c61311b565b73ffffffffffffffffffffffffffffffffffffffff16611b4a61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614d41565b60405180910390fd5b80600c8190555050565b6000611bb46113eb565b9050600f60009054906101000a900460ff1615611bd057600080fd5b60008211611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614d01565b60405180910390fd5b600e54821115611c2257600080fd5b600d548282611c319190614ee7565b1115611c3c57600080fd5b81600c54611c4a9190614f6e565b341015611c5657600080fd5b60011515600f60029054906101000a900460ff1615151415611d3a57600033604051602001611c859190614bb6565b604051602081830303815290604052805190602001209050611ceb858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601354836136fc565b611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190614ce1565b60405180910390fd5b611d343384613223565b50611d45565b611d443383613223565b5b50505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60019054906101000a900460ff1681565b600f60029054906101000a900460ff1681565b611d9f61311b565b73ffffffffffffffffffffffffffffffffffffffff16611dbd61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90614d41565b60405180910390fd5b80600a9080519060200190611e299291906142c7565b5050565b600f60009054906101000a900460ff1681565b6000611e4b82613713565b600001519050919050565b611e5e61311b565b73ffffffffffffffffffffffffffffffffffffffff16611e7c61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614d41565b60405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f1e61311b565b73ffffffffffffffffffffffffffffffffffffffff16611f3c61249a565b73ffffffffffffffffffffffffffffffffffffffff1614611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614d41565b60405180910390fd5b6000611f9c6113eb565b905060008211611fab57600080fd5b600d548282611fba9190614ee7565b1115611fc557600080fd5b611ff1601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613223565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561205d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6120cd61311b565b73ffffffffffffffffffffffffffffffffffffffff166120eb61249a565b73ffffffffffffffffffffffffffffffffffffffff1614612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213890614d41565b60405180910390fd5b61214b60006139a2565b565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61217b61311b565b73ffffffffffffffffffffffffffffffffffffffff1661219961249a565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690614d41565b60405180910390fd5b60006121f96113eb565b9050600d5482518261220b9190614ee7565b111561224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390614d81565b60405180910390fd5b60005b82518110156122b6576122a3838281518110612294577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001613223565b80806122ae9061511f565b91505061224f565b505050565b6122c361311b565b73ffffffffffffffffffffffffffffffffffffffff166122e161249a565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90614d41565b60405180910390fd5b8060138190555050565b61234961311b565b73ffffffffffffffffffffffffffffffffffffffff1661236761249a565b73ffffffffffffffffffffffffffffffffffffffff16146123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490614d41565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6123e261311b565b73ffffffffffffffffffffffffffffffffffffffff1661240061249a565b73ffffffffffffffffffffffffffffffffffffffff1614612456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d90614d41565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124cb61311b565b73ffffffffffffffffffffffffffffffffffffffff166124e961249a565b73ffffffffffffffffffffffffffffffffffffffff161461253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614d41565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b60606004805461256b906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054612597906150bc565b80156125e45780601f106125b9576101008083540402835291602001916125e4565b820191906000526020600020905b8154815290600101906020018083116125c757829003601f168201915b5050505050905090565b6125f661311b565b73ffffffffffffffffffffffffffffffffffffffff1661261461249a565b73ffffffffffffffffffffffffffffffffffffffff161461266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614d41565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6126b661311b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061272861311b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127d561311b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161281a9190614c69565b60405180910390a35050565b612831848484613246565b6128508373ffffffffffffffffffffffffffffffffffffffff16613a66565b8015612865575061286384848484613a89565b155b1561289c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b80546128af906150bc565b80601f01602080910402602001604051908101604052809291908181526020018280546128db906150bc565b80156129285780601f106128fd57610100808354040283529160200191612928565b820191906000526020600020905b81548152906001019060200180831161290b57829003601f168201915b505050505081565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061296182613123565b6129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790614d61565b60405180910390fd5b600f60019054906101000a900460ff16612a4657601080546129c1906150bc565b80601f01602080910402602001604051908101604052809291908181526020018280546129ed906150bc565b8015612a3a5780601f10612a0f57610100808354040283529160200191612a3a565b820191906000526020600020905b815481529060010190602001808311612a1d57829003601f168201915b50505050509050612aa2565b6000612a50613be9565b90506000815111612a705760405180602001604052806000815250612a9e565b80612a7a84613c7b565b600b604051602001612a8e93929190614bd1565b6040516020818303038152906040525b9150505b919050565b600d5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612adb61311b565b73ffffffffffffffffffffffffffffffffffffffff16612af961249a565b73ffffffffffffffffffffffffffffffffffffffff1614612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4690614d41565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b9b61311b565b73ffffffffffffffffffffffffffffffffffffffff16612bb961249a565b73ffffffffffffffffffffffffffffffffffffffff1614612c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0690614d41565b60405180910390fd5b80600b9080519060200190612c259291906142c7565b5050565b612c3161311b565b73ffffffffffffffffffffffffffffffffffffffff16612c4f61249a565b73ffffffffffffffffffffffffffffffffffffffff1614612ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9c90614d41565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d8561311b565b73ffffffffffffffffffffffffffffffffffffffff16612da361249a565b73ffffffffffffffffffffffffffffffffffffffff1614612df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df090614d41565b60405180910390fd5b8060109080519060200190612e0f9291906142c7565b5050565b612e1b61311b565b73ffffffffffffffffffffffffffffffffffffffff16612e3961249a565b73ffffffffffffffffffffffffffffffffffffffff1614612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8690614d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef690614cc1565b60405180910390fd5b612f08816139a2565b50565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612f3961311b565b73ffffffffffffffffffffffffffffffffffffffff16612f5761249a565b73ffffffffffffffffffffffffffffffffffffffff1614612fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa490614d41565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ff961311b565b73ffffffffffffffffffffffffffffffffffffffff1661301761249a565b73ffffffffffffffffffffffffffffffffffffffff161461306d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306490614d41565b60405180910390fd5b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161312e613241565b1115801561313d575060015482105b801561316a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61323d828260405180602001604052806000815250613e28565b5050565b600090565b600061325182613713565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132bc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166132dd61311b565b73ffffffffffffffffffffffffffffffffffffffff16148061330c575061330b8561330661311b565b612ce9565b5b80613351575061331a61311b565b73ffffffffffffffffffffffffffffffffffffffff1661333984610f61565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061338a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133fe8585856001613e3a565b61340a60008487613171565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561368a57600154821461368957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136f58585856001613e40565b5050505050565b6000826137098584613e46565b1490509392505050565b61371b61434d565b600082905080613729613241565b11158015613738575060015481105b1561396b576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161396957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461384d57809250505061399d565b5b60011561396857818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461396357809250505061399d565b61384e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613aaf61311b565b8786866040518563ffffffff1660e01b8152600401613ad19493929190614c1d565b602060405180830381600087803b158015613aeb57600080fd5b505af1925050508015613b1c57506040513d601f19601f82011682018060405250810190613b199190614896565b60015b613b96573d8060008114613b4c576040519150601f19603f3d011682016040523d82523d6000602084013e613b51565b606091505b50600081511415613b8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054613bf8906150bc565b80601f0160208091040260200160405190810160405280929190818152602001828054613c24906150bc565b8015613c715780601f10613c4657610100808354040283529160200191613c71565b820191906000526020600020905b815481529060010190602001808311613c5457829003601f168201915b5050505050905090565b60606000821415613cc3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613e23565b600082905060005b60008214613cf5578080613cde9061511f565b915050600a82613cee9190614f3d565b9150613ccb565b60008167ffffffffffffffff811115613d37577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613d695781602001600182028036833780820191505090505b5090505b60008514613e1c57600182613d829190614fc8565b9150600a85613d91919061518c565b6030613d9d9190614ee7565b60f81b818381518110613dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613e159190614f3d565b9450613d6d565b8093505050505b919050565b613e358383836001613ee1565b505050565b50505050565b50505050565b60008082905060005b8451811015613ed6576000858281518110613e93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613eb557613eae83826142b0565b9250613ec2565b613ebf81846142b0565b92505b508080613ece9061511f565b915050613e4f565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613f4f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613f8a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613f976000868387613e3a565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561416157506141608773ffffffffffffffffffffffffffffffffffffffff16613a66565b5b15614227575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46141d66000888480600101955088613a89565b61420c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561416757826001541461422257600080fd5b614293565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614228575b8160018190555050506142a96000868387613e40565b5050505050565b600082600052816020526040600020905092915050565b8280546142d3906150bc565b90600052602060002090601f0160209004810192826142f5576000855561433c565b82601f1061430e57805160ff191683800117855561433c565b8280016001018555821561433c579182015b8281111561433b578251825591602001919060010190614320565b5b5090506143499190614390565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156143a9576000816000905550600101614391565b5090565b60006143c06143bb84614e01565b614ddc565b905080838252602082019050828560208602820111156143df57600080fd5b60005b8581101561440f57816143f58882614495565b8452602084019350602083019250506001810190506143e2565b5050509392505050565b600061442c61442784614e2d565b614ddc565b90508281526020810184848401111561444457600080fd5b61444f84828561507a565b509392505050565b600061446a61446584614e5e565b614ddc565b90508281526020810184848401111561448257600080fd5b61448d84828561507a565b509392505050565b6000813590506144a48161542b565b92915050565b600082601f8301126144bb57600080fd5b81356144cb8482602086016143ad565b91505092915050565b60008083601f8401126144e657600080fd5b8235905067ffffffffffffffff8111156144ff57600080fd5b60208301915083602082028301111561451757600080fd5b9250929050565b60008135905061452d81615442565b92915050565b60008135905061454281615459565b92915050565b60008135905061455781615470565b92915050565b60008151905061456c81615470565b92915050565b600082601f83011261458357600080fd5b8135614593848260208601614419565b91505092915050565b600082601f8301126145ad57600080fd5b81356145bd848260208601614457565b91505092915050565b6000813590506145d581615487565b92915050565b6000602082840312156145ed57600080fd5b60006145fb84828501614495565b91505092915050565b6000806040838503121561461757600080fd5b600061462585828601614495565b925050602061463685828601614495565b9150509250929050565b60008060006060848603121561465557600080fd5b600061466386828701614495565b935050602061467486828701614495565b9250506040614685868287016145c6565b9150509250925092565b600080600080608085870312156146a557600080fd5b60006146b387828801614495565b94505060206146c487828801614495565b93505060406146d5878288016145c6565b925050606085013567ffffffffffffffff8111156146f257600080fd5b6146fe87828801614572565b91505092959194509250565b6000806040838503121561471d57600080fd5b600061472b85828601614495565b925050602061473c8582860161451e565b9150509250929050565b6000806040838503121561475957600080fd5b600061476785828601614495565b9250506020614778858286016145c6565b9150509250929050565b60006020828403121561479457600080fd5b600082013567ffffffffffffffff8111156147ae57600080fd5b6147ba848285016144aa565b91505092915050565b6000806000604084860312156147d857600080fd5b600084013567ffffffffffffffff8111156147f257600080fd5b6147fe868287016144d4565b93509350506020614811868287016145c6565b9150509250925092565b60006020828403121561482d57600080fd5b600061483b8482850161451e565b91505092915050565b60006020828403121561485657600080fd5b600061486484828501614533565b91505092915050565b60006020828403121561487f57600080fd5b600061488d84828501614548565b91505092915050565b6000602082840312156148a857600080fd5b60006148b68482850161455d565b91505092915050565b6000602082840312156148d157600080fd5b600082013567ffffffffffffffff8111156148eb57600080fd5b6148f78482850161459c565b91505092915050565b60006020828403121561491257600080fd5b6000614920848285016145c6565b91505092915050565b61493281614ffc565b82525050565b61494961494482614ffc565b615168565b82525050565b6149588161500e565b82525050565b6149678161501a565b82525050565b600061497882614ea4565b6149828185614eba565b9350614992818560208601615089565b61499b81615279565b840191505092915050565b60006149b182614eaf565b6149bb8185614ecb565b93506149cb818560208601615089565b6149d481615279565b840191505092915050565b60006149ea82614eaf565b6149f48185614edc565b9350614a04818560208601615089565b80840191505092915050565b60008154614a1d816150bc565b614a278186614edc565b94506001821660008114614a425760018114614a5357614a86565b60ff19831686528186019350614a86565b614a5c85614e8f565b60005b83811015614a7e57815481890152600182019150602081019050614a5f565b838801955050505b50505092915050565b6000614a9c602683614ecb565b9150614aa782615297565b604082019050919050565b6000614abf600f83614ecb565b9150614aca826152e6565b602082019050919050565b6000614ae2601783614ecb565b9150614aed8261530f565b602082019050919050565b6000614b05601b83614ecb565b9150614b1082615338565b602082019050919050565b6000614b28602083614ecb565b9150614b3382615361565b602082019050919050565b6000614b4b602f83614ecb565b9150614b568261538a565b604082019050919050565b6000614b6e601683614ecb565b9150614b79826153d9565b602082019050919050565b6000614b91601c83614ecb565b9150614b9c82615402565b602082019050919050565b614bb081615070565b82525050565b6000614bc28284614938565b60148201915081905092915050565b6000614bdd82866149df565b9150614be982856149df565b9150614bf58284614a10565b9150819050949350505050565b6000602082019050614c176000830184614929565b92915050565b6000608082019050614c326000830187614929565b614c3f6020830186614929565b614c4c6040830185614ba7565b8181036060830152614c5e818461496d565b905095945050505050565b6000602082019050614c7e600083018461494f565b92915050565b6000602082019050614c99600083018461495e565b92915050565b60006020820190508181036000830152614cb981846149a6565b905092915050565b60006020820190508181036000830152614cda81614a8f565b9050919050565b60006020820190508181036000830152614cfa81614ab2565b9050919050565b60006020820190508181036000830152614d1a81614ad5565b9050919050565b60006020820190508181036000830152614d3a81614af8565b9050919050565b60006020820190508181036000830152614d5a81614b1b565b9050919050565b60006020820190508181036000830152614d7a81614b3e565b9050919050565b60006020820190508181036000830152614d9a81614b61565b9050919050565b60006020820190508181036000830152614dba81614b84565b9050919050565b6000602082019050614dd66000830184614ba7565b92915050565b6000614de6614df7565b9050614df282826150ee565b919050565b6000604051905090565b600067ffffffffffffffff821115614e1c57614e1b61524a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e4857614e4761524a565b5b614e5182615279565b9050602081019050919050565b600067ffffffffffffffff821115614e7957614e7861524a565b5b614e8282615279565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ef282615070565b9150614efd83615070565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f3257614f316151bd565b5b828201905092915050565b6000614f4882615070565b9150614f5383615070565b925082614f6357614f626151ec565b5b828204905092915050565b6000614f7982615070565b9150614f8483615070565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fbd57614fbc6151bd565b5b828202905092915050565b6000614fd382615070565b9150614fde83615070565b925082821015614ff157614ff06151bd565b5b828203905092915050565b600061500782615050565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156150a757808201518184015260208101905061508c565b838111156150b6576000848401525b50505050565b600060028204905060018216806150d457607f821691505b602082108114156150e8576150e761521b565b5b50919050565b6150f782615279565b810181811067ffffffffffffffff821117156151165761511561524a565b5b80604052505050565b600061512a82615070565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561515d5761515c6151bd565b5b600182019050919050565b60006151738261517a565b9050919050565b60006151858261528a565b9050919050565b600061519782615070565b91506151a283615070565b9250826151b2576151b16151ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f6621210000000000000000000000000000000000600082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4669727374206f776e657220646964206e6f7420617070726f76650000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f5365636f6e64206f776e657220646964206e6f7420617070726f766500000000600082015250565b61543481614ffc565b811461543f57600080fd5b50565b61544b8161500e565b811461545657600080fd5b50565b6154628161501a565b811461546d57600080fd5b50565b61547981615024565b811461548457600080fd5b50565b61549081615070565b811461549b57600080fd5b5056fea26469706673582212208ad79600a4d25f286a387f005fe4705eb97b2780f48df9f7721a279629c7006964736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000021556e646561642041706520536f6369657479204f6666696369616c2047656e20320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035541530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5850764d4141634477346166313232786e6b387a6d74724b665667733368433238735454436247517567426500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5850764d4141634477346166313232786e6b387a6d74724b665667733368433238735454436247517567426500000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Undead Ape Society Official Gen 2
Arg [1] : _symbol (string): UAS
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmXPvMAAcDw4af122xnk8zmtrKfVgs3hC28sTTCbGQugBe
Arg [3] : _initNotRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmXPvMAAcDw4af122xnk8zmtrKfVgs3hC28sTTCbGQugBe

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [5] : 556e646561642041706520536f6369657479204f6666696369616c2047656e20
Arg [6] : 3200000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5541530000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [10] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [11] : 732f516d5850764d4141634477346166313232786e6b387a6d74724b66566773
Arg [12] : 3368433238735454436247517567426500000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [14] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [15] : 732f516d5850764d4141634477346166313232786e6b387a6d74724b66566773
Arg [16] : 3368433238735454436247517567426500000000000000000000000000000000


Deployed Bytecode Sourcemap

167:7638:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4309:344:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6326:77:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1241:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7409:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8953:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;602:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4528:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8530:362:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6746:119:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2983:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;331:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1008:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3580:297:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4984:97:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;636:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;447:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9900:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;859:102:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1423:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:932;;;:::i;:::-;;10130:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5732:84:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2097:851;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1058:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;535:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;561:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6066:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;504:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7224:123:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5403:94:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3291:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4712:203:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;1514:68:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6409:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5822:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5603:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5087:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4436:86:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7571:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4816:162:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9256:310:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10375:393;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;288:37:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1137:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3724:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;388:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1332:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5303:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6174:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4648:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9632:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5936:124:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;740:88:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4309:344:3;4451:4;4505:25;4490:40;;;:11;:40;;;;:104;;;;4561:33;4546:48;;;:11;:48;;;;4490:104;:156;;;;4610:36;4634:11;4610:23;:36::i;:::-;4490:156;4471:175;;4309:344;;;:::o;6326:77:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6390:6:12::1;6381;;:15;;;;;;;;;;;;;;;;;;6326:77:::0;:::o;1241:68::-;;;;;;;;;;;;;:::o;7409:98:3:-;7463:13;7495:5;7488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7409:98;:::o;8953:236::-;9053:7;9081:16;9089:7;9081;:16::i;:::-;9076:64;;9106:34;;;;;;;;;;;;;;9076:64;9158:15;:24;9174:7;9158:24;;;;;;;;;;;;;;;;;;;;;9151:31;;8953:236;;;:::o;602:28:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4528:114::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4621:14:12::1;4605:13;:30;;;;4528:114:::0;:::o;8530:362:3:-;8602:13;8618:24;8634:7;8618:15;:24::i;:::-;8602:40;;8662:5;8656:11;;:2;:11;;;8652:48;;;8676:24;;;;;;;;;;;;;;8652:48;8731:5;8715:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8741:37;8758:5;8765:12;:10;:12::i;:::-;8741:16;:37::i;:::-;8740:38;8715:63;8711:136;;;8801:35;;;;;;;;;;;;;;8711:136;8857:28;8866:2;8870:7;8879:5;8857:8;:28::i;:::-;8530:362;;;:::o;6746:119:12:-;1673:20;;;;;;;;;;;1659:34;;:10;:34;;;:88;;;;1727:20;;;;;;;;;;;1713:34;;:10;:34;;;1659:88;1638:119;;;;;;6847:11:::1;6821;:23;6833:10;6821:23;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;6746:119:::0;:::o;2983:244::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3060:14:12::1;3077:13;:11;:13::i;:::-;3060:30;;3122:1;3108:11;:15;3100:24;;;::::0;::::1;;3166:9;;3151:11;3142:6;:20;;;;:::i;:::-;:33;;3134:42;;;::::0;::::1;;3186:34;3196:10;3208:11;3186:9;:34::i;:::-;1354:1:9;2983:244:12::0;:::o;331:39::-;;;;:::o;1008:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;3580:297:3:-;3624:7;3845:15;:13;:15::i;:::-;3830:12;;3814:13;;:28;:46;3807:53;;3580:297;:::o;4984:97:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5066:8:12::1;5056:7;;:18;;;;;;;;;;;;;;;;;;4984:97:::0;:::o;636:88::-;;;;;;;;;;;;;:::o;447:33::-;;;;:::o;9900:164:3:-;10029:28;10039:4;10045:2;10049:7;10029:9;:28::i;:::-;9900:164;;;:::o;859:102:12:-;;;;:::o;1423:68::-;;;;;;;;;;;;;:::o;6871:932::-;1673:20;;;;;;;;;;;1659:34;;:10;:34;;;:88;;;;1727:20;;;;;;;;;;;1713:34;;:10;:34;;;1659:88;1638:119;;;;;;6949:11:::1;:33;6961:20;;;;;;;;;;;6949:33;;;;;;;;;;;;;;;;;;;;;;;;;6928:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;7066:11;:33;7078:20;;;;;;;;;;;7066:33;;;;;;;;;;;;;;;;;;;;;;;;;7045:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;7163:22;7188:21;7163:46;;7219:25;7271:3;7265:2;7248:14;:19;;;;:::i;:::-;7247:27;;;;:::i;:::-;7219:55;;7284:18;7329:3;7323:2;7306:14;:19;;;;:::i;:::-;7305:27;;;;:::i;:::-;7284:48;;7342:20;7388:3;7383:1;7366:14;:18;;;;:::i;:::-;7365:26;;;;:::i;:::-;7342:49;;7409:7;;;;;;;;;;;7401:25;;:44;7427:17;7401:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7463:15;;;;;;;;;;;7455:33;;:45;7489:10;7455:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7518:8;;;;;;;;;;;7510:26;;:38;7537:10;7510:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7566:8;;;;;;;;;;;7558:26;;:38;7585:10;7558:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7614:8;;;;;;;;;;;7606:26;;:38;7633:10;7606:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7662:8;;;;;;;;;;;7654:26;;:40;7681:12;7654:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7740:5;7704:11;:33;7716:20;;;;;;;;;;;7704:33;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;7791:5;7755:11;:33;7767:20;;;;;;;;;;;7755:33;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;1767:1;;;;6871:932::o:0;10130:179:3:-;10263:39;10280:4;10286:2;10290:7;10263:39;;;;;;;;;;;;:16;:39::i;:::-;10130:179;;;:::o;5732:84:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5801:8:12::1;5794:4;:15;;;;5732:84:::0;:::o;2097:851::-;2210:14;2227:13;:11;:13::i;:::-;2210:30;;2259:6;;;;;;;;;;;2258:7;2250:16;;;;;;2298:1;2284:11;:15;2276:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2360:13;;2345:11;:28;;2337:37;;;;;;2416:9;;2401:11;2392:6;:20;;;;:::i;:::-;:33;;2384:42;;;;;;2464:11;2457:4;;:18;;;;:::i;:::-;2444:9;:31;;2436:40;;;;;;2511:4;2491:24;;:16;;;;;;;;;;;:24;;;2487:455;;;2626:12;2668:10;2651:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2641:39;;;;;;2626:54;;2719:50;2738:12;;2719:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2752:10;;2764:4;2719:18;:50::i;:::-;2694:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;2832:34;2842:10;2854:11;2832:9;:34::i;:::-;2487:455;;;;2897:34;2907:10;2919:11;2897:9;:34::i;:::-;2487:455;2097:851;;;;:::o;1058:67::-;;;;;;;;;;;;;:::o;535:20::-;;;;;;;;;;;;;:::o;561:35::-;;;;;;;;;;;;;:::o;6066:102::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6150:11:12::1;6140:7;:21;;;;;;;;;;;;:::i;:::-;;6066:102:::0;:::o;504:25::-;;;;;;;;;;;;;:::o;7224:123:3:-;7288:7;7314:21;7327:7;7314:12;:21::i;:::-;:26;;;7307:33;;7224:123;;;:::o;5403:94:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5481:9:12::1;5470:8;;:20;;;;;;;;;;;;;;;;;;5403:94:::0;:::o;3291:257::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3376:14:12::1;3393:13;:11;:13::i;:::-;3376:30;;3438:1;3424:11;:15;3416:24;;;::::0;::::1;;3482:9;;3467:11;3458:6;:20;;;;:::i;:::-;:33;;3450:42;;;::::0;::::1;;3502:39;3512:15;;;;;;;;;;;3529:11;3502:9;:39::i;:::-;1354:1:9;3291:257:12::0;:::o;4712:203:3:-;4776:7;4816:1;4799:19;;:5;:19;;;4795:60;;;4827:28;;;;;;;;;;;;;;4795:60;4880:12;:19;4893:5;4880:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4872:36;;4865:43;;4712:203;;;:::o;1714:103:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;1514:68:12:-;;;;;;;;;;;;;:::o;6409:331::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6482:14:12::1;6499:13;:11;:13::i;:::-;6482:30;;6571:9;;6552:8;:15;6543:6;:24;;;;:::i;:::-;:37;;6522:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;6643:9;6638:96;6662:8;:15;6658:1;:19;6638:96;;;6698:25;6708:8;6717:1;6708:11;;;;;;;;;;;;;;;;;;;;;;6721:1;6698:9;:25::i;:::-;6679:3;;;;;:::i;:::-;;;;6638:96;;;;1354:1:9;6409:331:12::0;:::o;5822:108::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5909:14:12::1;5896:10;:27;;;;5822:108:::0;:::o;5603:123::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5702:17:12::1;5683:16;;:36;;;;;;;;;;;;;;;;;;5603:123:::0;:::o;5087:110::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5180:10:12::1;5162:15;;:28;;;;;;;;;;;;;;;;;;5087:110:::0;:::o;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;4436:86:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4506:9:12::1;4495:8;;:20;;;;;;;;;;;;;;;;;;4436:86:::0;:::o;7571:102:3:-;7627:13;7659:7;7652:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7571:102;:::o;4816:162:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4950:21:12::1;4927:20;;:44;;;;;;;;;;;;;;;;;;4816:162:::0;:::o;9256:310:3:-;9394:12;:10;:12::i;:::-;9382:24;;:8;:24;;;9378:54;;;9415:17;;;;;;;;;;;;;;9378:54;9488:8;9443:18;:32;9462:12;:10;:12::i;:::-;9443:32;;;;;;;;;;;;;;;:42;9476:8;9443:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9540:8;9511:48;;9526:12;:10;:12::i;:::-;9511:48;;;9550:8;9511:48;;;;;;:::i;:::-;;;;;;;;9256:310;;:::o;10375:393::-;10536:28;10546:4;10552:2;10556:7;10536:9;:28::i;:::-;10591:15;:2;:13;;;:15::i;:::-;:88;;;;;10623:56;10654:4;10660:2;10664:7;10673:5;10623:30;:56::i;:::-;10622:57;10591:88;10574:188;;;10711:40;;;;;;;;;;;;;;10574:188;10375:393;;;;:::o;288:37:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1137:75::-;;;;;;;;;;;;;:::o;3724:689::-;3837:13;3887:16;3895:7;3887;:16::i;:::-;3866:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3992:8;;;;;;;;;;;3987:61;;4023:14;4016:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3987:61;4057:28;4088:10;:8;:10::i;:::-;4057:41;;4158:1;4133:14;4127:28;:32;:279;;;;;;;;;;;;;;;;;4248:14;4288:18;:7;:16;:18::i;:::-;4332:13;4206:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4127:279;4108:298;;;3724:689;;;;:::o;388:31::-;;;;:::o;1332:68::-;;;;;;;;;;;;;:::o;5303:94::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5381:9:12::1;5370:8;;:20;;;;;;;;;;;;;;;;;;5303:94:::0;:::o;6174:146::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6296:17:12::1;6280:13;:33;;;;;;;;;;;;:::i;:::-;;6174:146:::0;:::o;4648:162::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4782:21:12::1;4759:20;;:44;;;;;;;;;;;;;;;;;;4648:162:::0;:::o;9632:206:3:-;9769:4;9796:18;:25;9815:5;9796:25;;;;;;;;;;;;;;;:35;9822:8;9796:35;;;;;;;;;;;;;;;;;;;;;;;;;9789:42;;9632:206;;;;:::o;5936:124:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6038:15:12::1;6021:14;:32;;;;;;;;;;;;:::i;:::-;;5936:124:::0;:::o;1972:201:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;740:88:12:-;;;;;;;;;;;;;:::o;5203:94::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5281:9:12::1;5270:8;;:20;;;;;;;;;;;;;;;;;;5203:94:::0;:::o;5503:::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5581:9:12::1;5570:8;;:20;;;;;;;;;;;;;;;;;;5503:94:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;11014:208:3:-;11071:4;11125:7;11106:15;:13;:15::i;:::-;:26;;:65;;;;;11158:13;;11148:7;:23;11106:65;:109;;;;;11188:11;:20;11200:7;11188:20;;;;;;;;;;;:27;;;;;;;;;;;;11187:28;11106:109;11087:128;;11014:208;;;:::o;19174:189::-;19311:2;19284:15;:24;19300:7;19284:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19348:7;19344:2;19328:28;;19337:5;19328:28;;;;;;;;;;;;19174:189;;;:::o;11228:102::-;11296:27;11306:2;11310:8;11296:27;;;;;;;;;;;;:9;:27::i;:::-;11228:102;;:::o;3361:90::-;3417:7;3361:90;:::o;14244:2082::-;14354:35;14392:21;14405:7;14392:12;:21::i;:::-;14354:59;;14450:4;14428:26;;:13;:18;;;:26;;;14424:67;;14463:28;;;;;;;;;;;;;;14424:67;14502:22;14544:4;14528:20;;:12;:10;:12::i;:::-;:20;;;:72;;;;14564:36;14581:4;14587:12;:10;:12::i;:::-;14564:16;:36::i;:::-;14528:72;:124;;;;14640:12;:10;:12::i;:::-;14616:36;;:20;14628:7;14616:11;:20::i;:::-;:36;;;14528:124;14502:151;;14669:17;14664:66;;14695:35;;;;;;;;;;;;;;14664:66;14758:1;14744:16;;:2;:16;;;14740:52;;;14769:23;;;;;;;;;;;;;;14740:52;14803:43;14825:4;14831:2;14835:7;14844:1;14803:21;:43::i;:::-;14908:35;14925:1;14929:7;14938:4;14908:8;:35::i;:::-;15263:1;15233:12;:18;15246:4;15233:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15306:1;15278:12;:16;15291:2;15278:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15322:31;15356:11;:20;15368:7;15356:20;;;;;;;;;;;15322:54;;15406:2;15390:8;:13;;;:18;;;;;;;;;;;;;;;;;;15455:15;15422:8;:23;;;:49;;;;;;;;;;;;;;;;;;15719:19;15751:1;15741:7;:11;15719:33;;15766:31;15800:11;:24;15812:11;15800:24;;;;;;;;;;;15766:58;;15867:1;15842:27;;:8;:13;;;;;;;;;;;;:27;;;15838:377;;;16049:13;;16034:11;:28;16030:171;;16102:4;16086:8;:13;;;:20;;;;;;;;;;;;;;;;;;16154:13;:28;;;16128:8;:23;;;:54;;;;;;;;;;;;;;;;;;16030:171;15838:377;14244:2082;;;16259:7;16255:2;16240:27;;16249:4;16240:27;;;;;;;;;;;;16277:42;16298:4;16304:2;16308:7;16317:1;16277:20;:42::i;:::-;14244:2082;;;;;:::o;1180:190:8:-;1305:4;1358;1329:25;1342:5;1349:4;1329:12;:25::i;:::-;:33;1322:40;;1180:190;;;;;:::o;6055:1112:3:-;6141:21;;:::i;:::-;6178:12;6193:7;6178:22;;6258:4;6239:15;:13;:15::i;:::-;:23;;:47;;;;;6273:13;;6266:4;:20;6239:47;6235:868;;;6306:31;6340:11;:17;6352:4;6340:17;;;;;;;;;;;6306:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6380:9;:16;;;6375:714;;6450:1;6424:28;;:9;:14;;;:28;;;6420:99;;6487:9;6480:16;;;;;;6420:99;6816:255;6823:4;6816:255;;;6855:6;;;;;;;;6899:11;:17;6911:4;6899:17;;;;;;;;;;;6887:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6972:1;6946:28;;:9;:14;;;:28;;;6942:107;;7013:9;7006:16;;;;;;6942:107;6816:255;;;6375:714;6235:868;;7129:31;;;;;;;;;;;;;;6055:1112;;;;:::o;2333:191:9:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2333:191;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;19844:748:3:-;20002:4;20050:2;20034:36;;;20088:12;:10;:12::i;:::-;20118:4;20140:7;20165:5;20034:150;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20018:568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20368:1;20351:6;:13;:18;20347:229;;;20396:40;;;;;;;;;;;;;;20347:229;20536:6;20530:13;20521:6;20517:2;20513:15;20506:38;20018:568;20248:45;;;20238:55;;;:6;:55;;;;20231:62;;;19844:748;;;;;;:::o;3570:106:12:-;3630:13;3662:7;3655:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3570:106;:::o;342:723:11:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;11681:157:3:-;11799:32;11805:2;11809:8;11819:5;11826:4;11799:5;:32::i;:::-;11681:157;;;:::o;21223:154::-;;;;;:::o;22018:153::-;;;;;:::o;1731:675:8:-;1814:7;1834:20;1857:4;1834:27;;1877:9;1872:497;1896:5;:12;1892:1;:16;1872:497;;;1930:20;1953:5;1959:1;1953:8;;;;;;;;;;;;;;;;;;;;;;1930:31;;1996:12;1980;:28;1976:382;;2123:42;2138:12;2152;2123:14;:42::i;:::-;2108:57;;1976:382;;;2300:42;2315:12;2329;2300:14;:42::i;:::-;2285:57;;1976:382;1872:497;1910:3;;;;;:::i;:::-;;;;1872:497;;;;2386:12;2379:19;;;1731:675;;;;:::o;12085:1917:3:-;12218:20;12241:13;;12218:36;;12282:1;12268:16;;:2;:16;;;12264:48;;;12293:19;;;;;;;;;;;;;;12264:48;12338:1;12326:8;:13;12322:44;;;12348:18;;;;;;;;;;;;;;12322:44;12377:61;12407:1;12411:2;12415:12;12429:8;12377:21;:61::i;:::-;12744:8;12709:12;:16;12722:2;12709:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12807:8;12767:12;:16;12780:2;12767:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12864:2;12831:11;:25;12843:12;12831:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;12930:15;12880:11;:25;12892:12;12880:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;12961:20;12984:12;12961:35;;13010:11;13039:8;13024:12;:23;13010:37;;13066:4;:23;;;;;13074:15;:2;:13;;;:15::i;:::-;13066:23;13062:812;;;13109:493;13164:12;13160:2;13139:38;;13156:1;13139:38;;;;;;;;;;;;13229:207;13297:1;13329:2;13361:14;;;;;;13405:5;13229:30;:207::i;:::-;13199:356;;13492:40;;;;;;;;;;;;;;13199:356;13597:3;13581:12;:19;;13109:493;;13681:12;13664:13;;:29;13660:43;;13695:8;;;13660:43;13062:812;;;13742:118;13797:14;;;;;;13793:2;13772:40;;13789:1;13772:40;;;;;;;;;;;;13855:3;13839:12;:19;;13742:118;;13062:812;13903:12;13887:13;:28;;;;12085:1917;;13935:60;13964:1;13968:2;13972:12;13986:8;13935:20;:60::i;:::-;12085:1917;;;;;:::o;2414:224:8:-;2482:13;2545:1;2539:4;2532:15;2574:1;2568:4;2561:15;2615:4;2609;2599:21;2590:30;;2517:114;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:13:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:303::-;1618:5;1667:3;1660:4;1652:6;1648:17;1644:27;1634:2;;1685:1;1682;1675:12;1634:2;1725:6;1712:20;1750:94;1840:3;1832:6;1825:4;1817:6;1813:17;1750:94;:::i;:::-;1741:103;;1624:226;;;;;:::o;1873:367::-;1946:8;1956:6;2006:3;1999:4;1991:6;1987:17;1983:27;1973:2;;2024:1;2021;2014:12;1973:2;2060:6;2047:20;2037:30;;2090:18;2082:6;2079:30;2076:2;;;2122:1;2119;2112:12;2076:2;2159:4;2151:6;2147:17;2135:29;;2213:3;2205:4;2197:6;2193:17;2183:8;2179:32;2176:41;2173:2;;;2230:1;2227;2220:12;2173:2;1963:277;;;;;:::o;2246:133::-;2289:5;2327:6;2314:20;2305:29;;2343:30;2367:5;2343:30;:::i;:::-;2295:84;;;;:::o;2385:139::-;2431:5;2469:6;2456:20;2447:29;;2485:33;2512:5;2485:33;:::i;:::-;2437:87;;;;:::o;2530:137::-;2575:5;2613:6;2600:20;2591:29;;2629:32;2655:5;2629:32;:::i;:::-;2581:86;;;;:::o;2673:141::-;2729:5;2760:6;2754:13;2745:22;;2776:32;2802:5;2776:32;:::i;:::-;2735:79;;;;:::o;2833:271::-;2888:5;2937:3;2930:4;2922:6;2918:17;2914:27;2904:2;;2955:1;2952;2945:12;2904:2;2995:6;2982:20;3020:78;3094:3;3086:6;3079:4;3071:6;3067:17;3020:78;:::i;:::-;3011:87;;2894:210;;;;;:::o;3124:273::-;3180:5;3229:3;3222:4;3214:6;3210:17;3206:27;3196:2;;3247:1;3244;3237:12;3196:2;3287:6;3274:20;3312:79;3387:3;3379:6;3372:4;3364:6;3360:17;3312:79;:::i;:::-;3303:88;;3186:211;;;;;:::o;3403:139::-;3449:5;3487:6;3474:20;3465:29;;3503:33;3530:5;3503:33;:::i;:::-;3455:87;;;;:::o;3548:262::-;3607:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:2;;;3672:1;3669;3662:12;3624:2;3715:1;3740:53;3785:7;3776:6;3765:9;3761:22;3740:53;:::i;:::-;3730:63;;3686:117;3614:196;;;;:::o;3816:407::-;3884:6;3892;3941:2;3929:9;3920:7;3916:23;3912:32;3909:2;;;3957:1;3954;3947:12;3909:2;4000:1;4025:53;4070:7;4061:6;4050:9;4046:22;4025:53;:::i;:::-;4015:63;;3971:117;4127:2;4153:53;4198:7;4189:6;4178:9;4174:22;4153:53;:::i;:::-;4143:63;;4098:118;3899:324;;;;;:::o;4229:552::-;4306:6;4314;4322;4371:2;4359:9;4350:7;4346:23;4342:32;4339:2;;;4387:1;4384;4377:12;4339:2;4430:1;4455:53;4500:7;4491:6;4480:9;4476:22;4455:53;:::i;:::-;4445:63;;4401:117;4557:2;4583:53;4628:7;4619:6;4608:9;4604:22;4583:53;:::i;:::-;4573:63;;4528:118;4685:2;4711:53;4756:7;4747:6;4736:9;4732:22;4711:53;:::i;:::-;4701:63;;4656:118;4329:452;;;;;:::o;4787:809::-;4882:6;4890;4898;4906;4955:3;4943:9;4934:7;4930:23;4926:33;4923:2;;;4972:1;4969;4962:12;4923:2;5015:1;5040:53;5085:7;5076:6;5065:9;5061:22;5040:53;:::i;:::-;5030:63;;4986:117;5142:2;5168:53;5213:7;5204:6;5193:9;5189:22;5168:53;:::i;:::-;5158:63;;5113:118;5270:2;5296:53;5341:7;5332:6;5321:9;5317:22;5296:53;:::i;:::-;5286:63;;5241:118;5426:2;5415:9;5411:18;5398:32;5457:18;5449:6;5446:30;5443:2;;;5489:1;5486;5479:12;5443:2;5517:62;5571:7;5562:6;5551:9;5547:22;5517:62;:::i;:::-;5507:72;;5369:220;4913:683;;;;;;;:::o;5602:401::-;5667:6;5675;5724:2;5712:9;5703:7;5699:23;5695:32;5692:2;;;5740:1;5737;5730:12;5692:2;5783:1;5808:53;5853:7;5844:6;5833:9;5829:22;5808:53;:::i;:::-;5798:63;;5754:117;5910:2;5936:50;5978:7;5969:6;5958:9;5954:22;5936:50;:::i;:::-;5926:60;;5881:115;5682:321;;;;;:::o;6009:407::-;6077:6;6085;6134:2;6122:9;6113:7;6109:23;6105:32;6102:2;;;6150:1;6147;6140:12;6102:2;6193:1;6218:53;6263:7;6254:6;6243:9;6239:22;6218:53;:::i;:::-;6208:63;;6164:117;6320:2;6346:53;6391:7;6382:6;6371:9;6367:22;6346:53;:::i;:::-;6336:63;;6291:118;6092:324;;;;;:::o;6422:405::-;6506:6;6555:2;6543:9;6534:7;6530:23;6526:32;6523:2;;;6571:1;6568;6561:12;6523:2;6642:1;6631:9;6627:17;6614:31;6672:18;6664:6;6661:30;6658:2;;;6704:1;6701;6694:12;6658:2;6732:78;6802:7;6793:6;6782:9;6778:22;6732:78;:::i;:::-;6722:88;;6585:235;6513:314;;;;:::o;6833:570::-;6928:6;6936;6944;6993:2;6981:9;6972:7;6968:23;6964:32;6961:2;;;7009:1;7006;6999:12;6961:2;7080:1;7069:9;7065:17;7052:31;7110:18;7102:6;7099:30;7096:2;;;7142:1;7139;7132:12;7096:2;7178:80;7250:7;7241:6;7230:9;7226:22;7178:80;:::i;:::-;7160:98;;;;7023:245;7307:2;7333:53;7378:7;7369:6;7358:9;7354:22;7333:53;:::i;:::-;7323:63;;7278:118;6951:452;;;;;:::o;7409:256::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:2;;;7530:1;7527;7520:12;7482:2;7573:1;7598:50;7640:7;7631:6;7620:9;7616:22;7598:50;:::i;:::-;7588:60;;7544:114;7472:193;;;;:::o;7671:262::-;7730:6;7779:2;7767:9;7758:7;7754:23;7750:32;7747:2;;;7795:1;7792;7785:12;7747:2;7838:1;7863:53;7908:7;7899:6;7888:9;7884:22;7863:53;:::i;:::-;7853:63;;7809:117;7737:196;;;;:::o;7939:260::-;7997:6;8046:2;8034:9;8025:7;8021:23;8017:32;8014:2;;;8062:1;8059;8052:12;8014:2;8105:1;8130:52;8174:7;8165:6;8154:9;8150:22;8130:52;:::i;:::-;8120:62;;8076:116;8004:195;;;;:::o;8205:282::-;8274:6;8323:2;8311:9;8302:7;8298:23;8294:32;8291:2;;;8339:1;8336;8329:12;8291:2;8382:1;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8353:127;8281:206;;;;:::o;8493:375::-;8562:6;8611:2;8599:9;8590:7;8586:23;8582:32;8579:2;;;8627:1;8624;8617:12;8579:2;8698:1;8687:9;8683:17;8670:31;8728:18;8720:6;8717:30;8714:2;;;8760:1;8757;8750:12;8714:2;8788:63;8843:7;8834:6;8823:9;8819:22;8788:63;:::i;:::-;8778:73;;8641:220;8569:299;;;;:::o;8874:262::-;8933:6;8982:2;8970:9;8961:7;8957:23;8953:32;8950:2;;;8998:1;8995;8988:12;8950:2;9041:1;9066:53;9111:7;9102:6;9091:9;9087:22;9066:53;:::i;:::-;9056:63;;9012:117;8940:196;;;;:::o;9142:118::-;9229:24;9247:5;9229:24;:::i;:::-;9224:3;9217:37;9207:53;;:::o;9266:157::-;9371:45;9391:24;9409:5;9391:24;:::i;:::-;9371:45;:::i;:::-;9366:3;9359:58;9349:74;;:::o;9429:109::-;9510:21;9525:5;9510:21;:::i;:::-;9505:3;9498:34;9488:50;;:::o;9544:118::-;9631:24;9649:5;9631:24;:::i;:::-;9626:3;9619:37;9609:53;;:::o;9668:360::-;9754:3;9782:38;9814:5;9782:38;:::i;:::-;9836:70;9899:6;9894:3;9836:70;:::i;:::-;9829:77;;9915:52;9960:6;9955:3;9948:4;9941:5;9937:16;9915:52;:::i;:::-;9992:29;10014:6;9992:29;:::i;:::-;9987:3;9983:39;9976:46;;9758:270;;;;;:::o;10034:364::-;10122:3;10150:39;10183:5;10150:39;:::i;:::-;10205:71;10269:6;10264:3;10205:71;:::i;:::-;10198:78;;10285:52;10330:6;10325:3;10318:4;10311:5;10307:16;10285:52;:::i;:::-;10362:29;10384:6;10362:29;:::i;:::-;10357:3;10353:39;10346:46;;10126:272;;;;;:::o;10404:377::-;10510:3;10538:39;10571:5;10538:39;:::i;:::-;10593:89;10675:6;10670:3;10593:89;:::i;:::-;10586:96;;10691:52;10736:6;10731:3;10724:4;10717:5;10713:16;10691:52;:::i;:::-;10768:6;10763:3;10759:16;10752:23;;10514:267;;;;;:::o;10811:845::-;10914:3;10951:5;10945:12;10980:36;11006:9;10980:36;:::i;:::-;11032:89;11114:6;11109:3;11032:89;:::i;:::-;11025:96;;11152:1;11141:9;11137:17;11168:1;11163:137;;;;11314:1;11309:341;;;;11130:520;;11163:137;11247:4;11243:9;11232;11228:25;11223:3;11216:38;11283:6;11278:3;11274:16;11267:23;;11163:137;;11309:341;11376:38;11408:5;11376:38;:::i;:::-;11436:1;11450:154;11464:6;11461:1;11458:13;11450:154;;;11538:7;11532:14;11528:1;11523:3;11519:11;11512:35;11588:1;11579:7;11575:15;11564:26;;11486:4;11483:1;11479:12;11474:17;;11450:154;;;11633:6;11628:3;11624:16;11617:23;;11316:334;;11130:520;;10918:738;;;;;;:::o;11662:366::-;11804:3;11825:67;11889:2;11884:3;11825:67;:::i;:::-;11818:74;;11901:93;11990:3;11901:93;:::i;:::-;12019:2;12014:3;12010:12;12003:19;;11808:220;;;:::o;12034:366::-;12176:3;12197:67;12261:2;12256:3;12197:67;:::i;:::-;12190:74;;12273:93;12362:3;12273:93;:::i;:::-;12391:2;12386:3;12382:12;12375:19;;12180:220;;;:::o;12406:366::-;12548:3;12569:67;12633:2;12628:3;12569:67;:::i;:::-;12562:74;;12645:93;12734:3;12645:93;:::i;:::-;12763:2;12758:3;12754:12;12747:19;;12552:220;;;:::o;12778:366::-;12920:3;12941:67;13005:2;13000:3;12941:67;:::i;:::-;12934:74;;13017:93;13106:3;13017:93;:::i;:::-;13135:2;13130:3;13126:12;13119:19;;12924:220;;;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13296:220;;;:::o;13522:366::-;13664:3;13685:67;13749:2;13744:3;13685:67;:::i;:::-;13678:74;;13761:93;13850:3;13761:93;:::i;:::-;13879:2;13874:3;13870:12;13863:19;;13668:220;;;:::o;13894:366::-;14036:3;14057:67;14121:2;14116:3;14057:67;:::i;:::-;14050:74;;14133:93;14222:3;14133:93;:::i;:::-;14251:2;14246:3;14242:12;14235:19;;14040:220;;;:::o;14266:366::-;14408:3;14429:67;14493:2;14488:3;14429:67;:::i;:::-;14422:74;;14505:93;14594:3;14505:93;:::i;:::-;14623:2;14618:3;14614:12;14607:19;;14412:220;;;:::o;14638:118::-;14725:24;14743:5;14725:24;:::i;:::-;14720:3;14713:37;14703:53;;:::o;14762:256::-;14874:3;14889:75;14960:3;14951:6;14889:75;:::i;:::-;14989:2;14984:3;14980:12;14973:19;;15009:3;15002:10;;14878:140;;;;:::o;15024:589::-;15249:3;15271:95;15362:3;15353:6;15271:95;:::i;:::-;15264:102;;15383:95;15474:3;15465:6;15383:95;:::i;:::-;15376:102;;15495:92;15583:3;15574:6;15495:92;:::i;:::-;15488:99;;15604:3;15597:10;;15253:360;;;;;;:::o;15619:222::-;15712:4;15750:2;15739:9;15735:18;15727:26;;15763:71;15831:1;15820:9;15816:17;15807:6;15763:71;:::i;:::-;15717:124;;;;:::o;15847:640::-;16042:4;16080:3;16069:9;16065:19;16057:27;;16094:71;16162:1;16151:9;16147:17;16138:6;16094:71;:::i;:::-;16175:72;16243:2;16232:9;16228:18;16219:6;16175:72;:::i;:::-;16257;16325:2;16314:9;16310:18;16301:6;16257:72;:::i;:::-;16376:9;16370:4;16366:20;16361:2;16350:9;16346:18;16339:48;16404:76;16475:4;16466:6;16404:76;:::i;:::-;16396:84;;16047:440;;;;;;;:::o;16493:210::-;16580:4;16618:2;16607:9;16603:18;16595:26;;16631:65;16693:1;16682:9;16678:17;16669:6;16631:65;:::i;:::-;16585:118;;;;:::o;16709:222::-;16802:4;16840:2;16829:9;16825:18;16817:26;;16853:71;16921:1;16910:9;16906:17;16897:6;16853:71;:::i;:::-;16807:124;;;;:::o;16937:313::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:78;17238:4;17229:6;17165:78;:::i;:::-;17157:86;;17055:195;;;;:::o;17256:419::-;17422:4;17460:2;17449:9;17445:18;17437:26;;17509:9;17503:4;17499:20;17495:1;17484:9;17480:17;17473:47;17537:131;17663:4;17537:131;:::i;:::-;17529:139;;17427:248;;;:::o;17681:419::-;17847:4;17885:2;17874:9;17870:18;17862:26;;17934:9;17928:4;17924:20;17920:1;17909:9;17905:17;17898:47;17962:131;18088:4;17962:131;:::i;:::-;17954:139;;17852:248;;;:::o;18106:419::-;18272:4;18310:2;18299:9;18295:18;18287:26;;18359:9;18353:4;18349:20;18345:1;18334:9;18330:17;18323:47;18387:131;18513:4;18387:131;:::i;:::-;18379:139;;18277:248;;;:::o;18531:419::-;18697:4;18735:2;18724:9;18720:18;18712:26;;18784:9;18778:4;18774:20;18770:1;18759:9;18755:17;18748:47;18812:131;18938:4;18812:131;:::i;:::-;18804:139;;18702:248;;;:::o;18956:419::-;19122:4;19160:2;19149:9;19145:18;19137:26;;19209:9;19203:4;19199:20;19195:1;19184:9;19180:17;19173:47;19237:131;19363:4;19237:131;:::i;:::-;19229:139;;19127:248;;;:::o;19381:419::-;19547:4;19585:2;19574:9;19570:18;19562:26;;19634:9;19628:4;19624:20;19620:1;19609:9;19605:17;19598:47;19662:131;19788:4;19662:131;:::i;:::-;19654:139;;19552:248;;;:::o;19806:419::-;19972:4;20010:2;19999:9;19995:18;19987:26;;20059:9;20053:4;20049:20;20045:1;20034:9;20030:17;20023:47;20087:131;20213:4;20087:131;:::i;:::-;20079:139;;19977:248;;;:::o;20231:419::-;20397:4;20435:2;20424:9;20420:18;20412:26;;20484:9;20478:4;20474:20;20470:1;20459:9;20455:17;20448:47;20512:131;20638:4;20512:131;:::i;:::-;20504:139;;20402:248;;;:::o;20656:222::-;20749:4;20787:2;20776:9;20772:18;20764:26;;20800:71;20868:1;20857:9;20853:17;20844:6;20800:71;:::i;:::-;20754:124;;;;:::o;20884:129::-;20918:6;20945:20;;:::i;:::-;20935:30;;20974:33;21002:4;20994:6;20974:33;:::i;:::-;20925:88;;;:::o;21019:75::-;21052:6;21085:2;21079:9;21069:19;;21059:35;:::o;21100:311::-;21177:4;21267:18;21259:6;21256:30;21253:2;;;21289:18;;:::i;:::-;21253:2;21339:4;21331:6;21327:17;21319:25;;21399:4;21393;21389:15;21381:23;;21182:229;;;:::o;21417:307::-;21478:4;21568:18;21560:6;21557:30;21554:2;;;21590:18;;:::i;:::-;21554:2;21628:29;21650:6;21628:29;:::i;:::-;21620:37;;21712:4;21706;21702:15;21694:23;;21483:241;;;:::o;21730:308::-;21792:4;21882:18;21874:6;21871:30;21868:2;;;21904:18;;:::i;:::-;21868:2;21942:29;21964:6;21942:29;:::i;:::-;21934:37;;22026:4;22020;22016:15;22008:23;;21797:241;;;:::o;22044:141::-;22093:4;22116:3;22108:11;;22139:3;22136:1;22129:14;22173:4;22170:1;22160:18;22152:26;;22098:87;;;:::o;22191:98::-;22242:6;22276:5;22270:12;22260:22;;22249:40;;;:::o;22295:99::-;22347:6;22381:5;22375:12;22365:22;;22354:40;;;:::o;22400:168::-;22483:11;22517:6;22512:3;22505:19;22557:4;22552:3;22548:14;22533:29;;22495:73;;;;:::o;22574:169::-;22658:11;22692:6;22687:3;22680:19;22732:4;22727:3;22723:14;22708:29;;22670:73;;;;:::o;22749:148::-;22851:11;22888:3;22873:18;;22863:34;;;;:::o;22903:305::-;22943:3;22962:20;22980:1;22962:20;:::i;:::-;22957:25;;22996:20;23014:1;22996:20;:::i;:::-;22991:25;;23150:1;23082:66;23078:74;23075:1;23072:81;23069:2;;;23156:18;;:::i;:::-;23069:2;23200:1;23197;23193:9;23186:16;;22947:261;;;;:::o;23214:185::-;23254:1;23271:20;23289:1;23271:20;:::i;:::-;23266:25;;23305:20;23323:1;23305:20;:::i;:::-;23300:25;;23344:1;23334:2;;23349:18;;:::i;:::-;23334:2;23391:1;23388;23384:9;23379:14;;23256:143;;;;:::o;23405:348::-;23445:7;23468:20;23486:1;23468:20;:::i;:::-;23463:25;;23502:20;23520:1;23502:20;:::i;:::-;23497:25;;23690:1;23622:66;23618:74;23615:1;23612:81;23607:1;23600:9;23593:17;23589:105;23586:2;;;23697:18;;:::i;:::-;23586:2;23745:1;23742;23738:9;23727:20;;23453:300;;;;:::o;23759:191::-;23799:4;23819:20;23837:1;23819:20;:::i;:::-;23814:25;;23853:20;23871:1;23853:20;:::i;:::-;23848:25;;23892:1;23889;23886:8;23883:2;;;23897:18;;:::i;:::-;23883:2;23942:1;23939;23935:9;23927:17;;23804:146;;;;:::o;23956:96::-;23993:7;24022:24;24040:5;24022:24;:::i;:::-;24011:35;;24001:51;;;:::o;24058:90::-;24092:7;24135:5;24128:13;24121:21;24110:32;;24100:48;;;:::o;24154:77::-;24191:7;24220:5;24209:16;;24199:32;;;:::o;24237:149::-;24273:7;24313:66;24306:5;24302:78;24291:89;;24281:105;;;:::o;24392:126::-;24429:7;24469:42;24462:5;24458:54;24447:65;;24437:81;;;:::o;24524:77::-;24561:7;24590:5;24579:16;;24569:32;;;:::o;24607:154::-;24691:6;24686:3;24681;24668:30;24753:1;24744:6;24739:3;24735:16;24728:27;24658:103;;;:::o;24767:307::-;24835:1;24845:113;24859:6;24856:1;24853:13;24845:113;;;24944:1;24939:3;24935:11;24929:18;24925:1;24920:3;24916:11;24909:39;24881:2;24878:1;24874:10;24869:15;;24845:113;;;24976:6;24973:1;24970:13;24967:2;;;25056:1;25047:6;25042:3;25038:16;25031:27;24967:2;24816:258;;;;:::o;25080:320::-;25124:6;25161:1;25155:4;25151:12;25141:22;;25208:1;25202:4;25198:12;25229:18;25219:2;;25285:4;25277:6;25273:17;25263:27;;25219:2;25347;25339:6;25336:14;25316:18;25313:38;25310:2;;;25366:18;;:::i;:::-;25310:2;25131:269;;;;:::o;25406:281::-;25489:27;25511:4;25489:27;:::i;:::-;25481:6;25477:40;25619:6;25607:10;25604:22;25583:18;25571:10;25568:34;25565:62;25562:2;;;25630:18;;:::i;:::-;25562:2;25670:10;25666:2;25659:22;25449:238;;;:::o;25693:233::-;25732:3;25755:24;25773:5;25755:24;:::i;:::-;25746:33;;25801:66;25794:5;25791:77;25788:2;;;25871:18;;:::i;:::-;25788:2;25918:1;25911:5;25907:13;25900:20;;25736:190;;;:::o;25932:100::-;25971:7;26000:26;26020:5;26000:26;:::i;:::-;25989:37;;25979:53;;;:::o;26038:94::-;26077:7;26106:20;26120:5;26106:20;:::i;:::-;26095:31;;26085:47;;;:::o;26138:176::-;26170:1;26187:20;26205:1;26187:20;:::i;:::-;26182:25;;26221:20;26239:1;26221:20;:::i;:::-;26216:25;;26260:1;26250:2;;26265:18;;:::i;:::-;26250:2;26306:1;26303;26299:9;26294:14;;26172:142;;;;:::o;26320:180::-;26368:77;26365:1;26358:88;26465:4;26462:1;26455:15;26489:4;26486:1;26479:15;26506:180;26554:77;26551:1;26544:88;26651:4;26648:1;26641:15;26675:4;26672:1;26665:15;26692:180;26740:77;26737:1;26730:88;26837:4;26834:1;26827:15;26861:4;26858:1;26851:15;26878:180;26926:77;26923:1;26916:88;27023:4;27020:1;27013:15;27047:4;27044:1;27037:15;27064:102;27105:6;27156:2;27152:7;27147:2;27140:5;27136:14;27132:28;27122:38;;27112:54;;;:::o;27172:94::-;27205:8;27253:5;27249:2;27245:14;27224:35;;27214:52;;;:::o;27272:225::-;27412:34;27408:1;27400:6;27396:14;27389:58;27481:8;27476:2;27468:6;27464:15;27457:33;27378:119;:::o;27503:165::-;27643:17;27639:1;27631:6;27627:14;27620:41;27609:59;:::o;27674:173::-;27814:25;27810:1;27802:6;27798:14;27791:49;27780:67;:::o;27853:177::-;27993:29;27989:1;27981:6;27977:14;27970:53;27959:71;:::o;28036:182::-;28176:34;28172:1;28164:6;28160:14;28153:58;28142:76;:::o;28224:234::-;28364:34;28360:1;28352:6;28348:14;28341:58;28433:17;28428:2;28420:6;28416:15;28409:42;28330:128;:::o;28464:172::-;28604:24;28600:1;28592:6;28588:14;28581:48;28570:66;:::o;28642:178::-;28782:30;28778:1;28770:6;28766:14;28759:54;28748:72;:::o;28826:122::-;28899:24;28917:5;28899:24;:::i;:::-;28892:5;28889:35;28879:2;;28938:1;28935;28928:12;28879:2;28869:79;:::o;28954:116::-;29024:21;29039:5;29024:21;:::i;:::-;29017:5;29014:32;29004:2;;29060:1;29057;29050:12;29004:2;28994:76;:::o;29076:122::-;29149:24;29167:5;29149:24;:::i;:::-;29142:5;29139:35;29129:2;;29188:1;29185;29178:12;29129:2;29119:79;:::o;29204:120::-;29276:23;29293:5;29276:23;:::i;:::-;29269:5;29266:34;29256:2;;29314:1;29311;29304:12;29256:2;29246:78;:::o;29330:122::-;29403:24;29421:5;29403:24;:::i;:::-;29396:5;29393:35;29383:2;;29442:1;29439;29432:12;29383:2;29373:79;:::o

Swarm Source

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