ETH Price: $3,406.47 (+3.38%)

Token

Taisen (Taisen)
 

Overview

Max Total Supply

267 Taisen

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Taisen
0xa8fd4990a70bbd3ff23f9edb495bbeccd1f5459f
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:
Taisen

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 15 of 15: taisen.sol
// SPDX-License-Identifier: MIT

/*
 _____     _             __        __         _     _                      
|_   _|_ _(_)___  ___ _ _\ \      / /__  _ __| | __| |  ___ ___  _ __ ___  
  | |/ _` | / __|/ _ \ '_ \ \ /\ / / _ \| '__| |/ _` | / __/ _ \| '_ ` _ \ 
  | | (_| | \__ \  __/ | | \ V  V / (_) | |  | | (_| || (_| (_) | | | | | |
  |_|\__,_|_|___/\___|_| |_|\_/\_/ \___/|_|  |_|\__,_(_)___\___/|_| |_| |_|

*/

pragma solidity ^0.8.7;
import "./Ownable.sol";
import "./Strings.sol";
import "./ERC721A.sol";
import "./Markle.sol";


contract Taisen is ERC721A, Ownable{
    using Strings for uint256;
   
    uint public tokenPrice = 0.04 ether;
    uint public presalePrice = 0.035 ether;
    uint constant maxSupply = 6666;
    bool public ogs_status = false;
    bool public Presale_status = false;
    bool public public_sale_status = false;
    bool public isBurnEnabled=false;
    bytes32 public whitelistMerkleRoot;
    bytes32 public OgsMerkleRoot;
    
    mapping(address => bool) private ogList;
    string public baseURI;
    
    mapping(uint256 => address) public burnedby;

    uint public maxPerTransaction = 5;  //Max Limit Per TX
    uint public maxPerWalletPresale = 3; //Max Limit for Presale
    uint public maxPerOgs = 1;
             
    constructor() ERC721A("Taisen", "Taisen"){}


    function Public_mint(uint _count) public payable{
        require(public_sale_status == true, "Sale is Paused.");
        require(_count > 0, "mint at least one token");
        require(totalSupply() + _count <= maxSupply, "Sold Out!");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        require(_count <= maxPerTransaction, "ONLY 5 NFTS ALLOWED PER TRANSACTION");
            _safeMint(msg.sender, _count);
   }

    function Whitelist_mint(uint _count, bytes32[] calldata merkleProof) external payable{ 
        
        require(Presale_status == true, "MINT HAS NOT STARTED YET");
        require(MerkleProof.verify(merkleProof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"YOUR WALLET IS NOT WHITELISTED");
        require(balanceOf(msg.sender) <= maxPerWalletPresale, "ONLY 3 NFTS ALLOWED IN PRESALE");
        require(_count <= maxPerWalletPresale, "ONLY 3 NFTS ALLOWED PER TRANSACTION");
        require(totalSupply() + _count <= maxSupply, "Sold Out!");
        require(msg.value >= presalePrice * _count, "incorrect ether amount");
        _safeMint(msg.sender, _count);
    }

     function ogs_mint(uint _count, bytes32[] calldata merkleProof) external{ 
        require(ogs_status == true, "MINT HAS NOT STARTED YET");
        require(MerkleProof.verify(merkleProof,OgsMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"YOUR WALLET IS NOT WHITELISTED");
        require(!ogList[msg.sender], "YOU HAVE ALREADY CLAIMED YOUR NFT");
        require(_count <= maxPerOgs, "max per transaction 1");
        require(totalSupply() + _count<= maxSupply, "Sold Out!");
            _safeMint(msg.sender, _count);
            ogList[msg.sender]=true;
    }

    function adminMint(uint _count) external onlyOwner{
        require(_count > 0, "mint at least one token");
        require(totalSupply() + _count <= maxSupply, "Sold Out!");
        _safeMint(msg.sender, _count);
    }

    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Sold Out!");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function Presale_Status(bool status) external onlyOwner {
        Presale_status = status;
    }
    function ogs_status_update(bool status) external onlyOwner {
        ogs_status = status;
    }
    function Public_status_update(bool status) external onlyOwner {
        public_sale_status = status;
    }
     function update_burning_status(bool status) external onlyOwner {
        isBurnEnabled = status;
    }

    function SetWhitelist(bytes32 merkleRoot) external onlyOwner {
		whitelistMerkleRoot = merkleRoot;
	}
    function SetOgsMarkle(bytes32 merkleRoot) external onlyOwner {
		OgsMerkleRoot = merkleRoot;
	}
  
    function burn(uint256 tokenId) external 
    {
        require(isBurnEnabled, "burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "burn caller is not approved"
        );
        _burn(tokenId);
        burnedby[tokenId] = msg.sender;
    }
     function public_sale_price(uint pr) external onlyOwner {
        tokenPrice = pr;
    }
         function pre_sale_price(uint pr) external onlyOwner {
        presalePrice = pr;
    }
         function adjust_limits(uint maxpter,uint maxperwalletpre) external onlyOwner {
         maxPerTransaction = maxpter;  //Max Limit Per TX
         maxPerWalletPresale = maxperwalletpre; //Max Limit for Presale
        
    }
 
    function withdraw() external onlyOwner {
             uint _balance = address(this).balance;
        payable(owner()).transfer(_balance * 54 / 100);
        payable(0x2a49FCED5de896C3b2a70a550B4c3BC8995ede40).transfer(_balance * 33 / 100);
        payable(0x261E28CeEd4B1da2c643d44F7A2439ddfEE1b978).transfer(_balance * 7 / 100);
        payable(0x93A0c561D165054d29F242909A2Ea40e6Ab2bBAd).transfer(_balance * 6 / 100);
    }
}

File 1 of 15: 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 2 of 15: DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 15: EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() external {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}
pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 4 of 15: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import './DefaultOperatorFilterer.sol';
/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A, DefaultOperatorFilterer {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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 _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721A.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override onlyAllowedOperator(from){
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override onlyAllowedOperator(from){
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override onlyAllowedOperator(from){
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 5 of 15: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 6 of 15: IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 7 of 15: Markle.sol
// SPDX-License-Identifier: MIT

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 8 of 15: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 9 of 15: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 10 of 15: OperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {Ownable} from "./Ownable.sol";
import {EnumerableSet} from "./EnumerableSet.sol";
import {OperatorFilterRegistryErrorsAndEvents} from "./OperatorFilterRegistryErrorsAndEvents.sol";

/**
 * @title  OperatorFilterRegistry
 * @notice Borrows heavily from the QQL BlacklistOperatorFilter contract:
 *         https://github.com/qql-art/contracts/blob/main/contracts/BlacklistOperatorFilter.sol
 * @notice This contracts allows tokens or token owners to register specific addresses or codeHashes that may be
 * *       restricted according to the isOperatorAllowed function.
 */
contract OperatorFilterRegistry is IOperatorFilterRegistry, OperatorFilterRegistryErrorsAndEvents {
    using EnumerableSet for EnumerableSet.AddressSet;
    using EnumerableSet for EnumerableSet.Bytes32Set;

    /// @dev initialized accounts have a nonzero codehash (see https://eips.ethereum.org/EIPS/eip-1052)
    /// Note that this will also be a smart contract's codehash when making calls from its constructor.
    bytes32 constant EOA_CODEHASH = keccak256("");

    mapping(address => EnumerableSet.AddressSet) private _filteredOperators;
    mapping(address => EnumerableSet.Bytes32Set) private _filteredCodeHashes;
    mapping(address => address) private _registrations;
    mapping(address => EnumerableSet.AddressSet) private _subscribers;

    /**
     * @notice restricts method caller to the address or EIP-173 "owner()"
     */
    modifier onlyAddressOrOwner(address addr) {
        if (msg.sender != addr) {
            try Ownable(addr).owner() returns (address owner) {
                if (msg.sender != owner) {
                    revert OnlyAddressOrOwner();
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert NotOwnable();
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
        _;
    }

    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool) {
        address registration = _registrations[registrant];
        if (registration != address(0)) {
            EnumerableSet.AddressSet storage filteredOperatorsRef;
            EnumerableSet.Bytes32Set storage filteredCodeHashesRef;

            filteredOperatorsRef = _filteredOperators[registration];
            filteredCodeHashesRef = _filteredCodeHashes[registration];

            if (filteredOperatorsRef.contains(operator)) {
                revert AddressFiltered(operator);
            }
            if (operator.code.length > 0) {
                bytes32 codeHash = operator.codehash;
                if (filteredCodeHashesRef.contains(codeHash)) {
                    revert CodeHashFiltered(operator, codeHash);
                }
            }
        }
        return true;
    }

    //////////////////
    // AUTH METHODS //
    //////////////////

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external onlyAddressOrOwner(registrant) {
        if (_registrations[registrant] != address(0)) {
            revert AlreadyRegistered();
        }
        _registrations[registrant] = registrant;
        emit RegistrationUpdated(registrant, true);
    }

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address registrant) external onlyAddressOrOwner(registrant) {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            _subscribers[registration].remove(registrant);
            emit SubscriptionUpdated(registrant, registration, false);
        }
        _registrations[registrant] = address(0);
        emit RegistrationUpdated(registrant, false);
    }

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external onlyAddressOrOwner(registrant) {
        address registration = _registrations[registrant];
        if (registration != address(0)) {
            revert AlreadyRegistered();
        }
        if (registrant == subscription) {
            revert CannotSubscribeToSelf();
        }
        address subscriptionRegistration = _registrations[subscription];
        if (subscriptionRegistration == address(0)) {
            revert NotRegistered(subscription);
        }
        if (subscriptionRegistration != subscription) {
            revert CannotSubscribeToRegistrantWithSubscription(subscription);
        }

        _registrations[registrant] = subscription;
        _subscribers[subscription].add(registrant);
        emit RegistrationUpdated(registrant, true);
        emit SubscriptionUpdated(registrant, subscription, true);
    }

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy)
        external
        onlyAddressOrOwner(registrant)
    {
        if (registrantToCopy == registrant) {
            revert CannotCopyFromSelf();
        }
        address registration = _registrations[registrant];
        if (registration != address(0)) {
            revert AlreadyRegistered();
        }
        address registrantRegistration = _registrations[registrantToCopy];
        if (registrantRegistration == address(0)) {
            revert NotRegistered(registrantToCopy);
        }
        _registrations[registrant] = registrant;
        emit RegistrationUpdated(registrant, true);
        _copyEntries(registrant, registrantToCopy);
    }

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant];

        if (!filtered) {
            bool removed = filteredOperatorsRef.remove(operator);
            if (!removed) {
                revert AddressNotFiltered(operator);
            }
        } else {
            bool added = filteredOperatorsRef.add(operator);
            if (!added) {
                revert AddressAlreadyFiltered(operator);
            }
        }
        emit OperatorUpdated(registrant, operator, filtered);
    }

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codeHash, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        if (codeHash == EOA_CODEHASH) {
            revert CannotFilterEOAs();
        }
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant];

        if (!filtered) {
            bool removed = filteredCodeHashesRef.remove(codeHash);
            if (!removed) {
                revert CodeHashNotFiltered(codeHash);
            }
        } else {
            bool added = filteredCodeHashesRef.add(codeHash);
            if (!added) {
                revert CodeHashAlreadyFiltered(codeHash);
            }
        }
        emit CodeHashUpdated(registrant, codeHash, filtered);
    }

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant];
        uint256 operatorsLength = operators.length;
        unchecked {
            if (!filtered) {
                for (uint256 i = 0; i < operatorsLength; ++i) {
                    address operator = operators[i];
                    bool removed = filteredOperatorsRef.remove(operator);
                    if (!removed) {
                        revert AddressNotFiltered(operator);
                    }
                }
            } else {
                for (uint256 i = 0; i < operatorsLength; ++i) {
                    address operator = operators[i];
                    bool added = filteredOperatorsRef.add(operator);
                    if (!added) {
                        revert AddressAlreadyFiltered(operator);
                    }
                }
            }
        }
        emit OperatorsUpdated(registrant, operators, filtered);
    }

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant];
        uint256 codeHashesLength = codeHashes.length;
        unchecked {
            if (!filtered) {
                for (uint256 i = 0; i < codeHashesLength; ++i) {
                    bytes32 codeHash = codeHashes[i];
                    bool removed = filteredCodeHashesRef.remove(codeHash);
                    if (!removed) {
                        revert CodeHashNotFiltered(codeHash);
                    }
                }
            } else {
                for (uint256 i = 0; i < codeHashesLength; ++i) {
                    bytes32 codeHash = codeHashes[i];
                    if (codeHash == EOA_CODEHASH) {
                        revert CannotFilterEOAs();
                    }
                    bool added = filteredCodeHashesRef.add(codeHash);
                    if (!added) {
                        revert CodeHashAlreadyFiltered(codeHash);
                    }
                }
            }
        }
        emit CodeHashesUpdated(registrant, codeHashes, filtered);
    }

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address newSubscription) external onlyAddressOrOwner(registrant) {
        if (registrant == newSubscription) {
            revert CannotSubscribeToSelf();
        }
        if (newSubscription == address(0)) {
            revert CannotSubscribeToZeroAddress();
        }
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration == newSubscription) {
            revert AlreadySubscribed(newSubscription);
        }
        address newSubscriptionRegistration = _registrations[newSubscription];
        if (newSubscriptionRegistration == address(0)) {
            revert NotRegistered(newSubscription);
        }
        if (newSubscriptionRegistration != newSubscription) {
            revert CannotSubscribeToRegistrantWithSubscription(newSubscription);
        }

        if (registration != registrant) {
            _subscribers[registration].remove(registrant);
            emit SubscriptionUpdated(registrant, registration, false);
        }
        _registrations[registrant] = newSubscription;
        _subscribers[newSubscription].add(registrant);
        emit SubscriptionUpdated(registrant, newSubscription, true);
    }

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external onlyAddressOrOwner(registrant) {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration == registrant) {
            revert NotSubscribed();
        }
        _subscribers[registration].remove(registrant);
        _registrations[registrant] = registrant;
        emit SubscriptionUpdated(registrant, registration, false);
        if (copyExistingEntries) {
            _copyEntries(registrant, registration);
        }
    }

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) {
        if (registrant == registrantToCopy) {
            revert CannotCopyFromSelf();
        }
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        address registrantRegistration = _registrations[registrantToCopy];
        if (registrantRegistration == address(0)) {
            revert NotRegistered(registrantToCopy);
        }
        _copyEntries(registrant, registrantToCopy);
    }

    /// @dev helper to copy entries from registrantToCopy to registrant and emit events
    function _copyEntries(address registrant, address registrantToCopy) private {
        EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrantToCopy];
        EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrantToCopy];
        uint256 filteredOperatorsLength = filteredOperatorsRef.length();
        uint256 filteredCodeHashesLength = filteredCodeHashesRef.length();
        unchecked {
            for (uint256 i = 0; i < filteredOperatorsLength; ++i) {
                address operator = filteredOperatorsRef.at(i);
                bool added = _filteredOperators[registrant].add(operator);
                if (added) {
                    emit OperatorUpdated(registrant, operator, true);
                }
            }
            for (uint256 i = 0; i < filteredCodeHashesLength; ++i) {
                bytes32 codehash = filteredCodeHashesRef.at(i);
                bool added = _filteredCodeHashes[registrant].add(codehash);
                if (added) {
                    emit CodeHashUpdated(registrant, codehash, true);
                }
            }
        }
    }

    //////////////////
    // VIEW METHODS //
    //////////////////

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address registrant) external view returns (address subscription) {
        subscription = _registrations[registrant];
        if (subscription == address(0)) {
            revert NotRegistered(registrant);
        } else if (subscription == registrant) {
            subscription = address(0);
        }
    }

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external view returns (address[] memory) {
        return _subscribers[registrant].values();
    }

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external view returns (address) {
        return _subscribers[registrant].at(index);
    }

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external view returns (bool) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredOperators[registration].contains(operator);
        }
        return _filteredOperators[registrant].contains(operator);
    }

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external view returns (bool) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].contains(codeHash);
        }
        return _filteredCodeHashes[registrant].contains(codeHash);
    }

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external view returns (bool) {
        bytes32 codeHash = operatorWithCode.codehash;
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].contains(codeHash);
        }
        return _filteredCodeHashes[registrant].contains(codeHash);
    }

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address registrant) external view returns (bool) {
        return _registrations[registrant] != address(0);
    }

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address registrant) external view returns (address[] memory) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredOperators[registration].values();
        }
        return _filteredOperators[registrant].values();
    }

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address registrant) external view returns (bytes32[] memory) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].values();
        }
        return _filteredCodeHashes[registrant].values();
    }

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external view returns (address) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredOperators[registration].at(index);
        }
        return _filteredOperators[registrant].at(index);
    }

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external view returns (bytes32) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].at(index);
        }
        return _filteredCodeHashes[registrant].at(index);
    }

    /// @dev Convenience method to compute the code hash of an arbitrary contract
    function codeHashOf(address a) external view returns (bytes32) {
        return a.codehash;
    }
}

File 11 of 15: OperatorFilterRegistryErrorsAndEvents.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

contract OperatorFilterRegistryErrorsAndEvents {
    error CannotFilterEOAs();
    error AddressAlreadyFiltered(address operator);
    error AddressNotFiltered(address operator);
    error CodeHashAlreadyFiltered(bytes32 codeHash);
    error CodeHashNotFiltered(bytes32 codeHash);
    error OnlyAddressOrOwner();
    error NotRegistered(address registrant);
    error AlreadyRegistered();
    error AlreadySubscribed(address subscription);
    error NotSubscribed();
    error CannotUpdateWhileSubscribed(address subscription);
    error CannotSubscribeToSelf();
    error CannotSubscribeToZeroAddress();
    error NotOwnable();
    error AddressFiltered(address filtered);
    error CodeHashFiltered(address account, bytes32 codeHash);
    error CannotSubscribeToRegistrantWithSubscription(address registrant);
    error CannotCopyFromSelf();

    event RegistrationUpdated(address indexed registrant, bool indexed registered);
    event OperatorUpdated(address indexed registrant, address indexed operator, bool indexed filtered);
    event OperatorsUpdated(address indexed registrant, address[] operators, bool indexed filtered);
    event CodeHashUpdated(address indexed registrant, bytes32 indexed codeHash, bool indexed filtered);
    event CodeHashesUpdated(address indexed registrant, bytes32[] codeHashes, bool indexed filtered);
    event SubscriptionUpdated(address indexed registrant, address indexed subscription, bool indexed subscribed);
}

File 12 of 15: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 13 of 15: OwnedRegistrant.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {Ownable2Step} from "./EnumerableSet.sol";

/**
 * @title  OwnedRegistrant
 * @notice Ownable contract that registers itself with the OperatorFilterRegistry and administers its own entries,
 *         to facilitate a subscription whose ownership can be transferred.
 */
contract OwnedRegistrant is Ownable2Step {
    address constant registry = 0x000000000000AAeB6D7670E522A718067333cd4E;

    constructor(address _owner) {
        IOperatorFilterRegistry(registry).register(address(this));
        transferOwnership(_owner);
    }
}

File 14 of 15: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[],"name":"OgsMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Presale_Status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Presale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"Public_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Public_status_update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetOgsMarkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Whitelist_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxpter","type":"uint256"},{"internalType":"uint256","name":"maxperwalletpre","type":"uint256"}],"name":"adjust_limits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnedby","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":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerOgs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"ogs_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ogs_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"ogs_status_update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pr","type":"uint256"}],"name":"pre_sale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pr","type":"uint256"}],"name":"public_sale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"payable","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":"payable","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"update_burning_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052668e1bc9bf040000600955667c585087238000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff021916908315150217905550600560115560036012556001601355348015620000a257600080fd5b506040518060400160405280600681526020017f54616973656e00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f54616973656e0000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200031b578015620001e1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a79291906200049b565b600060405180830381600087803b158015620001c257600080fd5b505af1158015620001d7573d6000803e3d6000fd5b505050506200031a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200029b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002619291906200049b565b600060405180830381600087803b1580156200027c57600080fd5b505af115801562000291573d6000803e3d6000fd5b5050505062000319565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e49190620004c8565b600060405180830381600087803b158015620002ff57600080fd5b505af115801562000314573d6000803e3d6000fd5b505050505b5b5b505081600290816200032e91906200075f565b5080600390816200034091906200075f565b50620003516200037f60201b60201c565b6000819055505050620003796200036d6200038860201b60201c565b6200039060201b60201c565b62000846565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004838262000456565b9050919050565b620004958162000476565b82525050565b6000604082019050620004b260008301856200048a565b620004c160208301846200048a565b9392505050565b6000602082019050620004df60008301846200048a565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056757607f821691505b6020821081036200057d576200057c6200051f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a8565b620005f38683620005a8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006406200063a62000634846200060b565b62000615565b6200060b565b9050919050565b6000819050919050565b6200065c836200061f565b620006746200066b8262000647565b848454620005b5565b825550505050565b600090565b6200068b6200067c565b6200069881848462000651565b505050565b5b81811015620006c057620006b460008262000681565b6001810190506200069e565b5050565b601f8211156200070f57620006d98162000583565b620006e48462000598565b81016020851015620006f4578190505b6200070c620007038562000598565b8301826200069d565b50505b505050565b600082821c905092915050565b6000620007346000198460080262000714565b1980831691505092915050565b60006200074f838362000721565b9150826002028217905092915050565b6200076a82620004e5565b67ffffffffffffffff811115620007865762000785620004f0565b5b6200079282546200054e565b6200079f828285620006c4565b600060209050601f831160018114620007d75760008415620007c2578287015190505b620007ce858262000741565b8655506200083e565b601f198416620007e78662000583565b60005b828110156200081157848901518255600182019150602085019450602081019050620007ea565b868310156200083157848901516200082d601f89168262000721565b8355505b6001600288020188555050505b505050505050565b61513f80620008566000396000f3fe6080604052600436106102865760003560e01c806370a082311161015a578063aa98e0c6116100c1578063c41cd33f1161007a578063c41cd33f1461092e578063c504a95014610957578063c87b56dd14610980578063ca6e8732146109bd578063e985e9c5146109e6578063f2fde38b14610a2357610286565b8063aa98e0c61461084c578063b88d4fde14610877578063ba6dd6f014610893578063bdabd11c146108be578063c18ccfbf146108e9578063c1f261231461090557610286565b806388bb43211161011357806388bb4321146107505780638da5cb5b1461077957806395d89b41146107a457806395ea5e67146107cf578063a0bcfc7f146107fa578063a22cb4651461082357610286565b806370a0823114610654578063715018a61461069157806377c2dc07146106a85780637c8255db146106d35780637ff9b596146106fc5780638154ecee1461072757610286565b80631d1021a0116101fe5780634b980d67116101b75780634b980d6714610544578063593815371461056f5780636352211e1461059a578063665fdc35146105d75780636c0360eb146106005780636cee9d231461062b57610286565b80631d1021a014610478578063230a9b8d146104a157806323b872dd146104cc5780633ccfd60b146104e857806342842e0e146104ff57806342966c681461051b57610286565b8063081812fc11610250578063081812fc14610386578063095ea7b3146103c357806314bdf9a3146103df57806315a972e61461040857806318160ddd146104315780631ba5aacc1461045c57610286565b80620e7fa81461028b57806280f6d5146102b657806301ffc9a7146102f357806306fdde031461033057806307ebec271461035b575b600080fd5b34801561029757600080fd5b506102a0610a4c565b6040516102ad9190613889565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d891906138e4565b610a52565b6040516102ea9190613952565b60405180910390f35b3480156102ff57600080fd5b5061031a600480360381019061031591906139c5565b610a85565b6040516103279190613a0d565b60405180910390f35b34801561033c57600080fd5b50610345610b17565b6040516103529190613ab8565b60405180910390f35b34801561036757600080fd5b50610370610ba9565b60405161037d9190613a0d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906138e4565b610bbc565b6040516103ba9190613952565b60405180910390f35b6103dd60048036038101906103d89190613b06565b610c3b565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613bab565b610d7f565b005b34801561041457600080fd5b5061042f600480360381019061042a91906138e4565b611018565b005b34801561043d57600080fd5b5061044661102a565b6040516104539190613889565b60405180910390f35b61047660048036038101906104719190613bab565b611041565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613c37565b611292565b005b3480156104ad57600080fd5b506104b66112b7565b6040516104c39190613889565b60405180910390f35b6104e660048036038101906104e19190613c64565b6112bd565b005b3480156104f457600080fd5b506104fd611ac3565b005b61051960048036038101906105149190613c64565b611c92565b005b34801561052757600080fd5b50610542600480360381019061053d91906138e4565b611e94565b005b34801561055057600080fd5b50610559611f8a565b6040516105669190613889565b60405180910390f35b34801561057b57600080fd5b50610584611f90565b6040516105919190613889565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906138e4565b611f96565b6040516105ce9190613952565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613cb7565b611fa8565b005b34801561060c57600080fd5b50610615611fc2565b6040516106229190613ab8565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613c37565b612050565b005b34801561066057600080fd5b5061067b60048036038101906106769190613cf7565b612075565b6040516106889190613889565b60405180910390f35b34801561069d57600080fd5b506106a661212d565b005b3480156106b457600080fd5b506106bd612141565b6040516106ca9190613d3d565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613e96565b612147565b005b34801561070857600080fd5b506107116121ef565b60405161071e9190613889565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906138e4565b6121f5565b005b34801561075c57600080fd5b5061077760048036038101906107729190613c37565b612207565b005b34801561078557600080fd5b5061078e61222c565b60405161079b9190613952565b60405180910390f35b3480156107b057600080fd5b506107b9612256565b6040516107c69190613ab8565b60405180910390f35b3480156107db57600080fd5b506107e46122e8565b6040516107f19190613a0d565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613f94565b6122fb565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613fdd565b612316565b005b34801561085857600080fd5b50610861612421565b60405161086e9190613d3d565b60405180910390f35b610891600480360381019061088c91906140be565b612427565b005b34801561089f57600080fd5b506108a86126ce565b6040516108b59190613a0d565b60405180910390f35b3480156108ca57600080fd5b506108d36126e1565b6040516108e09190613a0d565b60405180910390f35b61090360048036038101906108fe91906138e4565b6126f4565b005b34801561091157600080fd5b5061092c600480360381019061092791906138e4565b612886565b005b34801561093a57600080fd5b5061095560048036038101906109509190613c37565b612935565b005b34801561096357600080fd5b5061097e6004803603810190610979919061416d565b61295a565b005b34801561098c57600080fd5b506109a760048036038101906109a291906138e4565b61296c565b6040516109b49190613ab8565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df919061416d565b612a14565b005b3480156109f257600080fd5b50610a0d6004803603810190610a08919061419a565b612a26565b604051610a1a9190613a0d565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613cf7565b612aba565b005b600a5481565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b105750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b2690614209565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5290614209565b8015610b9f5780601f10610b7457610100808354040283529160200191610b9f565b820191906000526020600020905b815481529060010190602001808311610b8257829003601f168201915b5050505050905090565b600b60039054906101000a900460ff1681565b6000610bc782612b3d565b610bfd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4682611f96565b90508073ffffffffffffffffffffffffffffffffffffffff16610c67612b9c565b73ffffffffffffffffffffffffffffffffffffffff1614610cca57610c9381610c8e612b9c565b612a26565b610cc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60011515600b60009054906101000a900460ff16151514610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90614286565b60405180910390fd5b610e49828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5433604051602001610e2e91906142ee565b60405160208183030381529060405280519060200120612ba4565b610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90614355565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c906143e7565b60405180910390fd5b601354831115610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190614453565b60405180910390fd5b611a0a83610f6661102a565b610f7091906144a2565b1115610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614522565b60405180910390fd5b610fbb3384612bbb565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611020612bd9565b80600a8190555050565b6000611034612c57565b6001546000540303905090565b60011515600b60019054906101000a900460ff16151514611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90614286565b60405180910390fd5b61110b828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016110f091906142ee565b60405160208183030381529060405280519060200120612ba4565b61114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190614355565b60405180910390fd5b60125461115633612075565b1115611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061458e565b60405180910390fd5b6012548311156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390614620565b60405180910390fd5b611a0a836111e861102a565b6111f291906144a2565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90614522565b60405180910390fd5b82600a546112419190614640565b341015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906146ce565b60405180910390fd5b61128d3384612bbb565b505050565b61129a612bd9565b80600b60036101000a81548160ff02191690831515021790555050565b60125481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561179f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361164157600061132a83612c60565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611391576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061139d85612d2c565b915091506113b381886113ae612b9c565b612d53565b6113ff576113c8876113c3612b9c565b612a26565b6113fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611465576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114728787876001612d97565b801561147d57600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061154b86611527898987612d9d565b7c020000000000000000000000000000000000000000000000000000000017612dc5565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115d157600060018601905060006004600083815260200190815260200160002054036115cf5760005481146115ce578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116398787876001612df0565b505050611abd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161168a9291906146ee565b602060405180830381865afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb919061472c565b801561175d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161171b9291906146ee565b602060405180830381865afa158015611738573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175c919061472c565b5b61179e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117959190613952565b60405180910390fd5b5b60006117aa83612c60565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611811576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061181d85612d2c565b91509150611833818861182e612b9c565b612d53565b61187f5761184887611843612b9c565b612a26565b61187e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036118e5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f28787876001612d97565b80156118fd57600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119cb866119a7898987612d9d565b7c020000000000000000000000000000000000000000000000000000000017612dc5565b600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a515760006001860190506000600460008381526020019081526020016000205403611a4f576000548114611a4e578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab98787876001612df0565b5050505b50505050565b611acb612bd9565b6000479050611ad861222c565b73ffffffffffffffffffffffffffffffffffffffff166108fc6064603684611b009190614640565b611b0a9190614788565b9081150290604051600060405180830381858888f19350505050158015611b35573d6000803e3d6000fd5b50732a49fced5de896c3b2a70a550b4c3bc8995ede4073ffffffffffffffffffffffffffffffffffffffff166108fc6064602184611b739190614640565b611b7d9190614788565b9081150290604051600060405180830381858888f19350505050158015611ba8573d6000803e3d6000fd5b5073261e28ceed4b1da2c643d44f7a2439ddfee1b97873ffffffffffffffffffffffffffffffffffffffff166108fc6064600784611be69190614640565b611bf09190614788565b9081150290604051600060405180830381858888f19350505050158015611c1b573d6000803e3d6000fd5b507393a0c561d165054d29f242909a2ea40e6ab2bbad73ffffffffffffffffffffffffffffffffffffffff166108fc6064600684611c599190614640565b611c639190614788565b9081150290604051600060405180830381858888f19350505050158015611c8e573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d1457611d0f84848460405180602001604052806000815250612427565b611e8e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611d5d9291906146ee565b602060405180830381865afa158015611d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9e919061472c565b8015611e3057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611dee9291906146ee565b602060405180830381865afa158015611e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2f919061472c565b5b611e7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e689190613952565b60405180910390fd5b5b611e8d84848460405180602001604052806000815250612427565b5b50505050565b600b60039054906101000a900460ff16611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90614805565b60405180910390fd5b611eed3382612df6565b611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614871565b60405180910390fd5b611f3581612ed4565b336010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b60135481565b6000611fa182612c60565b9050919050565b611fb0612bd9565b81601181905550806012819055505050565b600f8054611fcf90614209565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffb90614209565b80156120485780601f1061201d57610100808354040283529160200191612048565b820191906000526020600020905b81548152906001019060200180831161202b57829003601f168201915b505050505081565b612058612bd9565b80600b60026101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120dc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612135612bd9565b61213f6000612ee2565b565b600d5481565b61214f612bd9565b611a0a815161215c61102a565b61216691906144a2565b11156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90614522565b60405180910390fd5b60005b81518110156121eb576121d88282815181106121c9576121c8614891565b5b60200260200101516001612bbb565b80806121e3906148c0565b9150506121aa565b5050565b60095481565b6121fd612bd9565b8060098190555050565b61220f612bd9565b80600b60016101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461226590614209565b80601f016020809104026020016040519081016040528092919081815260200182805461229190614209565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b5050505050905090565b600b60029054906101000a900460ff1681565b612303612bd9565b80600f90816123129190614ab4565b5050565b8060076000612323612b9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123d0612b9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124159190613a0d565b60405180910390a35050565b600c5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612659573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124fb576124948585856112bd565b60008473ffffffffffffffffffffffffffffffffffffffff163b146124f6576124bf85858585612fa8565b6124f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6126c7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016125449291906146ee565b602060405180830381865afa158015612561573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612585919061472c565b801561261757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016125d59291906146ee565b602060405180830381865afa1580156125f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612616919061472c565b5b61265857336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161264f9190613952565b60405180910390fd5b5b6126648585856112bd565b60008473ffffffffffffffffffffffffffffffffffffffff163b146126c65761268f85858585612fa8565b6126c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b60011515600b60029054906101000a900460ff1615151461274a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274190614bd2565b60405180910390fd5b6000811161278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614c3e565b60405180910390fd5b611a0a8161279961102a565b6127a391906144a2565b11156127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614522565b60405180910390fd5b806009546127f29190614640565b341015612834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282b906146ce565b60405180910390fd5b601154811115612879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287090614cd0565b60405180910390fd5b6128833382612bbb565b50565b61288e612bd9565b600081116128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614c3e565b60405180910390fd5b611a0a816128dd61102a565b6128e791906144a2565b1115612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90614522565b60405180910390fd5b6129323382612bbb565b50565b61293d612bd9565b80600b60006101000a81548160ff02191690831515021790555050565b612962612bd9565b80600c8190555050565b606061297782612b3d565b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90614d62565b60405180910390fd5b6000600f80546129c590614209565b9050116129e15760405180602001604052806000815250612a0d565b600f6129ec836130f8565b6040516020016129fd929190614e67565b6040516020818303038152906040525b9050919050565b612a1c612bd9565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ac2612bd9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2890614f08565b60405180910390fd5b612b3a81612ee2565b50565b600081612b48612c57565b11158015612b57575060005482105b8015612b95575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612bb185846131c6565b1490509392505050565b612bd582826040518060200160405280600081525061323b565b5050565b612be16132d8565b73ffffffffffffffffffffffffffffffffffffffff16612bff61222c565b73ffffffffffffffffffffffffffffffffffffffff1614612c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4c90614f74565b60405180910390fd5b565b60006001905090565b60008082905080612c6f612c57565b11612cf557600054811015612cf45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612cf2575b60008103612ce8576004600083600190039350838152602001908152602001600020549050612cbe565b8092505050612d27565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612db48686846132e0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612e0182612b3d565b612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790615006565b60405180910390fd5b6000612e4b83611f96565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612eba57508373ffffffffffffffffffffffffffffffffffffffff16612ea284610bbc565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ecb5750612eca8185612a26565b5b91505092915050565b612edf8160006132e9565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fce612b9c565b8786866040518563ffffffff1660e01b8152600401612ff0949392919061507b565b6020604051808303816000875af192505050801561302c57506040513d601f19601f8201168201806040525081019061302991906150dc565b60015b6130a5573d806000811461305c576040519150601f19603f3d011682016040523d82523d6000602084013e613061565b606091505b50600081510361309d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016131078461353b565b01905060008167ffffffffffffffff81111561312657613125613d58565b5b6040519080825280601f01601f1916602001820160405280156131585781602001600182028036833780820191505090505b509050600082602001820190505b6001156131bb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816131af576131ae614759565b5b04945060008503613166575b819350505050919050565b60008082905060005b84518110156132305760008582815181106131ed576131ec614891565b5b6020026020010151905080831161320f57613208838261368e565b925061321c565b613219818461368e565b92505b508080613228906148c0565b9150506131cf565b508091505092915050565b61324583836136a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146132d357600080549050600083820390505b6132856000868380600101945086612fa8565b6132bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106132725781600054146132d057600080fd5b50505b505050565b600033905090565b60009392505050565b60006132f483612c60565b9050600081905060008061330786612d2c565b91509150841561337057613323818461331e612b9c565b612d53565b61336f5761333883613333612b9c565b612a26565b61336e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61337e836000886001612d97565b801561338957600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613431836133ee85600088612d9d565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612dc5565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036134b757600060018701905060006004600083815260200190815260200160002054036134b55760005481146134b4578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613521836000886001612df0565b600160008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613599577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161358f5761358e614759565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106135d6576d04ee2d6d415b85acef810000000083816135cc576135cb614759565b5b0492506020810190505b662386f26fc10000831061360557662386f26fc1000083816135fb576135fa614759565b5b0492506010810190505b6305f5e100831061362e576305f5e100838161362457613623614759565b5b0492506008810190505b612710831061365357612710838161364957613648614759565b5b0492506004810190505b60648310613676576064838161366c5761366b614759565b5b0492506002810190505b600a8310613685576001810190505b80915050919050565b600082600052816020526040600020905092915050565b600080549050600082036136e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136f26000848385612d97565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506137698361375a6000866000612d9d565b61376385613860565b17612dc5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461380a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506137cf565b5060008203613845576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061385b6000848385612df0565b505050565b60006001821460e11b9050919050565b6000819050919050565b61388381613870565b82525050565b600060208201905061389e600083018461387a565b92915050565b6000604051905090565b600080fd5b600080fd5b6138c181613870565b81146138cc57600080fd5b50565b6000813590506138de816138b8565b92915050565b6000602082840312156138fa576138f96138ae565b5b6000613908848285016138cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061393c82613911565b9050919050565b61394c81613931565b82525050565b60006020820190506139676000830184613943565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139a28161396d565b81146139ad57600080fd5b50565b6000813590506139bf81613999565b92915050565b6000602082840312156139db576139da6138ae565b5b60006139e9848285016139b0565b91505092915050565b60008115159050919050565b613a07816139f2565b82525050565b6000602082019050613a2260008301846139fe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a62578082015181840152602081019050613a47565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a8a82613a28565b613a948185613a33565b9350613aa4818560208601613a44565b613aad81613a6e565b840191505092915050565b60006020820190508181036000830152613ad28184613a7f565b905092915050565b613ae381613931565b8114613aee57600080fd5b50565b600081359050613b0081613ada565b92915050565b60008060408385031215613b1d57613b1c6138ae565b5b6000613b2b85828601613af1565b9250506020613b3c858286016138cf565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613b6b57613b6a613b46565b5b8235905067ffffffffffffffff811115613b8857613b87613b4b565b5b602083019150836020820283011115613ba457613ba3613b50565b5b9250929050565b600080600060408486031215613bc457613bc36138ae565b5b6000613bd2868287016138cf565b935050602084013567ffffffffffffffff811115613bf357613bf26138b3565b5b613bff86828701613b55565b92509250509250925092565b613c14816139f2565b8114613c1f57600080fd5b50565b600081359050613c3181613c0b565b92915050565b600060208284031215613c4d57613c4c6138ae565b5b6000613c5b84828501613c22565b91505092915050565b600080600060608486031215613c7d57613c7c6138ae565b5b6000613c8b86828701613af1565b9350506020613c9c86828701613af1565b9250506040613cad868287016138cf565b9150509250925092565b60008060408385031215613cce57613ccd6138ae565b5b6000613cdc858286016138cf565b9250506020613ced858286016138cf565b9150509250929050565b600060208284031215613d0d57613d0c6138ae565b5b6000613d1b84828501613af1565b91505092915050565b6000819050919050565b613d3781613d24565b82525050565b6000602082019050613d526000830184613d2e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d9082613a6e565b810181811067ffffffffffffffff82111715613daf57613dae613d58565b5b80604052505050565b6000613dc26138a4565b9050613dce8282613d87565b919050565b600067ffffffffffffffff821115613dee57613ded613d58565b5b602082029050602081019050919050565b6000613e12613e0d84613dd3565b613db8565b90508083825260208201905060208402830185811115613e3557613e34613b50565b5b835b81811015613e5e5780613e4a8882613af1565b845260208401935050602081019050613e37565b5050509392505050565b600082601f830112613e7d57613e7c613b46565b5b8135613e8d848260208601613dff565b91505092915050565b600060208284031215613eac57613eab6138ae565b5b600082013567ffffffffffffffff811115613eca57613ec96138b3565b5b613ed684828501613e68565b91505092915050565b600080fd5b600067ffffffffffffffff821115613eff57613efe613d58565b5b613f0882613a6e565b9050602081019050919050565b82818337600083830152505050565b6000613f37613f3284613ee4565b613db8565b905082815260208101848484011115613f5357613f52613edf565b5b613f5e848285613f15565b509392505050565b600082601f830112613f7b57613f7a613b46565b5b8135613f8b848260208601613f24565b91505092915050565b600060208284031215613faa57613fa96138ae565b5b600082013567ffffffffffffffff811115613fc857613fc76138b3565b5b613fd484828501613f66565b91505092915050565b60008060408385031215613ff457613ff36138ae565b5b600061400285828601613af1565b925050602061401385828601613c22565b9150509250929050565b600067ffffffffffffffff82111561403857614037613d58565b5b61404182613a6e565b9050602081019050919050565b600061406161405c8461401d565b613db8565b90508281526020810184848401111561407d5761407c613edf565b5b614088848285613f15565b509392505050565b600082601f8301126140a5576140a4613b46565b5b81356140b584826020860161404e565b91505092915050565b600080600080608085870312156140d8576140d76138ae565b5b60006140e687828801613af1565b94505060206140f787828801613af1565b9350506040614108878288016138cf565b925050606085013567ffffffffffffffff811115614129576141286138b3565b5b61413587828801614090565b91505092959194509250565b61414a81613d24565b811461415557600080fd5b50565b60008135905061416781614141565b92915050565b600060208284031215614183576141826138ae565b5b600061419184828501614158565b91505092915050565b600080604083850312156141b1576141b06138ae565b5b60006141bf85828601613af1565b92505060206141d085828601613af1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061422157607f821691505b602082108103614234576142336141da565b5b50919050565b7f4d494e5420484153204e4f542053544152544544205945540000000000000000600082015250565b6000614270601883613a33565b915061427b8261423a565b602082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b60008160601b9050919050565b60006142be826142a6565b9050919050565b60006142d0826142b3565b9050919050565b6142e86142e382613931565b6142c5565b82525050565b60006142fa82846142d7565b60148201915081905092915050565b7f594f55522057414c4c4554204953204e4f542057484954454c49535445440000600082015250565b600061433f601e83613a33565b915061434a82614309565b602082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b7f594f55204841564520414c524541445920434c41494d454420594f5552204e4660008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006143d1602183613a33565b91506143dc82614375565b604082019050919050565b60006020820190508181036000830152614400816143c4565b9050919050565b7f6d617820706572207472616e73616374696f6e20310000000000000000000000600082015250565b600061443d601583613a33565b915061444882614407565b602082019050919050565b6000602082019050818103600083015261446c81614430565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144ad82613870565b91506144b883613870565b92508282019050808211156144d0576144cf614473565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b600061450c600983613a33565b9150614517826144d6565b602082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f4f4e4c592033204e46545320414c4c4f57454420494e2050524553414c450000600082015250565b6000614578601e83613a33565b915061458382614542565b602082019050919050565b600060208201905081810360008301526145a78161456b565b9050919050565b7f4f4e4c592033204e46545320414c4c4f57454420504552205452414e5341435460008201527f494f4e0000000000000000000000000000000000000000000000000000000000602082015250565b600061460a602383613a33565b9150614615826145ae565b604082019050919050565b60006020820190508181036000830152614639816145fd565b9050919050565b600061464b82613870565b915061465683613870565b925082820261466481613870565b9150828204841483151761467b5761467a614473565b5b5092915050565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b60006146b8601683613a33565b91506146c382614682565b602082019050919050565b600060208201905081810360008301526146e7816146ab565b9050919050565b60006040820190506147036000830185613943565b6147106020830184613943565b9392505050565b60008151905061472681613c0b565b92915050565b600060208284031215614742576147416138ae565b5b600061475084828501614717565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479382613870565b915061479e83613870565b9250826147ae576147ad614759565b5b828204905092915050565b7f6275726e696e672064697361626c656400000000000000000000000000000000600082015250565b60006147ef601083613a33565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b7f6275726e2063616c6c6572206973206e6f7420617070726f7665640000000000600082015250565b600061485b601b83613a33565b915061486682614825565b602082019050919050565b6000602082019050818103600083015261488a8161484e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006148cb82613870565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148fd576148fc614473565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261496a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261492d565b614974868361492d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006149b16149ac6149a784613870565b61498c565b613870565b9050919050565b6000819050919050565b6149cb83614996565b6149df6149d7826149b8565b84845461493a565b825550505050565b600090565b6149f46149e7565b6149ff8184846149c2565b505050565b5b81811015614a2357614a186000826149ec565b600181019050614a05565b5050565b601f821115614a6857614a3981614908565b614a428461491d565b81016020851015614a51578190505b614a65614a5d8561491d565b830182614a04565b50505b505050565b600082821c905092915050565b6000614a8b60001984600802614a6d565b1980831691505092915050565b6000614aa48383614a7a565b9150826002028217905092915050565b614abd82613a28565b67ffffffffffffffff811115614ad657614ad5613d58565b5b614ae08254614209565b614aeb828285614a27565b600060209050601f831160018114614b1e5760008415614b0c578287015190505b614b168582614a98565b865550614b7e565b601f198416614b2c86614908565b60005b82811015614b5457848901518255600182019150602085019450602081019050614b2f565b86831015614b715784890151614b6d601f891682614a7a565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000614bbc600f83613a33565b9150614bc782614b86565b602082019050919050565b60006020820190508181036000830152614beb81614baf565b9050919050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b6000614c28601783613a33565b9150614c3382614bf2565b602082019050919050565b60006020820190508181036000830152614c5781614c1b565b9050919050565b7f4f4e4c592035204e46545320414c4c4f57454420504552205452414e5341435460008201527f494f4e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614cba602383613a33565b9150614cc582614c5e565b604082019050919050565b60006020820190508181036000830152614ce981614cad565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614d4c602f83613a33565b9150614d5782614cf0565b604082019050919050565b60006020820190508181036000830152614d7b81614d3f565b9050919050565b600081905092915050565b60008154614d9a81614209565b614da48186614d82565b94506001821660008114614dbf5760018114614dd457614e07565b60ff1983168652811515820286019350614e07565b614ddd85614908565b60005b83811015614dff57815481890152600182019150602081019050614de0565b838801955050505b50505092915050565b6000614e1b82613a28565b614e258185614d82565b9350614e35818560208601613a44565b80840191505092915050565b50565b6000614e51600083614d82565b9150614e5c82614e41565b600082019050919050565b6000614e738285614d8d565b9150614e7f8284614e10565b9150614e8a82614e44565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ef2602683613a33565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f5e602083613a33565b9150614f6982614f28565b602082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ff0602c83613a33565b9150614ffb82614f94565b604082019050919050565b6000602082019050818103600083015261501f81614fe3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061504d82615026565b6150578185615031565b9350615067818560208601613a44565b61507081613a6e565b840191505092915050565b60006080820190506150906000830187613943565b61509d6020830186613943565b6150aa604083018561387a565b81810360608301526150bc8184615042565b905095945050505050565b6000815190506150d681613999565b92915050565b6000602082840312156150f2576150f16138ae565b5b6000615100848285016150c7565b9150509291505056fea2646970667358221220d4a90bec3da74b3247185289f1130169bcbd690eb464a7cea5d185c0817cf74364736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102865760003560e01c806370a082311161015a578063aa98e0c6116100c1578063c41cd33f1161007a578063c41cd33f1461092e578063c504a95014610957578063c87b56dd14610980578063ca6e8732146109bd578063e985e9c5146109e6578063f2fde38b14610a2357610286565b8063aa98e0c61461084c578063b88d4fde14610877578063ba6dd6f014610893578063bdabd11c146108be578063c18ccfbf146108e9578063c1f261231461090557610286565b806388bb43211161011357806388bb4321146107505780638da5cb5b1461077957806395d89b41146107a457806395ea5e67146107cf578063a0bcfc7f146107fa578063a22cb4651461082357610286565b806370a0823114610654578063715018a61461069157806377c2dc07146106a85780637c8255db146106d35780637ff9b596146106fc5780638154ecee1461072757610286565b80631d1021a0116101fe5780634b980d67116101b75780634b980d6714610544578063593815371461056f5780636352211e1461059a578063665fdc35146105d75780636c0360eb146106005780636cee9d231461062b57610286565b80631d1021a014610478578063230a9b8d146104a157806323b872dd146104cc5780633ccfd60b146104e857806342842e0e146104ff57806342966c681461051b57610286565b8063081812fc11610250578063081812fc14610386578063095ea7b3146103c357806314bdf9a3146103df57806315a972e61461040857806318160ddd146104315780631ba5aacc1461045c57610286565b80620e7fa81461028b57806280f6d5146102b657806301ffc9a7146102f357806306fdde031461033057806307ebec271461035b575b600080fd5b34801561029757600080fd5b506102a0610a4c565b6040516102ad9190613889565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d891906138e4565b610a52565b6040516102ea9190613952565b60405180910390f35b3480156102ff57600080fd5b5061031a600480360381019061031591906139c5565b610a85565b6040516103279190613a0d565b60405180910390f35b34801561033c57600080fd5b50610345610b17565b6040516103529190613ab8565b60405180910390f35b34801561036757600080fd5b50610370610ba9565b60405161037d9190613a0d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906138e4565b610bbc565b6040516103ba9190613952565b60405180910390f35b6103dd60048036038101906103d89190613b06565b610c3b565b005b3480156103eb57600080fd5b5061040660048036038101906104019190613bab565b610d7f565b005b34801561041457600080fd5b5061042f600480360381019061042a91906138e4565b611018565b005b34801561043d57600080fd5b5061044661102a565b6040516104539190613889565b60405180910390f35b61047660048036038101906104719190613bab565b611041565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613c37565b611292565b005b3480156104ad57600080fd5b506104b66112b7565b6040516104c39190613889565b60405180910390f35b6104e660048036038101906104e19190613c64565b6112bd565b005b3480156104f457600080fd5b506104fd611ac3565b005b61051960048036038101906105149190613c64565b611c92565b005b34801561052757600080fd5b50610542600480360381019061053d91906138e4565b611e94565b005b34801561055057600080fd5b50610559611f8a565b6040516105669190613889565b60405180910390f35b34801561057b57600080fd5b50610584611f90565b6040516105919190613889565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906138e4565b611f96565b6040516105ce9190613952565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613cb7565b611fa8565b005b34801561060c57600080fd5b50610615611fc2565b6040516106229190613ab8565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613c37565b612050565b005b34801561066057600080fd5b5061067b60048036038101906106769190613cf7565b612075565b6040516106889190613889565b60405180910390f35b34801561069d57600080fd5b506106a661212d565b005b3480156106b457600080fd5b506106bd612141565b6040516106ca9190613d3d565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613e96565b612147565b005b34801561070857600080fd5b506107116121ef565b60405161071e9190613889565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906138e4565b6121f5565b005b34801561075c57600080fd5b5061077760048036038101906107729190613c37565b612207565b005b34801561078557600080fd5b5061078e61222c565b60405161079b9190613952565b60405180910390f35b3480156107b057600080fd5b506107b9612256565b6040516107c69190613ab8565b60405180910390f35b3480156107db57600080fd5b506107e46122e8565b6040516107f19190613a0d565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613f94565b6122fb565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613fdd565b612316565b005b34801561085857600080fd5b50610861612421565b60405161086e9190613d3d565b60405180910390f35b610891600480360381019061088c91906140be565b612427565b005b34801561089f57600080fd5b506108a86126ce565b6040516108b59190613a0d565b60405180910390f35b3480156108ca57600080fd5b506108d36126e1565b6040516108e09190613a0d565b60405180910390f35b61090360048036038101906108fe91906138e4565b6126f4565b005b34801561091157600080fd5b5061092c600480360381019061092791906138e4565b612886565b005b34801561093a57600080fd5b5061095560048036038101906109509190613c37565b612935565b005b34801561096357600080fd5b5061097e6004803603810190610979919061416d565b61295a565b005b34801561098c57600080fd5b506109a760048036038101906109a291906138e4565b61296c565b6040516109b49190613ab8565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df919061416d565b612a14565b005b3480156109f257600080fd5b50610a0d6004803603810190610a08919061419a565b612a26565b604051610a1a9190613a0d565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613cf7565b612aba565b005b600a5481565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b105750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b2690614209565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5290614209565b8015610b9f5780601f10610b7457610100808354040283529160200191610b9f565b820191906000526020600020905b815481529060010190602001808311610b8257829003601f168201915b5050505050905090565b600b60039054906101000a900460ff1681565b6000610bc782612b3d565b610bfd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4682611f96565b90508073ffffffffffffffffffffffffffffffffffffffff16610c67612b9c565b73ffffffffffffffffffffffffffffffffffffffff1614610cca57610c9381610c8e612b9c565b612a26565b610cc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60011515600b60009054906101000a900460ff16151514610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90614286565b60405180910390fd5b610e49828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5433604051602001610e2e91906142ee565b60405160208183030381529060405280519060200120612ba4565b610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90614355565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c906143e7565b60405180910390fd5b601354831115610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190614453565b60405180910390fd5b611a0a83610f6661102a565b610f7091906144a2565b1115610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614522565b60405180910390fd5b610fbb3384612bbb565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611020612bd9565b80600a8190555050565b6000611034612c57565b6001546000540303905090565b60011515600b60019054906101000a900460ff16151514611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90614286565b60405180910390fd5b61110b828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016110f091906142ee565b60405160208183030381529060405280519060200120612ba4565b61114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190614355565b60405180910390fd5b60125461115633612075565b1115611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061458e565b60405180910390fd5b6012548311156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390614620565b60405180910390fd5b611a0a836111e861102a565b6111f291906144a2565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90614522565b60405180910390fd5b82600a546112419190614640565b341015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906146ce565b60405180910390fd5b61128d3384612bbb565b505050565b61129a612bd9565b80600b60036101000a81548160ff02191690831515021790555050565b60125481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561179f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361164157600061132a83612c60565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611391576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061139d85612d2c565b915091506113b381886113ae612b9c565b612d53565b6113ff576113c8876113c3612b9c565b612a26565b6113fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611465576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114728787876001612d97565b801561147d57600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061154b86611527898987612d9d565b7c020000000000000000000000000000000000000000000000000000000017612dc5565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115d157600060018601905060006004600083815260200190815260200160002054036115cf5760005481146115ce578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116398787876001612df0565b505050611abd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161168a9291906146ee565b602060405180830381865afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb919061472c565b801561175d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161171b9291906146ee565b602060405180830381865afa158015611738573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175c919061472c565b5b61179e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117959190613952565b60405180910390fd5b5b60006117aa83612c60565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611811576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061181d85612d2c565b91509150611833818861182e612b9c565b612d53565b61187f5761184887611843612b9c565b612a26565b61187e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036118e5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f28787876001612d97565b80156118fd57600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119cb866119a7898987612d9d565b7c020000000000000000000000000000000000000000000000000000000017612dc5565b600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a515760006001860190506000600460008381526020019081526020016000205403611a4f576000548114611a4e578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab98787876001612df0565b5050505b50505050565b611acb612bd9565b6000479050611ad861222c565b73ffffffffffffffffffffffffffffffffffffffff166108fc6064603684611b009190614640565b611b0a9190614788565b9081150290604051600060405180830381858888f19350505050158015611b35573d6000803e3d6000fd5b50732a49fced5de896c3b2a70a550b4c3bc8995ede4073ffffffffffffffffffffffffffffffffffffffff166108fc6064602184611b739190614640565b611b7d9190614788565b9081150290604051600060405180830381858888f19350505050158015611ba8573d6000803e3d6000fd5b5073261e28ceed4b1da2c643d44f7a2439ddfee1b97873ffffffffffffffffffffffffffffffffffffffff166108fc6064600784611be69190614640565b611bf09190614788565b9081150290604051600060405180830381858888f19350505050158015611c1b573d6000803e3d6000fd5b507393a0c561d165054d29f242909a2ea40e6ab2bbad73ffffffffffffffffffffffffffffffffffffffff166108fc6064600684611c599190614640565b611c639190614788565b9081150290604051600060405180830381858888f19350505050158015611c8e573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d1457611d0f84848460405180602001604052806000815250612427565b611e8e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611d5d9291906146ee565b602060405180830381865afa158015611d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9e919061472c565b8015611e3057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611dee9291906146ee565b602060405180830381865afa158015611e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2f919061472c565b5b611e7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e689190613952565b60405180910390fd5b5b611e8d84848460405180602001604052806000815250612427565b5b50505050565b600b60039054906101000a900460ff16611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90614805565b60405180910390fd5b611eed3382612df6565b611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614871565b60405180910390fd5b611f3581612ed4565b336010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b60135481565b6000611fa182612c60565b9050919050565b611fb0612bd9565b81601181905550806012819055505050565b600f8054611fcf90614209565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffb90614209565b80156120485780601f1061201d57610100808354040283529160200191612048565b820191906000526020600020905b81548152906001019060200180831161202b57829003601f168201915b505050505081565b612058612bd9565b80600b60026101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120dc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612135612bd9565b61213f6000612ee2565b565b600d5481565b61214f612bd9565b611a0a815161215c61102a565b61216691906144a2565b11156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90614522565b60405180910390fd5b60005b81518110156121eb576121d88282815181106121c9576121c8614891565b5b60200260200101516001612bbb565b80806121e3906148c0565b9150506121aa565b5050565b60095481565b6121fd612bd9565b8060098190555050565b61220f612bd9565b80600b60016101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461226590614209565b80601f016020809104026020016040519081016040528092919081815260200182805461229190614209565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b5050505050905090565b600b60029054906101000a900460ff1681565b612303612bd9565b80600f90816123129190614ab4565b5050565b8060076000612323612b9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123d0612b9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124159190613a0d565b60405180910390a35050565b600c5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612659573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124fb576124948585856112bd565b60008473ffffffffffffffffffffffffffffffffffffffff163b146124f6576124bf85858585612fa8565b6124f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6126c7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016125449291906146ee565b602060405180830381865afa158015612561573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612585919061472c565b801561261757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016125d59291906146ee565b602060405180830381865afa1580156125f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612616919061472c565b5b61265857336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161264f9190613952565b60405180910390fd5b5b6126648585856112bd565b60008473ffffffffffffffffffffffffffffffffffffffff163b146126c65761268f85858585612fa8565b6126c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b60011515600b60029054906101000a900460ff1615151461274a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274190614bd2565b60405180910390fd5b6000811161278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614c3e565b60405180910390fd5b611a0a8161279961102a565b6127a391906144a2565b11156127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614522565b60405180910390fd5b806009546127f29190614640565b341015612834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282b906146ce565b60405180910390fd5b601154811115612879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287090614cd0565b60405180910390fd5b6128833382612bbb565b50565b61288e612bd9565b600081116128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614c3e565b60405180910390fd5b611a0a816128dd61102a565b6128e791906144a2565b1115612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90614522565b60405180910390fd5b6129323382612bbb565b50565b61293d612bd9565b80600b60006101000a81548160ff02191690831515021790555050565b612962612bd9565b80600c8190555050565b606061297782612b3d565b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90614d62565b60405180910390fd5b6000600f80546129c590614209565b9050116129e15760405180602001604052806000815250612a0d565b600f6129ec836130f8565b6040516020016129fd929190614e67565b6040516020818303038152906040525b9050919050565b612a1c612bd9565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ac2612bd9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2890614f08565b60405180910390fd5b612b3a81612ee2565b50565b600081612b48612c57565b11158015612b57575060005482105b8015612b95575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612bb185846131c6565b1490509392505050565b612bd582826040518060200160405280600081525061323b565b5050565b612be16132d8565b73ffffffffffffffffffffffffffffffffffffffff16612bff61222c565b73ffffffffffffffffffffffffffffffffffffffff1614612c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4c90614f74565b60405180910390fd5b565b60006001905090565b60008082905080612c6f612c57565b11612cf557600054811015612cf45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612cf2575b60008103612ce8576004600083600190039350838152602001908152602001600020549050612cbe565b8092505050612d27565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612db48686846132e0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612e0182612b3d565b612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790615006565b60405180910390fd5b6000612e4b83611f96565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612eba57508373ffffffffffffffffffffffffffffffffffffffff16612ea284610bbc565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ecb5750612eca8185612a26565b5b91505092915050565b612edf8160006132e9565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fce612b9c565b8786866040518563ffffffff1660e01b8152600401612ff0949392919061507b565b6020604051808303816000875af192505050801561302c57506040513d601f19601f8201168201806040525081019061302991906150dc565b60015b6130a5573d806000811461305c576040519150601f19603f3d011682016040523d82523d6000602084013e613061565b606091505b50600081510361309d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016131078461353b565b01905060008167ffffffffffffffff81111561312657613125613d58565b5b6040519080825280601f01601f1916602001820160405280156131585781602001600182028036833780820191505090505b509050600082602001820190505b6001156131bb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816131af576131ae614759565b5b04945060008503613166575b819350505050919050565b60008082905060005b84518110156132305760008582815181106131ed576131ec614891565b5b6020026020010151905080831161320f57613208838261368e565b925061321c565b613219818461368e565b92505b508080613228906148c0565b9150506131cf565b508091505092915050565b61324583836136a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146132d357600080549050600083820390505b6132856000868380600101945086612fa8565b6132bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106132725781600054146132d057600080fd5b50505b505050565b600033905090565b60009392505050565b60006132f483612c60565b9050600081905060008061330786612d2c565b91509150841561337057613323818461331e612b9c565b612d53565b61336f5761333883613333612b9c565b612a26565b61336e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61337e836000886001612d97565b801561338957600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613431836133ee85600088612d9d565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612dc5565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036134b757600060018701905060006004600083815260200190815260200160002054036134b55760005481146134b4578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613521836000886001612df0565b600160008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613599577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161358f5761358e614759565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106135d6576d04ee2d6d415b85acef810000000083816135cc576135cb614759565b5b0492506020810190505b662386f26fc10000831061360557662386f26fc1000083816135fb576135fa614759565b5b0492506010810190505b6305f5e100831061362e576305f5e100838161362457613623614759565b5b0492506008810190505b612710831061365357612710838161364957613648614759565b5b0492506004810190505b60648310613676576064838161366c5761366b614759565b5b0492506002810190505b600a8310613685576001810190505b80915050919050565b600082600052816020526040600020905092915050565b600080549050600082036136e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136f26000848385612d97565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506137698361375a6000866000612d9d565b61376385613860565b17612dc5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461380a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506137cf565b5060008203613845576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061385b6000848385612df0565b505050565b60006001821460e11b9050919050565b6000819050919050565b61388381613870565b82525050565b600060208201905061389e600083018461387a565b92915050565b6000604051905090565b600080fd5b600080fd5b6138c181613870565b81146138cc57600080fd5b50565b6000813590506138de816138b8565b92915050565b6000602082840312156138fa576138f96138ae565b5b6000613908848285016138cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061393c82613911565b9050919050565b61394c81613931565b82525050565b60006020820190506139676000830184613943565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139a28161396d565b81146139ad57600080fd5b50565b6000813590506139bf81613999565b92915050565b6000602082840312156139db576139da6138ae565b5b60006139e9848285016139b0565b91505092915050565b60008115159050919050565b613a07816139f2565b82525050565b6000602082019050613a2260008301846139fe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a62578082015181840152602081019050613a47565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a8a82613a28565b613a948185613a33565b9350613aa4818560208601613a44565b613aad81613a6e565b840191505092915050565b60006020820190508181036000830152613ad28184613a7f565b905092915050565b613ae381613931565b8114613aee57600080fd5b50565b600081359050613b0081613ada565b92915050565b60008060408385031215613b1d57613b1c6138ae565b5b6000613b2b85828601613af1565b9250506020613b3c858286016138cf565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613b6b57613b6a613b46565b5b8235905067ffffffffffffffff811115613b8857613b87613b4b565b5b602083019150836020820283011115613ba457613ba3613b50565b5b9250929050565b600080600060408486031215613bc457613bc36138ae565b5b6000613bd2868287016138cf565b935050602084013567ffffffffffffffff811115613bf357613bf26138b3565b5b613bff86828701613b55565b92509250509250925092565b613c14816139f2565b8114613c1f57600080fd5b50565b600081359050613c3181613c0b565b92915050565b600060208284031215613c4d57613c4c6138ae565b5b6000613c5b84828501613c22565b91505092915050565b600080600060608486031215613c7d57613c7c6138ae565b5b6000613c8b86828701613af1565b9350506020613c9c86828701613af1565b9250506040613cad868287016138cf565b9150509250925092565b60008060408385031215613cce57613ccd6138ae565b5b6000613cdc858286016138cf565b9250506020613ced858286016138cf565b9150509250929050565b600060208284031215613d0d57613d0c6138ae565b5b6000613d1b84828501613af1565b91505092915050565b6000819050919050565b613d3781613d24565b82525050565b6000602082019050613d526000830184613d2e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d9082613a6e565b810181811067ffffffffffffffff82111715613daf57613dae613d58565b5b80604052505050565b6000613dc26138a4565b9050613dce8282613d87565b919050565b600067ffffffffffffffff821115613dee57613ded613d58565b5b602082029050602081019050919050565b6000613e12613e0d84613dd3565b613db8565b90508083825260208201905060208402830185811115613e3557613e34613b50565b5b835b81811015613e5e5780613e4a8882613af1565b845260208401935050602081019050613e37565b5050509392505050565b600082601f830112613e7d57613e7c613b46565b5b8135613e8d848260208601613dff565b91505092915050565b600060208284031215613eac57613eab6138ae565b5b600082013567ffffffffffffffff811115613eca57613ec96138b3565b5b613ed684828501613e68565b91505092915050565b600080fd5b600067ffffffffffffffff821115613eff57613efe613d58565b5b613f0882613a6e565b9050602081019050919050565b82818337600083830152505050565b6000613f37613f3284613ee4565b613db8565b905082815260208101848484011115613f5357613f52613edf565b5b613f5e848285613f15565b509392505050565b600082601f830112613f7b57613f7a613b46565b5b8135613f8b848260208601613f24565b91505092915050565b600060208284031215613faa57613fa96138ae565b5b600082013567ffffffffffffffff811115613fc857613fc76138b3565b5b613fd484828501613f66565b91505092915050565b60008060408385031215613ff457613ff36138ae565b5b600061400285828601613af1565b925050602061401385828601613c22565b9150509250929050565b600067ffffffffffffffff82111561403857614037613d58565b5b61404182613a6e565b9050602081019050919050565b600061406161405c8461401d565b613db8565b90508281526020810184848401111561407d5761407c613edf565b5b614088848285613f15565b509392505050565b600082601f8301126140a5576140a4613b46565b5b81356140b584826020860161404e565b91505092915050565b600080600080608085870312156140d8576140d76138ae565b5b60006140e687828801613af1565b94505060206140f787828801613af1565b9350506040614108878288016138cf565b925050606085013567ffffffffffffffff811115614129576141286138b3565b5b61413587828801614090565b91505092959194509250565b61414a81613d24565b811461415557600080fd5b50565b60008135905061416781614141565b92915050565b600060208284031215614183576141826138ae565b5b600061419184828501614158565b91505092915050565b600080604083850312156141b1576141b06138ae565b5b60006141bf85828601613af1565b92505060206141d085828601613af1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061422157607f821691505b602082108103614234576142336141da565b5b50919050565b7f4d494e5420484153204e4f542053544152544544205945540000000000000000600082015250565b6000614270601883613a33565b915061427b8261423a565b602082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b60008160601b9050919050565b60006142be826142a6565b9050919050565b60006142d0826142b3565b9050919050565b6142e86142e382613931565b6142c5565b82525050565b60006142fa82846142d7565b60148201915081905092915050565b7f594f55522057414c4c4554204953204e4f542057484954454c49535445440000600082015250565b600061433f601e83613a33565b915061434a82614309565b602082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b7f594f55204841564520414c524541445920434c41494d454420594f5552204e4660008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006143d1602183613a33565b91506143dc82614375565b604082019050919050565b60006020820190508181036000830152614400816143c4565b9050919050565b7f6d617820706572207472616e73616374696f6e20310000000000000000000000600082015250565b600061443d601583613a33565b915061444882614407565b602082019050919050565b6000602082019050818103600083015261446c81614430565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144ad82613870565b91506144b883613870565b92508282019050808211156144d0576144cf614473565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b600061450c600983613a33565b9150614517826144d6565b602082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f4f4e4c592033204e46545320414c4c4f57454420494e2050524553414c450000600082015250565b6000614578601e83613a33565b915061458382614542565b602082019050919050565b600060208201905081810360008301526145a78161456b565b9050919050565b7f4f4e4c592033204e46545320414c4c4f57454420504552205452414e5341435460008201527f494f4e0000000000000000000000000000000000000000000000000000000000602082015250565b600061460a602383613a33565b9150614615826145ae565b604082019050919050565b60006020820190508181036000830152614639816145fd565b9050919050565b600061464b82613870565b915061465683613870565b925082820261466481613870565b9150828204841483151761467b5761467a614473565b5b5092915050565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b60006146b8601683613a33565b91506146c382614682565b602082019050919050565b600060208201905081810360008301526146e7816146ab565b9050919050565b60006040820190506147036000830185613943565b6147106020830184613943565b9392505050565b60008151905061472681613c0b565b92915050565b600060208284031215614742576147416138ae565b5b600061475084828501614717565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479382613870565b915061479e83613870565b9250826147ae576147ad614759565b5b828204905092915050565b7f6275726e696e672064697361626c656400000000000000000000000000000000600082015250565b60006147ef601083613a33565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b7f6275726e2063616c6c6572206973206e6f7420617070726f7665640000000000600082015250565b600061485b601b83613a33565b915061486682614825565b602082019050919050565b6000602082019050818103600083015261488a8161484e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006148cb82613870565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148fd576148fc614473565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261496a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261492d565b614974868361492d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006149b16149ac6149a784613870565b61498c565b613870565b9050919050565b6000819050919050565b6149cb83614996565b6149df6149d7826149b8565b84845461493a565b825550505050565b600090565b6149f46149e7565b6149ff8184846149c2565b505050565b5b81811015614a2357614a186000826149ec565b600181019050614a05565b5050565b601f821115614a6857614a3981614908565b614a428461491d565b81016020851015614a51578190505b614a65614a5d8561491d565b830182614a04565b50505b505050565b600082821c905092915050565b6000614a8b60001984600802614a6d565b1980831691505092915050565b6000614aa48383614a7a565b9150826002028217905092915050565b614abd82613a28565b67ffffffffffffffff811115614ad657614ad5613d58565b5b614ae08254614209565b614aeb828285614a27565b600060209050601f831160018114614b1e5760008415614b0c578287015190505b614b168582614a98565b865550614b7e565b601f198416614b2c86614908565b60005b82811015614b5457848901518255600182019150602085019450602081019050614b2f565b86831015614b715784890151614b6d601f891682614a7a565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000614bbc600f83613a33565b9150614bc782614b86565b602082019050919050565b60006020820190508181036000830152614beb81614baf565b9050919050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b6000614c28601783613a33565b9150614c3382614bf2565b602082019050919050565b60006020820190508181036000830152614c5781614c1b565b9050919050565b7f4f4e4c592035204e46545320414c4c4f57454420504552205452414e5341435460008201527f494f4e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614cba602383613a33565b9150614cc582614c5e565b604082019050919050565b60006020820190508181036000830152614ce981614cad565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614d4c602f83613a33565b9150614d5782614cf0565b604082019050919050565b60006020820190508181036000830152614d7b81614d3f565b9050919050565b600081905092915050565b60008154614d9a81614209565b614da48186614d82565b94506001821660008114614dbf5760018114614dd457614e07565b60ff1983168652811515820286019350614e07565b614ddd85614908565b60005b83811015614dff57815481890152600182019150602081019050614de0565b838801955050505b50505092915050565b6000614e1b82613a28565b614e258185614d82565b9350614e35818560208601613a44565b80840191505092915050565b50565b6000614e51600083614d82565b9150614e5c82614e41565b600082019050919050565b6000614e738285614d8d565b9150614e7f8284614e10565b9150614e8a82614e44565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ef2602683613a33565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f5e602083613a33565b9150614f6982614f28565b602082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ff0602c83613a33565b9150614ffb82614f94565b604082019050919050565b6000602082019050818103600083015261501f81614fe3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061504d82615026565b6150578185615031565b9350615067818560208601613a44565b61507081613a6e565b840191505092915050565b60006080820190506150906000830187613943565b61509d6020830186613943565b6150aa604083018561387a565b81810360608301526150bc8184615042565b905095945050505050565b6000815190506150d681613999565b92915050565b6000602082840312156150f2576150f16138ae565b5b6000615100848285016150c7565b9150509291505056fea2646970667358221220d4a90bec3da74b3247185289f1130169bcbd690eb464a7cea5d185c0817cf74364736f6c63430008110033

Deployed Bytecode Sourcemap

560:5399:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1086:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9474:639:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10376:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;886:31:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16867:218:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16300:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2526:573:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5190:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6127:323:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1825:692:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4455:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1198:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20865:2850:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5525:431:14;;;;;;;;;;;;;:::i;:::-;;23811:218:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4783:300:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1138:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1264:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11769:152:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5289:227:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1052:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4340:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7311:233:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:11;;;;;;;;;;;;;:::i;:::-;;965:28:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3338:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;639:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5090:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4133:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1236:87:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10552:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;841:38:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4035:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17425:234:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;924:34:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24627:432:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;800:34:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;763:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1364:453;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3107:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4237:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4567:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3734:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4676:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17816:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;681:38:14;;;;:::o;1086:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;9474:639:2:-;9559:4;9898:10;9883:25;;:11;:25;;;;:102;;;;9975:10;9960:25;;:11;:25;;;;9883:102;:179;;;;10052:10;10037:25;;:11;:25;;;;9883:179;9863:199;;9474:639;;;:::o;10376:100::-;10430:13;10463:5;10456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10376:100;:::o;886:31:14:-;;;;;;;;;;;;;:::o;16867:218:2:-;16943:7;16968:16;16976:7;16968;:16::i;:::-;16963:64;;16993:34;;;;;;;;;;;;;;16963:64;17047:15;:24;17063:7;17047:24;;;;;;;;;;;:30;;;;;;;;;;;;17040:37;;16867:218;;;:::o;16300:408::-;16389:13;16405:16;16413:7;16405;:16::i;:::-;16389:32;;16461:5;16438:28;;:19;:17;:19::i;:::-;:28;;;16434:175;;16486:44;16503:5;16510:19;:17;:19::i;:::-;16486:16;:44::i;:::-;16481:128;;16558:35;;;;;;;;;;;;;;16481:128;16434:175;16654:2;16621:15;:24;16637:7;16621:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16692:7;16688:2;16672:28;;16681:5;16672:28;;;;;;;;;;;;16378:330;16300:408;;:::o;2526:573:14:-;2631:4;2617:18;;:10;;;;;;;;;;;:18;;;2609:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2683:85;2702:11;;2683:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2714:13;;2755:10;2738:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2728:39;;;;;;2683:18;:85::i;:::-;2675:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;2822:6;:18;2829:10;2822:18;;;;;;;;;;;;;;;;;;;;;;;;;2821:19;2813:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2907:9;;2897:6;:19;;2889:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;752:4;2977:6;2961:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;2953:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;3024:29;3034:10;3046:6;3024:9;:29::i;:::-;3087:4;3068:6;:18;3075:10;3068:18;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;2526:573;;;:::o;5190:88::-;1122:13:11;:11;:13::i;:::-;5268:2:14::1;5253:12;:17;;;;5190:88:::0;:::o;6127:323:2:-;6188:7;6416:15;:13;:15::i;:::-;6401:12;;6385:13;;:28;:46;6378:53;;6127:323;:::o;1825:692:14:-;1958:4;1940:22;;:14;;;;;;;;;;;:22;;;1932:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;2010:91;2029:11;;2010:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2041:19;;2088:10;2071:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2061:39;;;;;;2010:18;:91::i;:::-;2002:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;2179:19;;2154:21;2164:10;2154:9;:21::i;:::-;:44;;2146:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;2262:19;;2252:6;:29;;2244:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;752:4;2356:6;2340:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;2332:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2436:6;2421:12;;:21;;;;:::i;:::-;2408:9;:34;;2400:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2480:29;2490:10;2502:6;2480:9;:29::i;:::-;1825:692;;;:::o;4455:104::-;1122:13:11;:11;:13::i;:::-;4545:6:14::1;4529:13;;:22;;;;;;;;;;;;;;;;;;4455:104:::0;:::o;1198:35::-;;;;:::o;20865:2850:2:-;21016:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;21032:27:2::1;21062;21081:7;21062:18;:27::i;:::-;21032:57;;21147:4;21106:45;;21122:19;21106:45;;;21102:86;;21160:28;;;;;;;;;;;;;;21102:86;21202:27;21231:23:::0;21258:35:::1;21285:7;21258:26;:35::i;:::-;21201:92;;;;21393:68;21418:15;21435:4;21441:19;:17;:19::i;:::-;21393:24;:68::i;:::-;21388:180;;21481:43;21498:4;21504:19;:17;:19::i;:::-;21481:16;:43::i;:::-;21476:92;;21533:35;;;;;;;;;;;;;;21476:92;21388:180;21599:1;21585:16;;:2;:16;;::::0;21581:52:::1;;21610:23;;;;;;;;;;;;;;21581:52;21646:43;21668:4;21674:2;21678:7;21687:1;21646:21;:43::i;:::-;21782:15;21779:160;;;21922:1;21901:19;21894:30;21779:160;22319:18;:24;22338:4;22319:24;;;;;;;;;;;;;;;;22317:26;;;;;;;;;;;;22388:18;:22;22407:2;22388:22;;;;;;;;;;;;;;;;22386:24;;;;;;;;;;;22710:146;22747:2;22796:45;22811:4;22817:2;22821:19;22796:14;:45::i;:::-;2526:8;22768:73;22710:18;:146::i;:::-;22681:17;:26;22699:7;22681:26;;;;;;;;;;;:175;;;;23027:1;2526:8;22976:19;:47;:52:::0;22972:627:::1;;23049:19;23081:1;23071:7;:11;23049:33;;23238:1;23204:17;:30;23222:11;23204:30;;;;;;;;;;;;:35:::0;23200:384:::1;;23342:13;;23327:11;:28;23323:242;;23522:19;23489:17;:30;23507:11;23489:30;;;;;;;;;;;:52;;;;23323:242;23200:384;23030:569;22972:627;23646:7;23642:2;23627:27;;23636:4;23627:27;;;;;;;;;;;;23665:42;23686:4;23692:2;23696:7;23705:1;23665:20;:42::i;:::-;21021:2694;;;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;21032:27:2::1;21062;21081:7;21062:18;:27::i;:::-;21032:57;;21147:4;21106:45;;21122:19;21106:45;;;21102:86;;21160:28;;;;;;;;;;;;;;21102:86;21202:27;21231:23:::0;21258:35:::1;21285:7;21258:26;:35::i;:::-;21201:92;;;;21393:68;21418:15;21435:4;21441:19;:17;:19::i;:::-;21393:24;:68::i;:::-;21388:180;;21481:43;21498:4;21504:19;:17;:19::i;:::-;21481:16;:43::i;:::-;21476:92;;21533:35;;;;;;;;;;;;;;21476:92;21388:180;21599:1;21585:16;;:2;:16;;::::0;21581:52:::1;;21610:23;;;;;;;;;;;;;;21581:52;21646:43;21668:4;21674:2;21678:7;21687:1;21646:21;:43::i;:::-;21782:15;21779:160;;;21922:1;21901:19;21894:30;21779:160;22319:18;:24;22338:4;22319:24;;;;;;;;;;;;;;;;22317:26;;;;;;;;;;;;22388:18;:22;22407:2;22388:22;;;;;;;;;;;;;;;;22386:24;;;;;;;;;;;22710:146;22747:2;22796:45;22811:4;22817:2;22821:19;22796:14;:45::i;:::-;2526:8;22768:73;22710:18;:146::i;:::-;22681:17;:26;22699:7;22681:26;;;;;;;;;;;:175;;;;23027:1;2526:8;22976:19;:47;:52:::0;22972:627:::1;;23049:19;23081:1;23071:7;:11;23049:33;;23238:1;23204:17;:30;23222:11;23204:30;;;;;;;;;;;;:35:::0;23200:384:::1;;23342:13;;23327:11;:28;23323:242;;23522:19;23489:17;:30;23507:11;23489:30;;;;;;;;;;;:52;;;;23323:242;23200:384;23030:569;22972:627;23646:7;23642:2;23627:27;;23636:4;23627:27;;;;;;;;;;;;23665:42;23686:4;23692:2;23696:7;23705:1;23665:20;:42::i;:::-;21021:2694;;;20865:2850:::0;;;;;:::o;5525:431:14:-;1122:13:11;:11;:13::i;:::-;5580::14::1;5596:21;5580:37;;5636:7;:5;:7::i;:::-;5628:25;;:46;5670:3;5665:2;5654:8;:13;;;;:::i;:::-;:19;;;;:::i;:::-;5628:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5693:42;5685:60;;:81;5762:3;5757:2;5746:8;:13;;;;:::i;:::-;:19;;;;:::i;:::-;5685:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5785:42;5777:60;;:80;5853:3;5849:1;5838:8;:12;;;;:::i;:::-;:18;;;;:::i;:::-;5777:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5876:42;5868:60;;:80;5944:3;5940:1;5929:8;:12;;;;:::i;:::-;:18;;;;:::i;:::-;5868:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5564:392;5525:431::o:0;23811:218:2:-;23966:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;23982:39:2::1;23999:4;24005:2;24009:7;23982:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;23982:39:2::1;23999:4;24005:2;24009:7;23982:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;23811:218:::0;;;;;:::o;4783:300:14:-;4848:13;;;;;;;;;;;4840:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;4915:39;4934:10;4946:7;4915:18;:39::i;:::-;4893:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;5020:14;5026:7;5020:5;:14::i;:::-;5065:10;5045:8;:17;5054:7;5045:17;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;4783:300;:::o;1138:33::-;;;;:::o;1264:25::-;;;;:::o;11769:152:2:-;11841:7;11884:27;11903:7;11884:18;:27::i;:::-;11861:52;;11769:152;;;:::o;5289:227:14:-;1122:13:11;:11;:13::i;:::-;5398:7:14::1;5378:17;:27;;;;5459:15;5437:19;:37;;;;5289:227:::0;;:::o;1052:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4340:108::-;1122:13:11;:11;:13::i;:::-;4434:6:14::1;4413:18;;:27;;;;;;;;;;;;;;;;;;4340:108:::0;:::o;7311:233:2:-;7383:7;7424:1;7407:19;;:5;:19;;;7403:60;;7435:28;;;;;;;;;;;;;;7403:60;1470:13;7481:18;:25;7500:5;7481:25;;;;;;;;;;;;;;;;:55;7474:62;;7311:233;;;:::o;1884:103:11:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;965:28:14:-;;;;:::o;3338:238::-;1122:13:11;:11;:13::i;:::-;752:4:14::1;3435:8;:15;3419:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;3411:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;3492:6;3488:80;3508:8;:15;3504:1;:19;3488:80;;;3543:25;3553:8;3562:1;3553:11;;;;;;;;:::i;:::-;;;;;;;;3566:1;3543:9;:25::i;:::-;3525:3;;;;;:::i;:::-;;;;3488:80;;;;3338:238:::0;:::o;639:35::-;;;;:::o;5090:89::-;1122:13:11;:11;:13::i;:::-;5169:2:14::1;5156:10;:15;;;;5090:89:::0;:::o;4133:98::-;1122:13:11;:11;:13::i;:::-;4217:6:14::1;4200:14;;:23;;;;;;;;;;;;;;;;;;4133:98:::0;:::o;1236:87:11:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10552:104:2:-;10608:13;10641:7;10634:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10552:104;:::o;841:38:14:-;;;;;;;;;;;;;:::o;4035:92::-;1122:13:11;:11;:13::i;:::-;4115:4:14::1;4105:7;:14;;;;;;:::i;:::-;;4035:92:::0;:::o;17425:234:2:-;17572:8;17520:18;:39;17539:19;:17;:19::i;:::-;17520:39;;;;;;;;;;;;;;;:49;17560:8;17520:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17632:8;17596:55;;17611:19;:17;:19::i;:::-;17596:55;;;17642:8;17596:55;;;;;;:::i;:::-;;;;;;;;17425:234;;:::o;924:34:14:-;;;;:::o;24627:432:2:-;24811:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;24827:31:2::1;24840:4;24846:2;24850:7;24827:12;:31::i;:::-;24891:1;24873:2;:14;;;:19;24869:183;;24912:56;24943:4;24949:2;24953:7;24962:5;24912:30;:56::i;:::-;24907:145;;24996:40;;;;;;;;;;;;;;24907:145;24869:183;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;24827:31:2::1;24840:4;24846:2;24850:7;24827:12;:31::i;:::-;24891:1;24873:2;:14;;;:19;24869:183;;24912:56;24943:4;24949:2;24953:7;24962:5;24912:30;:56::i;:::-;24907:145;;24996:40;;;;;;;;;;;;;;24907:145;24869:183;24627:432:::0;;;;;;:::o;800:34:14:-;;;;;;;;;;;;;:::o;763:30::-;;;;;;;;;;;;;:::o;1364:453::-;1453:4;1431:26;;:18;;;;;;;;;;;:26;;;1423:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1505:1;1496:6;:10;1488:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;752:4;1569:6;1553:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1545:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1647:6;1634:10;;:19;;;;:::i;:::-;1621:9;:32;;1613:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1709:17;;1699:6;:27;;1691:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1781:29;1791:10;1803:6;1781:9;:29::i;:::-;1364:453;:::o;3107:223::-;1122:13:11;:11;:13::i;:::-;3185:1:14::1;3176:6;:10;3168:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;752:4;3249:6;3233:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;3225:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3293:29;3303:10;3315:6;3293:9;:29::i;:::-;3107:223:::0;:::o;4237:97::-;1122:13:11;:11;:13::i;:::-;4320:6:14::1;4307:10;;:19;;;;;;;;;;;;;;;;;;4237:97:::0;:::o;4567:103::-;1122:13:11;:11;:13::i;:::-;4655:10:14::1;4633:19;:32;;;;4567:103:::0;:::o;3734:293::-;3807:13;3841:16;3849:7;3841;:16::i;:::-;3833:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3953:1;3935:7;3929:21;;;;;:::i;:::-;;;:25;:90;;;;;;;;;;;;;;;;;3981:7;3990:18;:7;:16;:18::i;:::-;3964:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3929:90;3922:97;;3734:293;;;:::o;4676:97::-;1122:13:11;:11;:13::i;:::-;4758:10:14::1;4742:13;:26;;;;4676:97:::0;:::o;17816:164:2:-;17913:4;17937:18;:25;17956:5;17937:25;;;;;;;;;;;;;;;:35;17963:8;17937:35;;;;;;;;;;;;;;;;;;;;;;;;;17930:42;;17816:164;;;;:::o;2142:201:11:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;::::0;2223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;18238:282:2:-;18303:4;18359:7;18340:15;:13;:15::i;:::-;:26;;:66;;;;;18393:13;;18383:7;:23;18340:66;:153;;;;;18492:1;2246:8;18444:17;:26;18462:7;18444:26;;;;;;;;;;;;:44;:49;18340:153;18320:173;;18238:282;;;:::o;40980:105::-;41040:7;41067:10;41060:17;;40980:105;:::o;1094:190:6:-;1219:4;1272;1243:25;1256:5;1263:4;1243:12;:25::i;:::-;:33;1236:40;;1094:190;;;;;:::o;34812:112:2:-;34889:27;34899:2;34903:8;34889:27;;;;;;;;;;;;:9;:27::i;:::-;34812:112;;:::o;1401:132:11:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;5643:92:2:-;5699:7;5726:1;5719:8;;5643:92;:::o;12924:1275::-;12991:7;13011:12;13026:7;13011:22;;13094:4;13075:15;:13;:15::i;:::-;:23;13071:1061;;13128:13;;13121:4;:20;13117:1015;;;13166:14;13183:17;:23;13201:4;13183:23;;;;;;;;;;;;13166:40;;13300:1;2246:8;13272:6;:24;:29;13268:845;;13937:113;13954:1;13944:6;:11;13937:113;;13997:17;:25;14015:6;;;;;;;13997:25;;;;;;;;;;;;13988:34;;13937:113;;;14083:6;14076:13;;;;;;13268:845;13143:989;13117:1015;13071:1061;14160:31;;;;;;;;;;;;;;12924:1275;;;;:::o;19401:485::-;19503:27;19532:23;19573:38;19614:15;:24;19630:7;19614:24;;;;;;;;;;;19573:65;;19791:18;19768:41;;19848:19;19842:26;19823:45;;19753:126;19401:485;;;:::o;18629:659::-;18778:11;18943:16;18936:5;18932:28;18923:37;;19103:16;19092:9;19088:32;19075:45;;19253:15;19242:9;19239:30;19231:5;19220:9;19217:20;19214:56;19204:66;;18629:659;;;;;:::o;25721:159::-;;;;;:::o;40289:311::-;40424:7;40444:16;2650:3;40470:19;:41;;40444:68;;2650:3;40538:31;40549:4;40555:2;40559:9;40538:10;:31::i;:::-;40530:40;;:62;;40523:69;;;40289:311;;;;;:::o;14747:450::-;14827:14;14995:16;14988:5;14984:28;14975:37;;15172:5;15158:11;15133:23;15129:41;15126:52;15119:5;15116:63;15106:73;;14747:450;;;;:::o;26545:158::-;;;;;:::o;20510:349::-;20603:4;20628:16;20636:7;20628;:16::i;:::-;20620:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20704:13;20720:24;20736:7;20720:15;:24::i;:::-;20704:40;;20774:5;20763:16;;:7;:16;;;:51;;;;20807:7;20783:31;;:20;20795:7;20783:11;:20::i;:::-;:31;;;20763:51;:87;;;;20818:32;20835:5;20842:7;20818:16;:32::i;:::-;20763:87;20755:96;;;20510:349;;;;:::o;35191:89::-;35251:21;35257:7;35266:5;35251;:21::i;:::-;35191:89;:::o;2503:191:11:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;27143:716:2:-;27306:4;27352:2;27327:45;;;27373:19;:17;:19::i;:::-;27394:4;27400:7;27409:5;27327:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;27323:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27627:1;27610:6;:13;:18;27606:235;;27656:40;;;;;;;;;;;;;;27606:235;27799:6;27793:13;27784:6;27780:2;27776:15;27769:38;27323:529;27496:54;;;27486:64;;;:6;:64;;;;27479:71;;;27143:716;;;;;;:::o;427::13:-;483:13;534:14;571:1;551:17;562:5;551:10;:17::i;:::-;:21;534:38;;587:20;621:6;610:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587:41;;643:11;772:6;768:2;764:15;756:6;752:28;745:35;;809:288;816:4;809:288;;;841:5;;;;;;;;983:8;978:2;971:5;967:14;962:30;957:3;949:44;1039:2;1030:11;;;;;;:::i;:::-;;;;;1073:1;1064:5;:10;809:288;1060:21;809:288;1118:6;1111:13;;;;;427:716;;;:::o;1645:675:6:-;1728:7;1748:20;1771:4;1748:27;;1791:9;1786:497;1810:5;:12;1806:1;:16;1786:497;;;1844:20;1867:5;1873:1;1867:8;;;;;;;;:::i;:::-;;;;;;;;1844:31;;1910:12;1894;:28;1890:382;;2037:42;2052:12;2066;2037:14;:42::i;:::-;2022:57;;1890:382;;;2214:42;2229:12;2243;2214:14;:42::i;:::-;2199:57;;1890:382;1829:454;1824:3;;;;;:::i;:::-;;;;1786:497;;;;2300:12;2293:19;;;1645:675;;;;:::o;34039:689:2:-;34170:19;34176:2;34180:8;34170:5;:19::i;:::-;34249:1;34231:2;:14;;;:19;34227:483;;34271:11;34285:13;;34271:27;;34317:13;34339:8;34333:3;:14;34317:30;;34366:233;34397:62;34436:1;34440:2;34444:7;;;;;;34453:5;34397:30;:62::i;:::-;34392:167;;34495:40;;;;;;;;;;;;;;34392:167;34594:3;34586:5;:11;34366:233;;34681:3;34664:13;;:20;34660:34;;34686:8;;;34660:34;34252:458;;34227:483;34039:689;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;39990:147:2:-;40127:6;39990:147;;;;;:::o;35509:3081::-;35589:27;35619;35638:7;35619:18;:27::i;:::-;35589:57;;35659:12;35690:19;35659:52;;35725:27;35754:23;35781:35;35808:7;35781:26;:35::i;:::-;35724:92;;;;35833:13;35829:316;;;35954:68;35979:15;35996:4;36002:19;:17;:19::i;:::-;35954:24;:68::i;:::-;35949:184;;36046:43;36063:4;36069:19;:17;:19::i;:::-;36046:16;:43::i;:::-;36041:92;;36098:35;;;;;;;;;;;;;;36041:92;35949:184;35829:316;36157:51;36179:4;36193:1;36197:7;36206:1;36157:21;:51::i;:::-;36301:15;36298:160;;;36441:1;36420:19;36413:30;36298:160;37119:1;1735:3;37089:1;:26;;37088:32;37060:18;:24;37079:4;37060:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;37387:176;37424:4;37495:53;37510:4;37524:1;37528:19;37495:14;:53::i;:::-;2526:8;2246;37448:43;37447:101;37387:18;:176::i;:::-;37358:17;:26;37376:7;37358:26;;;;;;;;;;;:205;;;;37734:1;2526:8;37683:19;:47;:52;37679:627;;37756:19;37788:1;37778:7;:11;37756:33;;37945:1;37911:17;:30;37929:11;37911:30;;;;;;;;;;;;:35;37907:384;;38049:13;;38034:11;:28;38030:242;;38229:19;38196:17;:30;38214:11;38196:30;;;;;;;;;;;:52;;;;38030:242;37907:384;37737:569;37679:627;38361:7;38357:1;38334:35;;38343:4;38334:35;;;;;;;;;;;;38380:50;38401:4;38415:1;38419:7;38428:1;38380:20;:50::i;:::-;38557:12;;:14;;;;;;;;;;;;;35578:3012;;;;35509:3081;;:::o;10146:922:7:-;10199:7;10219:14;10236:1;10219:18;;10286:6;10277:5;:15;10273:102;;10322:6;10313:15;;;;;;:::i;:::-;;;;;10357:2;10347:12;;;;10273:102;10402:6;10393:5;:15;10389:102;;10438:6;10429:15;;;;;;:::i;:::-;;;;;10473:2;10463:12;;;;10389:102;10518:6;10509:5;:15;10505:102;;10554:6;10545:15;;;;;;:::i;:::-;;;;;10589:2;10579:12;;;;10505:102;10634:5;10625;:14;10621:99;;10669:5;10660:14;;;;;;:::i;:::-;;;;;10703:1;10693:11;;;;10621:99;10747:5;10738;:14;10734:99;;10782:5;10773:14;;;;;;:::i;:::-;;;;;10816:1;10806:11;;;;10734:99;10860:5;10851;:14;10847:99;;10895:5;10886:14;;;;;;:::i;:::-;;;;;10929:1;10919:11;;;;10847:99;10973:5;10964;:14;10960:66;;11009:1;10999:11;;;;10960:66;11054:6;11047:13;;;10146:922;;;:::o;2328:224:6:-;2396:13;2459:1;2453:4;2446:15;2488:1;2482:4;2475:15;2529:4;2523;2513:21;2504:30;;2328:224;;;;:::o;28321:2966:2:-;28394:20;28417:13;;28394:36;;28457:1;28445:8;:13;28441:44;;28467:18;;;;;;;;;;;;;;28441:44;28498:61;28528:1;28532:2;28536:12;28550:8;28498:21;:61::i;:::-;29042:1;1608:2;29012:1;:26;;29011:32;28999:8;:45;28973:18;:22;28992:2;28973:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;29321:139;29358:2;29412:33;29435:1;29439:2;29443:1;29412:14;:33::i;:::-;29379:30;29400:8;29379:20;:30::i;:::-;:66;29321:18;:139::i;:::-;29287:17;:31;29305:12;29287:31;;;;;;;;;;;:173;;;;29477:16;29508:11;29537:8;29522:12;:23;29508:37;;30058:16;30054:2;30050:25;30038:37;;30430:12;30390:8;30349:1;30287:25;30228:1;30167;30140:335;30801:1;30787:12;30783:20;30741:346;30842:3;30833:7;30830:16;30741:346;;31060:7;31050:8;31047:1;31020:25;31017:1;31014;31009:59;30895:1;30886:7;30882:15;30871:26;;30741:346;;;30745:77;31132:1;31120:8;:13;31116:45;;31142:19;;;;;;;;;;;;;;31116:45;31194:3;31178:13;:19;;;;28747:2462;;31219:60;31248:1;31252:2;31256:12;31270:8;31219:20;:60::i;:::-;28383:2904;28321:2966;;:::o;15299:324::-;15369:14;15602:1;15592:8;15589:15;15563:24;15559:46;15549:56;;15299:324;;;:::o;7:77:15:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:126::-;1414:7;1454:42;1447:5;1443:54;1432:65;;1377:126;;;:::o;1509:96::-;1546:7;1575:24;1593:5;1575:24;:::i;:::-;1564:35;;1509:96;;;:::o;1611:118::-;1698:24;1716:5;1698:24;:::i;:::-;1693:3;1686:37;1611:118;;:::o;1735:222::-;1828:4;1866:2;1855:9;1851:18;1843:26;;1879:71;1947:1;1936:9;1932:17;1923:6;1879:71;:::i;:::-;1735:222;;;;:::o;1963:149::-;1999:7;2039:66;2032:5;2028:78;2017:89;;1963:149;;;:::o;2118:120::-;2190:23;2207:5;2190:23;:::i;:::-;2183:5;2180:34;2170:62;;2228:1;2225;2218:12;2170:62;2118:120;:::o;2244:137::-;2289:5;2327:6;2314:20;2305:29;;2343:32;2369:5;2343:32;:::i;:::-;2244:137;;;;:::o;2387:327::-;2445:6;2494:2;2482:9;2473:7;2469:23;2465:32;2462:119;;;2500:79;;:::i;:::-;2462:119;2620:1;2645:52;2689:7;2680:6;2669:9;2665:22;2645:52;:::i;:::-;2635:62;;2591:116;2387:327;;;;:::o;2720:90::-;2754:7;2797:5;2790:13;2783:21;2772:32;;2720:90;;;:::o;2816:109::-;2897:21;2912:5;2897:21;:::i;:::-;2892:3;2885:34;2816:109;;:::o;2931:210::-;3018:4;3056:2;3045:9;3041:18;3033:26;;3069:65;3131:1;3120:9;3116:17;3107:6;3069:65;:::i;:::-;2931:210;;;;:::o;3147:99::-;3199:6;3233:5;3227:12;3217:22;;3147:99;;;:::o;3252:169::-;3336:11;3370:6;3365:3;3358:19;3410:4;3405:3;3401:14;3386:29;;3252:169;;;;:::o;3427:246::-;3508:1;3518:113;3532:6;3529:1;3526:13;3518:113;;;3617:1;3612:3;3608:11;3602:18;3598:1;3593:3;3589:11;3582:39;3554:2;3551:1;3547:10;3542:15;;3518:113;;;3665:1;3656:6;3651:3;3647:16;3640:27;3489:184;3427:246;;;:::o;3679:102::-;3720:6;3771:2;3767:7;3762:2;3755:5;3751:14;3747:28;3737:38;;3679:102;;;:::o;3787:377::-;3875:3;3903:39;3936:5;3903:39;:::i;:::-;3958:71;4022:6;4017:3;3958:71;:::i;:::-;3951:78;;4038:65;4096:6;4091:3;4084:4;4077:5;4073:16;4038:65;:::i;:::-;4128:29;4150:6;4128:29;:::i;:::-;4123:3;4119:39;4112:46;;3879:285;3787:377;;;;:::o;4170:313::-;4283:4;4321:2;4310:9;4306:18;4298:26;;4370:9;4364:4;4360:20;4356:1;4345:9;4341:17;4334:47;4398:78;4471:4;4462:6;4398:78;:::i;:::-;4390:86;;4170:313;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:117;5597:1;5594;5587:12;5628:568;5701:8;5711:6;5761:3;5754:4;5746:6;5742:17;5738:27;5728:122;;5769:79;;:::i;:::-;5728:122;5882:6;5869:20;5859:30;;5912:18;5904:6;5901:30;5898:117;;;5934:79;;:::i;:::-;5898:117;6048:4;6040:6;6036:17;6024:29;;6102:3;6094:4;6086:6;6082:17;6072:8;6068:32;6065:41;6062:128;;;6109:79;;:::i;:::-;6062:128;5628:568;;;;;:::o;6202:704::-;6297:6;6305;6313;6362:2;6350:9;6341:7;6337:23;6333:32;6330:119;;;6368:79;;:::i;:::-;6330:119;6488:1;6513:53;6558:7;6549:6;6538:9;6534:22;6513:53;:::i;:::-;6503:63;;6459:117;6643:2;6632:9;6628:18;6615:32;6674:18;6666:6;6663:30;6660:117;;;6696:79;;:::i;:::-;6660:117;6809:80;6881:7;6872:6;6861:9;6857:22;6809:80;:::i;:::-;6791:98;;;;6586:313;6202:704;;;;;:::o;6912:116::-;6982:21;6997:5;6982:21;:::i;:::-;6975:5;6972:32;6962:60;;7018:1;7015;7008:12;6962:60;6912:116;:::o;7034:133::-;7077:5;7115:6;7102:20;7093:29;;7131:30;7155:5;7131:30;:::i;:::-;7034:133;;;;:::o;7173:323::-;7229:6;7278:2;7266:9;7257:7;7253:23;7249:32;7246:119;;;7284:79;;:::i;:::-;7246:119;7404:1;7429:50;7471:7;7462:6;7451:9;7447:22;7429:50;:::i;:::-;7419:60;;7375:114;7173:323;;;;:::o;7502:619::-;7579:6;7587;7595;7644:2;7632:9;7623:7;7619:23;7615:32;7612:119;;;7650:79;;:::i;:::-;7612:119;7770:1;7795:53;7840:7;7831:6;7820:9;7816:22;7795:53;:::i;:::-;7785:63;;7741:117;7897:2;7923:53;7968:7;7959:6;7948:9;7944:22;7923:53;:::i;:::-;7913:63;;7868:118;8025:2;8051:53;8096:7;8087:6;8076:9;8072:22;8051:53;:::i;:::-;8041:63;;7996:118;7502:619;;;;;:::o;8127:474::-;8195:6;8203;8252:2;8240:9;8231:7;8227:23;8223:32;8220:119;;;8258:79;;:::i;:::-;8220:119;8378:1;8403:53;8448:7;8439:6;8428:9;8424:22;8403:53;:::i;:::-;8393:63;;8349:117;8505:2;8531:53;8576:7;8567:6;8556:9;8552:22;8531:53;:::i;:::-;8521:63;;8476:118;8127:474;;;;;:::o;8607:329::-;8666:6;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8607:329;;;;:::o;8942:77::-;8979:7;9008:5;8997:16;;8942:77;;;:::o;9025:118::-;9112:24;9130:5;9112:24;:::i;:::-;9107:3;9100:37;9025:118;;:::o;9149:222::-;9242:4;9280:2;9269:9;9265:18;9257:26;;9293:71;9361:1;9350:9;9346:17;9337:6;9293:71;:::i;:::-;9149:222;;;;:::o;9377:180::-;9425:77;9422:1;9415:88;9522:4;9519:1;9512:15;9546:4;9543:1;9536:15;9563:281;9646:27;9668:4;9646:27;:::i;:::-;9638:6;9634:40;9776:6;9764:10;9761:22;9740:18;9728:10;9725:34;9722:62;9719:88;;;9787:18;;:::i;:::-;9719:88;9827:10;9823:2;9816:22;9606:238;9563:281;;:::o;9850:129::-;9884:6;9911:20;;:::i;:::-;9901:30;;9940:33;9968:4;9960:6;9940:33;:::i;:::-;9850:129;;;:::o;9985:311::-;10062:4;10152:18;10144:6;10141:30;10138:56;;;10174:18;;:::i;:::-;10138:56;10224:4;10216:6;10212:17;10204:25;;10284:4;10278;10274:15;10266:23;;9985:311;;;:::o;10319:710::-;10415:5;10440:81;10456:64;10513:6;10456:64;:::i;:::-;10440:81;:::i;:::-;10431:90;;10541:5;10570:6;10563:5;10556:21;10604:4;10597:5;10593:16;10586:23;;10657:4;10649:6;10645:17;10637:6;10633:30;10686:3;10678:6;10675:15;10672:122;;;10705:79;;:::i;:::-;10672:122;10820:6;10803:220;10837:6;10832:3;10829:15;10803:220;;;10912:3;10941:37;10974:3;10962:10;10941:37;:::i;:::-;10936:3;10929:50;11008:4;11003:3;10999:14;10992:21;;10879:144;10863:4;10858:3;10854:14;10847:21;;10803:220;;;10807:21;10421:608;;10319:710;;;;;:::o;11052:370::-;11123:5;11172:3;11165:4;11157:6;11153:17;11149:27;11139:122;;11180:79;;:::i;:::-;11139:122;11297:6;11284:20;11322:94;11412:3;11404:6;11397:4;11389:6;11385:17;11322:94;:::i;:::-;11313:103;;11129:293;11052:370;;;;:::o;11428:539::-;11512:6;11561:2;11549:9;11540:7;11536:23;11532:32;11529:119;;;11567:79;;:::i;:::-;11529:119;11715:1;11704:9;11700:17;11687:31;11745:18;11737:6;11734:30;11731:117;;;11767:79;;:::i;:::-;11731:117;11872:78;11942:7;11933:6;11922:9;11918:22;11872:78;:::i;:::-;11862:88;;11658:302;11428:539;;;;:::o;11973:117::-;12082:1;12079;12072:12;12096:308;12158:4;12248:18;12240:6;12237:30;12234:56;;;12270:18;;:::i;:::-;12234:56;12308:29;12330:6;12308:29;:::i;:::-;12300:37;;12392:4;12386;12382:15;12374:23;;12096:308;;;:::o;12410:146::-;12507:6;12502:3;12497;12484:30;12548:1;12539:6;12534:3;12530:16;12523:27;12410:146;;;:::o;12562:425::-;12640:5;12665:66;12681:49;12723:6;12681:49;:::i;:::-;12665:66;:::i;:::-;12656:75;;12754:6;12747:5;12740:21;12792:4;12785:5;12781:16;12830:3;12821:6;12816:3;12812:16;12809:25;12806:112;;;12837:79;;:::i;:::-;12806:112;12927:54;12974:6;12969:3;12964;12927:54;:::i;:::-;12646:341;12562:425;;;;;:::o;13007:340::-;13063:5;13112:3;13105:4;13097:6;13093:17;13089:27;13079:122;;13120:79;;:::i;:::-;13079:122;13237:6;13224:20;13262:79;13337:3;13329:6;13322:4;13314:6;13310:17;13262:79;:::i;:::-;13253:88;;13069:278;13007:340;;;;:::o;13353:509::-;13422:6;13471:2;13459:9;13450:7;13446:23;13442:32;13439:119;;;13477:79;;:::i;:::-;13439:119;13625:1;13614:9;13610:17;13597:31;13655:18;13647:6;13644:30;13641:117;;;13677:79;;:::i;:::-;13641:117;13782:63;13837:7;13828:6;13817:9;13813:22;13782:63;:::i;:::-;13772:73;;13568:287;13353:509;;;;:::o;13868:468::-;13933:6;13941;13990:2;13978:9;13969:7;13965:23;13961:32;13958:119;;;13996:79;;:::i;:::-;13958:119;14116:1;14141:53;14186:7;14177:6;14166:9;14162:22;14141:53;:::i;:::-;14131:63;;14087:117;14243:2;14269:50;14311:7;14302:6;14291:9;14287:22;14269:50;:::i;:::-;14259:60;;14214:115;13868:468;;;;;:::o;14342:307::-;14403:4;14493:18;14485:6;14482:30;14479:56;;;14515:18;;:::i;:::-;14479:56;14553:29;14575:6;14553:29;:::i;:::-;14545:37;;14637:4;14631;14627:15;14619:23;;14342:307;;;:::o;14655:423::-;14732:5;14757:65;14773:48;14814:6;14773:48;:::i;:::-;14757:65;:::i;:::-;14748:74;;14845:6;14838:5;14831:21;14883:4;14876:5;14872:16;14921:3;14912:6;14907:3;14903:16;14900:25;14897:112;;;14928:79;;:::i;:::-;14897:112;15018:54;15065:6;15060:3;15055;15018:54;:::i;:::-;14738:340;14655:423;;;;;:::o;15097:338::-;15152:5;15201:3;15194:4;15186:6;15182:17;15178:27;15168:122;;15209:79;;:::i;:::-;15168:122;15326:6;15313:20;15351:78;15425:3;15417:6;15410:4;15402:6;15398:17;15351:78;:::i;:::-;15342:87;;15158:277;15097:338;;;;:::o;15441:943::-;15536:6;15544;15552;15560;15609:3;15597:9;15588:7;15584:23;15580:33;15577:120;;;15616:79;;:::i;:::-;15577:120;15736:1;15761:53;15806:7;15797:6;15786:9;15782:22;15761:53;:::i;:::-;15751:63;;15707:117;15863:2;15889:53;15934:7;15925:6;15914:9;15910:22;15889:53;:::i;:::-;15879:63;;15834:118;15991:2;16017:53;16062:7;16053:6;16042:9;16038:22;16017:53;:::i;:::-;16007:63;;15962:118;16147:2;16136:9;16132:18;16119:32;16178:18;16170:6;16167:30;16164:117;;;16200:79;;:::i;:::-;16164:117;16305:62;16359:7;16350:6;16339:9;16335:22;16305:62;:::i;:::-;16295:72;;16090:287;15441:943;;;;;;;:::o;16390:122::-;16463:24;16481:5;16463:24;:::i;:::-;16456:5;16453:35;16443:63;;16502:1;16499;16492:12;16443:63;16390:122;:::o;16518:139::-;16564:5;16602:6;16589:20;16580:29;;16618:33;16645:5;16618:33;:::i;:::-;16518:139;;;;:::o;16663:329::-;16722:6;16771:2;16759:9;16750:7;16746:23;16742:32;16739:119;;;16777:79;;:::i;:::-;16739:119;16897:1;16922:53;16967:7;16958:6;16947:9;16943:22;16922:53;:::i;:::-;16912:63;;16868:117;16663:329;;;;:::o;16998:474::-;17066:6;17074;17123:2;17111:9;17102:7;17098:23;17094:32;17091:119;;;17129:79;;:::i;:::-;17091:119;17249:1;17274:53;17319:7;17310:6;17299:9;17295:22;17274:53;:::i;:::-;17264:63;;17220:117;17376:2;17402:53;17447:7;17438:6;17427:9;17423:22;17402:53;:::i;:::-;17392:63;;17347:118;16998:474;;;;;:::o;17478:180::-;17526:77;17523:1;17516:88;17623:4;17620:1;17613:15;17647:4;17644:1;17637:15;17664:320;17708:6;17745:1;17739:4;17735:12;17725:22;;17792:1;17786:4;17782:12;17813:18;17803:81;;17869:4;17861:6;17857:17;17847:27;;17803:81;17931:2;17923:6;17920:14;17900:18;17897:38;17894:84;;17950:18;;:::i;:::-;17894:84;17715:269;17664:320;;;:::o;17990:174::-;18130:26;18126:1;18118:6;18114:14;18107:50;17990:174;:::o;18170:366::-;18312:3;18333:67;18397:2;18392:3;18333:67;:::i;:::-;18326:74;;18409:93;18498:3;18409:93;:::i;:::-;18527:2;18522:3;18518:12;18511:19;;18170:366;;;:::o;18542:419::-;18708:4;18746:2;18735:9;18731:18;18723:26;;18795:9;18789:4;18785:20;18781:1;18770:9;18766:17;18759:47;18823:131;18949:4;18823:131;:::i;:::-;18815:139;;18542:419;;;:::o;18967:94::-;19000:8;19048:5;19044:2;19040:14;19019:35;;18967:94;;;:::o;19067:::-;19106:7;19135:20;19149:5;19135:20;:::i;:::-;19124:31;;19067:94;;;:::o;19167:100::-;19206:7;19235:26;19255:5;19235:26;:::i;:::-;19224:37;;19167:100;;;:::o;19273:157::-;19378:45;19398:24;19416:5;19398:24;:::i;:::-;19378:45;:::i;:::-;19373:3;19366:58;19273:157;;:::o;19436:256::-;19548:3;19563:75;19634:3;19625:6;19563:75;:::i;:::-;19663:2;19658:3;19654:12;19647:19;;19683:3;19676:10;;19436:256;;;;:::o;19698:180::-;19838:32;19834:1;19826:6;19822:14;19815:56;19698:180;:::o;19884:366::-;20026:3;20047:67;20111:2;20106:3;20047:67;:::i;:::-;20040:74;;20123:93;20212:3;20123:93;:::i;:::-;20241:2;20236:3;20232:12;20225:19;;19884:366;;;:::o;20256:419::-;20422:4;20460:2;20449:9;20445:18;20437:26;;20509:9;20503:4;20499:20;20495:1;20484:9;20480:17;20473:47;20537:131;20663:4;20537:131;:::i;:::-;20529:139;;20256:419;;;:::o;20681:220::-;20821:34;20817:1;20809:6;20805:14;20798:58;20890:3;20885:2;20877:6;20873:15;20866:28;20681:220;:::o;20907:366::-;21049:3;21070:67;21134:2;21129:3;21070:67;:::i;:::-;21063:74;;21146:93;21235:3;21146:93;:::i;:::-;21264:2;21259:3;21255:12;21248:19;;20907:366;;;:::o;21279:419::-;21445:4;21483:2;21472:9;21468:18;21460:26;;21532:9;21526:4;21522:20;21518:1;21507:9;21503:17;21496:47;21560:131;21686:4;21560:131;:::i;:::-;21552:139;;21279:419;;;:::o;21704:171::-;21844:23;21840:1;21832:6;21828:14;21821:47;21704:171;:::o;21881:366::-;22023:3;22044:67;22108:2;22103:3;22044:67;:::i;:::-;22037:74;;22120:93;22209:3;22120:93;:::i;:::-;22238:2;22233:3;22229:12;22222:19;;21881:366;;;:::o;22253:419::-;22419:4;22457:2;22446:9;22442:18;22434:26;;22506:9;22500:4;22496:20;22492:1;22481:9;22477:17;22470:47;22534:131;22660:4;22534:131;:::i;:::-;22526:139;;22253:419;;;:::o;22678:180::-;22726:77;22723:1;22716:88;22823:4;22820:1;22813:15;22847:4;22844:1;22837:15;22864:191;22904:3;22923:20;22941:1;22923:20;:::i;:::-;22918:25;;22957:20;22975:1;22957:20;:::i;:::-;22952:25;;23000:1;22997;22993:9;22986:16;;23021:3;23018:1;23015:10;23012:36;;;23028:18;;:::i;:::-;23012:36;22864:191;;;;:::o;23061:159::-;23201:11;23197:1;23189:6;23185:14;23178:35;23061:159;:::o;23226:365::-;23368:3;23389:66;23453:1;23448:3;23389:66;:::i;:::-;23382:73;;23464:93;23553:3;23464:93;:::i;:::-;23582:2;23577:3;23573:12;23566:19;;23226:365;;;:::o;23597:419::-;23763:4;23801:2;23790:9;23786:18;23778:26;;23850:9;23844:4;23840:20;23836:1;23825:9;23821:17;23814:47;23878:131;24004:4;23878:131;:::i;:::-;23870:139;;23597:419;;;:::o;24022:180::-;24162:32;24158:1;24150:6;24146:14;24139:56;24022:180;:::o;24208:366::-;24350:3;24371:67;24435:2;24430:3;24371:67;:::i;:::-;24364:74;;24447:93;24536:3;24447:93;:::i;:::-;24565:2;24560:3;24556:12;24549:19;;24208:366;;;:::o;24580:419::-;24746:4;24784:2;24773:9;24769:18;24761:26;;24833:9;24827:4;24823:20;24819:1;24808:9;24804:17;24797:47;24861:131;24987:4;24861:131;:::i;:::-;24853:139;;24580:419;;;:::o;25005:222::-;25145:34;25141:1;25133:6;25129:14;25122:58;25214:5;25209:2;25201:6;25197:15;25190:30;25005:222;:::o;25233:366::-;25375:3;25396:67;25460:2;25455:3;25396:67;:::i;:::-;25389:74;;25472:93;25561:3;25472:93;:::i;:::-;25590:2;25585:3;25581:12;25574:19;;25233:366;;;:::o;25605:419::-;25771:4;25809:2;25798:9;25794:18;25786:26;;25858:9;25852:4;25848:20;25844:1;25833:9;25829:17;25822:47;25886:131;26012:4;25886:131;:::i;:::-;25878:139;;25605:419;;;:::o;26030:410::-;26070:7;26093:20;26111:1;26093:20;:::i;:::-;26088:25;;26127:20;26145:1;26127:20;:::i;:::-;26122:25;;26182:1;26179;26175:9;26204:30;26222:11;26204:30;:::i;:::-;26193:41;;26383:1;26374:7;26370:15;26367:1;26364:22;26344:1;26337:9;26317:83;26294:139;;26413:18;;:::i;:::-;26294:139;26078:362;26030:410;;;;:::o;26446:172::-;26586:24;26582:1;26574:6;26570:14;26563:48;26446:172;:::o;26624:366::-;26766:3;26787:67;26851:2;26846:3;26787:67;:::i;:::-;26780:74;;26863:93;26952:3;26863:93;:::i;:::-;26981:2;26976:3;26972:12;26965:19;;26624:366;;;:::o;26996:419::-;27162:4;27200:2;27189:9;27185:18;27177:26;;27249:9;27243:4;27239:20;27235:1;27224:9;27220:17;27213:47;27277:131;27403:4;27277:131;:::i;:::-;27269:139;;26996:419;;;:::o;27421:332::-;27542:4;27580:2;27569:9;27565:18;27557:26;;27593:71;27661:1;27650:9;27646:17;27637:6;27593:71;:::i;:::-;27674:72;27742:2;27731:9;27727:18;27718:6;27674:72;:::i;:::-;27421:332;;;;;:::o;27759:137::-;27813:5;27844:6;27838:13;27829:22;;27860:30;27884:5;27860:30;:::i;:::-;27759:137;;;;:::o;27902:345::-;27969:6;28018:2;28006:9;27997:7;27993:23;27989:32;27986:119;;;28024:79;;:::i;:::-;27986:119;28144:1;28169:61;28222:7;28213:6;28202:9;28198:22;28169:61;:::i;:::-;28159:71;;28115:125;27902:345;;;;:::o;28253:180::-;28301:77;28298:1;28291:88;28398:4;28395:1;28388:15;28422:4;28419:1;28412:15;28439:185;28479:1;28496:20;28514:1;28496:20;:::i;:::-;28491:25;;28530:20;28548:1;28530:20;:::i;:::-;28525:25;;28569:1;28559:35;;28574:18;;:::i;:::-;28559:35;28616:1;28613;28609:9;28604:14;;28439:185;;;;:::o;28630:166::-;28770:18;28766:1;28758:6;28754:14;28747:42;28630:166;:::o;28802:366::-;28944:3;28965:67;29029:2;29024:3;28965:67;:::i;:::-;28958:74;;29041:93;29130:3;29041:93;:::i;:::-;29159:2;29154:3;29150:12;29143:19;;28802:366;;;:::o;29174:419::-;29340:4;29378:2;29367:9;29363:18;29355:26;;29427:9;29421:4;29417:20;29413:1;29402:9;29398:17;29391:47;29455:131;29581:4;29455:131;:::i;:::-;29447:139;;29174:419;;;:::o;29599:177::-;29739:29;29735:1;29727:6;29723:14;29716:53;29599:177;:::o;29782:366::-;29924:3;29945:67;30009:2;30004:3;29945:67;:::i;:::-;29938:74;;30021:93;30110:3;30021:93;:::i;:::-;30139:2;30134:3;30130:12;30123:19;;29782:366;;;:::o;30154:419::-;30320:4;30358:2;30347:9;30343:18;30335:26;;30407:9;30401:4;30397:20;30393:1;30382:9;30378:17;30371:47;30435:131;30561:4;30435:131;:::i;:::-;30427:139;;30154:419;;;:::o;30579:180::-;30627:77;30624:1;30617:88;30724:4;30721:1;30714:15;30748:4;30745:1;30738:15;30765:233;30804:3;30827:24;30845:5;30827:24;:::i;:::-;30818:33;;30873:66;30866:5;30863:77;30860:103;;30943:18;;:::i;:::-;30860:103;30990:1;30983:5;30979:13;30972:20;;30765:233;;;:::o;31004:141::-;31053:4;31076:3;31068:11;;31099:3;31096:1;31089:14;31133:4;31130:1;31120:18;31112:26;;31004:141;;;:::o;31151:93::-;31188:6;31235:2;31230;31223:5;31219:14;31215:23;31205:33;;31151:93;;;:::o;31250:107::-;31294:8;31344:5;31338:4;31334:16;31313:37;;31250:107;;;;:::o;31363:393::-;31432:6;31482:1;31470:10;31466:18;31505:97;31535:66;31524:9;31505:97;:::i;:::-;31623:39;31653:8;31642:9;31623:39;:::i;:::-;31611:51;;31695:4;31691:9;31684:5;31680:21;31671:30;;31744:4;31734:8;31730:19;31723:5;31720:30;31710:40;;31439:317;;31363:393;;;;;:::o;31762:60::-;31790:3;31811:5;31804:12;;31762:60;;;:::o;31828:142::-;31878:9;31911:53;31929:34;31938:24;31956:5;31938:24;:::i;:::-;31929:34;:::i;:::-;31911:53;:::i;:::-;31898:66;;31828:142;;;:::o;31976:75::-;32019:3;32040:5;32033:12;;31976:75;;;:::o;32057:269::-;32167:39;32198:7;32167:39;:::i;:::-;32228:91;32277:41;32301:16;32277:41;:::i;:::-;32269:6;32262:4;32256:11;32228:91;:::i;:::-;32222:4;32215:105;32133:193;32057:269;;;:::o;32332:73::-;32377:3;32332:73;:::o;32411:189::-;32488:32;;:::i;:::-;32529:65;32587:6;32579;32573:4;32529:65;:::i;:::-;32464:136;32411:189;;:::o;32606:186::-;32666:120;32683:3;32676:5;32673:14;32666:120;;;32737:39;32774:1;32767:5;32737:39;:::i;:::-;32710:1;32703:5;32699:13;32690:22;;32666:120;;;32606:186;;:::o;32798:543::-;32899:2;32894:3;32891:11;32888:446;;;32933:38;32965:5;32933:38;:::i;:::-;33017:29;33035:10;33017:29;:::i;:::-;33007:8;33003:44;33200:2;33188:10;33185:18;33182:49;;;33221:8;33206:23;;33182:49;33244:80;33300:22;33318:3;33300:22;:::i;:::-;33290:8;33286:37;33273:11;33244:80;:::i;:::-;32903:431;;32888:446;32798:543;;;:::o;33347:117::-;33401:8;33451:5;33445:4;33441:16;33420:37;;33347:117;;;;:::o;33470:169::-;33514:6;33547:51;33595:1;33591:6;33583:5;33580:1;33576:13;33547:51;:::i;:::-;33543:56;33628:4;33622;33618:15;33608:25;;33521:118;33470:169;;;;:::o;33644:295::-;33720:4;33866:29;33891:3;33885:4;33866:29;:::i;:::-;33858:37;;33928:3;33925:1;33921:11;33915:4;33912:21;33904:29;;33644:295;;;;:::o;33944:1395::-;34061:37;34094:3;34061:37;:::i;:::-;34163:18;34155:6;34152:30;34149:56;;;34185:18;;:::i;:::-;34149:56;34229:38;34261:4;34255:11;34229:38;:::i;:::-;34314:67;34374:6;34366;34360:4;34314:67;:::i;:::-;34408:1;34432:4;34419:17;;34464:2;34456:6;34453:14;34481:1;34476:618;;;;35138:1;35155:6;35152:77;;;35204:9;35199:3;35195:19;35189:26;35180:35;;35152:77;35255:67;35315:6;35308:5;35255:67;:::i;:::-;35249:4;35242:81;35111:222;34446:887;;34476:618;34528:4;34524:9;34516:6;34512:22;34562:37;34594:4;34562:37;:::i;:::-;34621:1;34635:208;34649:7;34646:1;34643:14;34635:208;;;34728:9;34723:3;34719:19;34713:26;34705:6;34698:42;34779:1;34771:6;34767:14;34757:24;;34826:2;34815:9;34811:18;34798:31;;34672:4;34669:1;34665:12;34660:17;;34635:208;;;34871:6;34862:7;34859:19;34856:179;;;34929:9;34924:3;34920:19;34914:26;34972:48;35014:4;35006:6;35002:17;34991:9;34972:48;:::i;:::-;34964:6;34957:64;34879:156;34856:179;35081:1;35077;35069:6;35065:14;35061:22;35055:4;35048:36;34483:611;;;34446:887;;34036:1303;;;33944:1395;;:::o;35345:165::-;35485:17;35481:1;35473:6;35469:14;35462:41;35345:165;:::o;35516:366::-;35658:3;35679:67;35743:2;35738:3;35679:67;:::i;:::-;35672:74;;35755:93;35844:3;35755:93;:::i;:::-;35873:2;35868:3;35864:12;35857:19;;35516:366;;;:::o;35888:419::-;36054:4;36092:2;36081:9;36077:18;36069:26;;36141:9;36135:4;36131:20;36127:1;36116:9;36112:17;36105:47;36169:131;36295:4;36169:131;:::i;:::-;36161:139;;35888:419;;;:::o;36313:173::-;36453:25;36449:1;36441:6;36437:14;36430:49;36313:173;:::o;36492:366::-;36634:3;36655:67;36719:2;36714:3;36655:67;:::i;:::-;36648:74;;36731:93;36820:3;36731:93;:::i;:::-;36849:2;36844:3;36840:12;36833:19;;36492:366;;;:::o;36864:419::-;37030:4;37068:2;37057:9;37053:18;37045:26;;37117:9;37111:4;37107:20;37103:1;37092:9;37088:17;37081:47;37145:131;37271:4;37145:131;:::i;:::-;37137:139;;36864:419;;;:::o;37289:222::-;37429:34;37425:1;37417:6;37413:14;37406:58;37498:5;37493:2;37485:6;37481:15;37474:30;37289:222;:::o;37517:366::-;37659:3;37680:67;37744:2;37739:3;37680:67;:::i;:::-;37673:74;;37756:93;37845:3;37756:93;:::i;:::-;37874:2;37869:3;37865:12;37858:19;;37517:366;;;:::o;37889:419::-;38055:4;38093:2;38082:9;38078:18;38070:26;;38142:9;38136:4;38132:20;38128:1;38117:9;38113:17;38106:47;38170:131;38296:4;38170:131;:::i;:::-;38162:139;;37889:419;;;:::o;38314:234::-;38454:34;38450:1;38442:6;38438:14;38431:58;38523:17;38518:2;38510:6;38506:15;38499:42;38314:234;:::o;38554:366::-;38696:3;38717:67;38781:2;38776:3;38717:67;:::i;:::-;38710:74;;38793:93;38882:3;38793:93;:::i;:::-;38911:2;38906:3;38902:12;38895:19;;38554:366;;;:::o;38926:419::-;39092:4;39130:2;39119:9;39115:18;39107:26;;39179:9;39173:4;39169:20;39165:1;39154:9;39150:17;39143:47;39207:131;39333:4;39207:131;:::i;:::-;39199:139;;38926:419;;;:::o;39351:148::-;39453:11;39490:3;39475:18;;39351:148;;;;:::o;39529:874::-;39632:3;39669:5;39663:12;39698:36;39724:9;39698:36;:::i;:::-;39750:89;39832:6;39827:3;39750:89;:::i;:::-;39743:96;;39870:1;39859:9;39855:17;39886:1;39881:166;;;;40061:1;40056:341;;;;39848:549;;39881:166;39965:4;39961:9;39950;39946:25;39941:3;39934:38;40027:6;40020:14;40013:22;40005:6;40001:35;39996:3;39992:45;39985:52;;39881:166;;40056:341;40123:38;40155:5;40123:38;:::i;:::-;40183:1;40197:154;40211:6;40208:1;40205:13;40197:154;;;40285:7;40279:14;40275:1;40270:3;40266:11;40259:35;40335:1;40326:7;40322:15;40311:26;;40233:4;40230:1;40226:12;40221:17;;40197:154;;;40380:6;40375:3;40371:16;40364:23;;40063:334;;39848:549;;39636:767;;39529:874;;;;:::o;40409:390::-;40515:3;40543:39;40576:5;40543:39;:::i;:::-;40598:89;40680:6;40675:3;40598:89;:::i;:::-;40591:96;;40696:65;40754:6;40749:3;40742:4;40735:5;40731:16;40696:65;:::i;:::-;40786:6;40781:3;40777:16;40770:23;;40519:280;40409:390;;;;:::o;40805:114::-;;:::o;40925:400::-;41085:3;41106:84;41188:1;41183:3;41106:84;:::i;:::-;41099:91;;41199:93;41288:3;41199:93;:::i;:::-;41317:1;41312:3;41308:11;41301:18;;40925:400;;;:::o;41331:695::-;41609:3;41631:92;41719:3;41710:6;41631:92;:::i;:::-;41624:99;;41740:95;41831:3;41822:6;41740:95;:::i;:::-;41733:102;;41852:148;41996:3;41852:148;:::i;:::-;41845:155;;42017:3;42010:10;;41331:695;;;;;:::o;42032:225::-;42172:34;42168:1;42160:6;42156:14;42149:58;42241:8;42236:2;42228:6;42224:15;42217:33;42032:225;:::o;42263:366::-;42405:3;42426:67;42490:2;42485:3;42426:67;:::i;:::-;42419:74;;42502:93;42591:3;42502:93;:::i;:::-;42620:2;42615:3;42611:12;42604:19;;42263:366;;;:::o;42635:419::-;42801:4;42839:2;42828:9;42824:18;42816:26;;42888:9;42882:4;42878:20;42874:1;42863:9;42859:17;42852:47;42916:131;43042:4;42916:131;:::i;:::-;42908:139;;42635:419;;;:::o;43060:182::-;43200:34;43196:1;43188:6;43184:14;43177:58;43060:182;:::o;43248:366::-;43390:3;43411:67;43475:2;43470:3;43411:67;:::i;:::-;43404:74;;43487:93;43576:3;43487:93;:::i;:::-;43605:2;43600:3;43596:12;43589:19;;43248:366;;;:::o;43620:419::-;43786:4;43824:2;43813:9;43809:18;43801:26;;43873:9;43867:4;43863:20;43859:1;43848:9;43844:17;43837:47;43901:131;44027:4;43901:131;:::i;:::-;43893:139;;43620:419;;;:::o;44045:231::-;44185:34;44181:1;44173:6;44169:14;44162:58;44254:14;44249:2;44241:6;44237:15;44230:39;44045:231;:::o;44282:366::-;44424:3;44445:67;44509:2;44504:3;44445:67;:::i;:::-;44438:74;;44521:93;44610:3;44521:93;:::i;:::-;44639:2;44634:3;44630:12;44623:19;;44282:366;;;:::o;44654:419::-;44820:4;44858:2;44847:9;44843:18;44835:26;;44907:9;44901:4;44897:20;44893:1;44882:9;44878:17;44871:47;44935:131;45061:4;44935:131;:::i;:::-;44927:139;;44654:419;;;:::o;45079:98::-;45130:6;45164:5;45158:12;45148:22;;45079:98;;;:::o;45183:168::-;45266:11;45300:6;45295:3;45288:19;45340:4;45335:3;45331:14;45316:29;;45183:168;;;;:::o;45357:373::-;45443:3;45471:38;45503:5;45471:38;:::i;:::-;45525:70;45588:6;45583:3;45525:70;:::i;:::-;45518:77;;45604:65;45662:6;45657:3;45650:4;45643:5;45639:16;45604:65;:::i;:::-;45694:29;45716:6;45694:29;:::i;:::-;45689:3;45685:39;45678:46;;45447:283;45357:373;;;;:::o;45736:640::-;45931:4;45969:3;45958:9;45954:19;45946:27;;45983:71;46051:1;46040:9;46036:17;46027:6;45983:71;:::i;:::-;46064:72;46132:2;46121:9;46117:18;46108:6;46064:72;:::i;:::-;46146;46214:2;46203:9;46199:18;46190:6;46146:72;:::i;:::-;46265:9;46259:4;46255:20;46250:2;46239:9;46235:18;46228:48;46293:76;46364:4;46355:6;46293:76;:::i;:::-;46285:84;;45736:640;;;;;;;:::o;46382:141::-;46438:5;46469:6;46463:13;46454:22;;46485:32;46511:5;46485:32;:::i;:::-;46382:141;;;;:::o;46529:349::-;46598:6;46647:2;46635:9;46626:7;46622:23;46618:32;46615:119;;;46653:79;;:::i;:::-;46615:119;46773:1;46798:63;46853:7;46844:6;46833:9;46829:22;46798:63;:::i;:::-;46788:73;;46744:127;46529:349;;;;:::o

Swarm Source

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