ETH Price: $3,340.47 (-0.79%)
Gas: 4 Gwei

Token

The Pride (TPG)
 

Overview

Max Total Supply

5,000 TPG

Holders

1,070

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rhysjones.eth
Balance
1 TPG
0x9725267d94B029769D68a91ED8239A631b69cfdB
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:
ThePride

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 11 : Pride.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";

/// @author no-op.eth (nft-lab.xyz)
/// @title The Pride
contract ThePride is ERC721A, PaymentSplitter, Ownable {
  /** Maximum number of tokens per wallet */
  uint256 public constant MAX_WALLET = 5;
  /** Maximum amount of tokens in collection */
  uint256 public constant MAX_SUPPLY = 5000;
  /** Price per token */
  uint256 public cost = 0.0069 ether;
  /** Max free */
  uint256 public free = 1000;
  /** Base URI */
  string public baseURI;
  /** Staking service */
  address public authorizedOperator;

  /** Merkle tree for whitelist */
  bytes32 public merkleRoot;
  /** Whitelist max per wallet */
  uint256 public constant MAX_PER_WHITELIST = 5;

  /** Public sale state */
  bool public saleActive = false;
  /** Presale state */
  bool public presaleActive = false;

  /** Notify on sale state change */
  event SaleStateChanged(bool _val);
  /** Notify on presale state change */
  event PresaleStateChanged(bool _val);
  /** Notify on total supply change */
  event TotalSupplyChanged(uint256 _val);

  constructor(
    string memory _name, 
    string memory _symbol, 
    address[] memory _shareholders, 
    uint256[] memory _shares
  ) ERC721A(_name, _symbol) PaymentSplitter(_shareholders, _shares) {}

  /// @notice Returns the base URI
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  /// @notice Gets cost to mint n amount of NFTs, taking account for first one free
  /// @param _numberMinted How many a given wallet has already minted
  /// @param _numberToMint How many a given wallet is planning to mint
  /// @param _costPerMint Price of one nft
  function subtotal(uint256 _numberMinted, uint256 _numberToMint, uint256 _costPerMint) public pure returns (uint256) {
    return _numberToMint * _costPerMint - (_numberMinted > 0 ? 0 : _costPerMint);
  }

  /// @notice Gets number of NFTs minted for a given wallet
  /// @param _wallet Wallet to check
  function numberMinted(address _wallet) external view returns (uint256) {
    return _numberMinted(_wallet);
  }

  /// @notice Checks if an address is whitelisted
  /// @param _addr Address to check
  /// @param _proof Merkle proof
  function isWhitelisted(address _addr, bytes32[] calldata _proof) public view returns (bool) {
    bytes32 _leaf = keccak256(abi.encodePacked(_addr));
    return MerkleProof.verify(_proof, merkleRoot, _leaf);
  }

  /// @notice Sets public sale state
  /// @param _val New sale state
  function setSaleState(bool _val) external onlyOwner {
    saleActive = _val;
    emit SaleStateChanged(_val);
  }

  /// @notice Sets presale state
  /// @param _val New presale state
  function setPresaleState(bool _val) external onlyOwner {
    presaleActive = _val;
    emit PresaleStateChanged(_val);
  }

  /// @notice Sets the whitelist
  /// @param _val Root
  function setWhitelist(bytes32 _val) external onlyOwner {
    merkleRoot = _val;
  }

  /// @notice Sets the price
  /// @param _val New price
  function setCost(uint256 _val) external onlyOwner {
    cost = _val;
  }

  /// @notice Sets the base metadata URI
  /// @param _val The new URI
  function setBaseURI(string calldata _val) external onlyOwner {
    baseURI = _val;
  }

  /// @notice Sets the authorized operator
  /// @param _val The new operator
  /// @dev Allows staking service to transfer nfts
  function setAuthorizedOperator(address _val) external onlyOwner {
    authorizedOperator = _val;
  }

  /// @notice Reserves a set of NFTs for collection owner (giveaways, etc)
  /// @param _amt The amount to reserve
  function reserve(uint256 _amt) external onlyOwner {
    require(free >= _amt, "Cannot exceed free mint limit.");
    free -= _amt;
    _mint(msg.sender, _amt);

    emit TotalSupplyChanged(totalSupply());
  }

  /// @notice Mints a new token in presale
  /// @param _amt The number of tokens to mint
  /// @param _proof Merkle proof
  /// @dev Must send cost * amt in ETH
  function preMint(uint256 _amt, bytes32[] calldata _proof) external payable {
    uint256 _walletMints = _numberMinted(msg.sender);
    require(presaleActive, "Presale is not active.");
    require(isWhitelisted(msg.sender, _proof), "Address is not whitelisted.");
    require(_walletMints + _amt <= MAX_PER_WHITELIST, "Amount of tokens exceeds whitelist limit.");
    require(totalSupply() + _amt <= MAX_SUPPLY, "Amount exceeds supply.");
    require(subtotal(_walletMints, _amt, cost) == msg.value, "ETH sent not equal to cost.");
    require(free > 0, "Presale has ended.");
    
    free -= 1;
    // Switch to public once all free mints are gone
    if (free == 0) { presaleActive = false; saleActive = true; }
    
    _safeMint(msg.sender, _amt);

    emit TotalSupplyChanged(totalSupply());
  }

  /// @notice Mints a new token in public sale
  /// @param _amt The number of tokens to mint
  /// @dev Must send cost * amt in ETH
  function mint(uint256 _amt) external payable {
    require(saleActive, "Sale is not active.");
    require(_numberMinted(msg.sender) + _amt <= MAX_WALLET, "Amount of tokens exceeds wallet limit.");
    require(totalSupply() + _amt <= MAX_SUPPLY, "Amount exceeds supply.");
    require(cost * _amt == msg.value, "ETH sent not equal to cost.");

    _safeMint(msg.sender, _amt);

    emit TotalSupplyChanged(totalSupply());
  }

  /// @notice Transferrance of nft
  /// @param from From
  /// @param to To
  /// @param tokenId ID to transfer
  /// @param data Additional call data
  /// @dev We give the staking service direct access as a convenience to the consumer (one less transaction, gas)
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory data
  ) public payable virtual override(ERC721A) {
    if (authorizedOperator != _msgSender()) {
      require(from == _msgSenderERC721A() || isApprovedForAll(from, _msgSenderERC721A()), "ERC721A: transfer caller is not owner nor approved");
    }
    super.safeTransferFrom(from, to, tokenId, data);
  }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 3 of 11 : 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 4 of 11 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

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

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

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

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

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

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

        uint256 payment = releasable(account);

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

        // _totalReleased is the sum of all values in _released.
        // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow.
        _totalReleased += payment;
        unchecked {
            _released[account] += payment;
        }

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

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

        uint256 payment = releasable(token, account);

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

        // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token].
        // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment"
        // cannot overflow.
        _erc20TotalReleased[token] += payment;
        unchecked {
            _erc20Released[token][account] += payment;
        }

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 5 of 11 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 6 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 7 of 11 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 8 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 9 of 11 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.4;

import './IERC721A.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 {
    // 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 0;
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        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 {
        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 {
        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 11 of 11 : 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);
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address[]","name":"_shareholders","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"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":[],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_val","type":"bool"}],"name":"PresaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_val","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_val","type":"uint256"}],"name":"TotalSupplyChanged","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":"MAX_PER_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"authorizedOperator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"reserve","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_val","type":"address"}],"name":"setAuthorizedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_val","type":"bytes32"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberMinted","type":"uint256"},{"internalType":"uint256","name":"_numberToMint","type":"uint256"},{"internalType":"uint256","name":"_costPerMint","type":"uint256"}],"name":"subtotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526618838370f340006010556103e86011556000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff0219169083151502179055503480156200005857600080fd5b5060405162005c9438038062005c9483398181016040528101906200007e9190620007bb565b8181858581600290805190602001906200009a92919062000503565b508060039080519060200190620000b392919062000503565b50620000c4620001f660201b60201c565b6000819055505050805182511462000113576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010a90620009dd565b60405180910390fd5b60008251116200015a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001519062000a21565b60405180910390fd5b60005b8251811015620001c957620001b383828151811062000181576200018062000d1c565b5b60200260200101518383815181106200019f576200019e62000d1c565b5b6020026020010151620001fb60201b60201c565b8080620001c09062000c70565b9150506200015d565b505050620001ec620001e06200043560201b60201c565b6200043d60201b60201c565b5050505062000f17565b600090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200026e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026590620009bb565b60405180910390fd5b60008111620002b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ab9062000a43565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033090620009ff565b60405180910390fd5b600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600854620003f0919062000b33565b6008819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620004299291906200098e565b60405180910390a15050565b600033905090565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005119062000c04565b90600052602060002090601f01602090048101928262000535576000855562000581565b82601f106200055057805160ff191683800117855562000581565b8280016001018555821562000581579182015b828111156200058057825182559160200191906001019062000563565b5b50905062000590919062000594565b5090565b5b80821115620005af57600081600090555060010162000595565b5090565b6000620005ca620005c48462000a8e565b62000a65565b90508083825260208201905082856020860282011115620005f057620005ef62000d7f565b5b60005b85811015620006245781620006098882620006f4565b845260208401935060208301925050600181019050620005f3565b5050509392505050565b6000620006456200063f8462000abd565b62000a65565b905080838252602082019050828560208602820111156200066b576200066a62000d7f565b5b60005b858110156200069f5781620006848882620007a4565b8452602084019350602083019250506001810190506200066e565b5050509392505050565b6000620006c0620006ba8462000aec565b62000a65565b905082815260208101848484011115620006df57620006de62000d84565b5b620006ec84828562000bce565b509392505050565b600081519050620007058162000ee3565b92915050565b600082601f83011262000723576200072262000d7a565b5b815162000735848260208601620005b3565b91505092915050565b600082601f83011262000756576200075562000d7a565b5b8151620007688482602086016200062e565b91505092915050565b600082601f83011262000789576200078862000d7a565b5b81516200079b848260208601620006a9565b91505092915050565b600081519050620007b58162000efd565b92915050565b60008060008060808587031215620007d857620007d762000d8e565b5b600085015167ffffffffffffffff811115620007f957620007f862000d89565b5b620008078782880162000771565b945050602085015167ffffffffffffffff8111156200082b576200082a62000d89565b5b620008398782880162000771565b935050604085015167ffffffffffffffff8111156200085d576200085c62000d89565b5b6200086b878288016200070b565b925050606085015167ffffffffffffffff8111156200088f576200088e62000d89565b5b6200089d878288016200073e565b91505092959194509250565b620008b48162000b90565b82525050565b6000620008c9602c8362000b22565b9150620008d68262000da4565b604082019050919050565b6000620008f060328362000b22565b9150620008fd8262000df3565b604082019050919050565b600062000917602b8362000b22565b9150620009248262000e42565b604082019050919050565b60006200093e601a8362000b22565b91506200094b8262000e91565b602082019050919050565b600062000965601d8362000b22565b9150620009728262000eba565b602082019050919050565b620009888162000bc4565b82525050565b6000604082019050620009a56000830185620008a9565b620009b460208301846200097d565b9392505050565b60006020820190508181036000830152620009d681620008ba565b9050919050565b60006020820190508181036000830152620009f881620008e1565b9050919050565b6000602082019050818103600083015262000a1a8162000908565b9050919050565b6000602082019050818103600083015262000a3c816200092f565b9050919050565b6000602082019050818103600083015262000a5e8162000956565b9050919050565b600062000a7162000a84565b905062000a7f828262000c3a565b919050565b6000604051905090565b600067ffffffffffffffff82111562000aac5762000aab62000d4b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000adb5762000ada62000d4b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000b0a5762000b0962000d4b565b5b62000b158262000d93565b9050602081019050919050565b600082825260208201905092915050565b600062000b408262000bc4565b915062000b4d8362000bc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b855762000b8462000cbe565b5b828201905092915050565b600062000b9d8262000ba4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000bee57808201518184015260208101905062000bd1565b8381111562000bfe576000848401525b50505050565b6000600282049050600182168062000c1d57607f821691505b6020821081141562000c345762000c3362000ced565b5b50919050565b62000c458262000d93565b810181811067ffffffffffffffff8211171562000c675762000c6662000d4b565b5b80604052505050565b600062000c7d8262000bc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cb35762000cb262000cbe565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000eee8162000b90565b811462000efa57600080fd5b50565b62000f088162000bc4565b811462000f1457600080fd5b50565b614d6d8062000f276000396000f3fe6080604052600436106102cd5760003560e01c806370a0823111610175578063ab59ce68116100dc578063ce7c2ac211610095578063df7787a41161006f578063df7787a414610b5f578063e33b7de314610b8a578063e985e9c514610bb5578063f2fde38b14610bf257610314565b8063ce7c2ac214610aa8578063d79779b214610ae5578063dc33e68114610b2257610314565b8063ab59ce6814610997578063b88d4fde146109c0578063bce4d6ae146109dc578063c45ac05014610a05578063c4e3709514610a42578063c87b56dd14610a6b57610314565b806396ea6ebe1161012e57806396ea6ebe146108705780639852595c1461089b578063a0712d68146108d8578063a22cb465146108f4578063a3f8eace1461091d578063a7c13b7c1461095a57610314565b806370a0823114610760578063715018a61461079d578063819b25ba146107b45780638b83209b146107dd5780638da5cb5b1461081a57806395d89b411461084557610314565b80633a98ef391161023457806353135ca0116101ed5780635a546223116101c75780635a546223146106b15780636352211e146106cd57806368428a1b1461070a5780636c0360eb1461073557610314565b806353135ca01461062057806355f804b31461064b5780635a23dd991461067457610314565b80633a98ef3914610521578063406072a91461054c57806342842e0e14610589578063440bc7f3146105a557806344a0d68a146105ce57806348b75044146105f757610314565b806318160ddd1161028657806318160ddd14610430578063191655871461045b57806323b872dd146104845780632e036768146104a05780632eb4a7ab146104cb57806332cb6b0c146104f657610314565b806301ffc9a71461031957806306fdde0314610356578063081812fc14610381578063095ea7b3146103be5780631370128e146103da57806313faede61461040557610314565b36610314577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102fb610c1b565b3460405161030a92919061406c565b60405180910390a1005b600080fd5b34801561032557600080fd5b50610340600480360381019061033b919061395e565b610c23565b60405161034d9190614095565b60405180910390f35b34801561036257600080fd5b5061036b610cb5565b60405161037891906140cb565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613a72565b610d47565b6040516103b59190613fdc565b60405180910390f35b6103d860048036038101906103d39190613897565b610dc6565b005b3480156103e657600080fd5b506103ef610f0a565b6040516103fc919061434d565b60405180910390f35b34801561041157600080fd5b5061041a610f10565b604051610427919061434d565b60405180910390f35b34801561043c57600080fd5b50610445610f16565b604051610452919061434d565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906136b4565b610f2d565b005b61049e60048036038101906104999190613721565b6110ad565b005b3480156104ac57600080fd5b506104b56113d2565b6040516104c2919061434d565b60405180910390f35b3480156104d757600080fd5b506104e06113d7565b6040516104ed91906140b0565b60405180910390f35b34801561050257600080fd5b5061050b6113dd565b604051610518919061434d565b60405180910390f35b34801561052d57600080fd5b506105366113e3565b604051610543919061434d565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906139e5565b6113ed565b604051610580919061434d565b60405180910390f35b6105a3600480360381019061059e9190613721565b611474565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613931565b611494565b005b3480156105da57600080fd5b506105f560048036038101906105f09190613a72565b6114a6565b005b34801561060357600080fd5b5061061e600480360381019061061991906139e5565b6114b8565b005b34801561062c57600080fd5b506106356116cc565b6040516106429190614095565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613a25565b6116df565b005b34801561068057600080fd5b5061069b600480360381019061069691906137f7565b6116fd565b6040516106a89190614095565b60405180910390f35b6106cb60048036038101906106c69190613acc565b611781565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613a72565b611a0a565b6040516107019190613fdc565b60405180910390f35b34801561071657600080fd5b5061071f611a1c565b60405161072c9190614095565b60405180910390f35b34801561074157600080fd5b5061074a611a2f565b60405161075791906140cb565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613687565b611abd565b604051610794919061434d565b60405180910390f35b3480156107a957600080fd5b506107b2611b76565b005b3480156107c057600080fd5b506107db60048036038101906107d69190613a72565b611b8a565b005b3480156107e957600080fd5b5061080460048036038101906107ff9190613a72565b611c3b565b6040516108119190613fdc565b60405180910390f35b34801561082657600080fd5b5061082f611c83565b60405161083c9190613fdc565b60405180910390f35b34801561085157600080fd5b5061085a611cad565b60405161086791906140cb565b60405180910390f35b34801561087c57600080fd5b50610885611d3f565b6040516108929190613fdc565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613687565b611d65565b6040516108cf919061434d565b60405180910390f35b6108f260048036038101906108ed9190613a72565b611dae565b005b34801561090057600080fd5b5061091b60048036038101906109169190613857565b611f45565b005b34801561092957600080fd5b50610944600480360381019061093f9190613687565b612050565b604051610951919061434d565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613b2c565b612083565b60405161098e919061434d565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190613687565b6120b4565b005b6109da60048036038101906109d59190613774565b612100565b005b3480156109e857600080fd5b50610a0360048036038101906109fe91906138d7565b6121fc565b005b348015610a1157600080fd5b50610a2c6004803603810190610a2791906139e5565b612258565b604051610a39919061434d565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a6491906138d7565b612316565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613a72565b612372565b604051610a9f91906140cb565b60405180910390f35b348015610ab457600080fd5b50610acf6004803603810190610aca9190613687565b612411565b604051610adc919061434d565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b0791906139b8565b61245a565b604051610b19919061434d565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190613687565b6124a3565b604051610b56919061434d565b60405180910390f35b348015610b6b57600080fd5b50610b746124b5565b604051610b81919061434d565b60405180910390f35b348015610b9657600080fd5b50610b9f6124ba565b604051610bac919061434d565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906136e1565b6124c4565b604051610be99190614095565b60405180910390f35b348015610bfe57600080fd5b50610c196004803603810190610c149190613687565b612558565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c7e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cae5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610cc49061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf09061463b565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b5050505050905090565b6000610d52826125dc565b610d88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd182611a0a565b90508073ffffffffffffffffffffffffffffffffffffffff16610df261263b565b73ffffffffffffffffffffffffffffffffffffffff1614610e5557610e1e81610e1961263b565b6124c4565b610e54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b60105481565b6000610f20612643565b6001546000540303905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa69061418d565b60405180910390fd5b6000610fba82612050565b90506000811415611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff79061420d565b60405180910390fd5b8060096000828254611012919061440c565b9250508190555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506110708282612648565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516110a1929190613ff7565b60405180910390a15050565b60006110b88261273c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461111f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061112b8461280a565b91509150611141818761113c61263b565b612831565b61118d576111568661115161263b565b6124c4565b61118c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111f4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112018686866001612875565b801561120c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112da856112b688888761287b565b7c0200000000000000000000000000000000000000000000000000000000176128a3565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561136257600060018501905060006004600083815260200190815260200160002054141561136057600054811461135f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ca86868660016128ce565b505050505050565b600581565b60145481565b61138881565b6000600854905090565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61148f83838360405180602001604052806000815250612100565b505050565b61149c6128d4565b8060148190555050565b6114ae6128d4565b8060108190555050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161153a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115319061418d565b60405180910390fd5b60006115468383612258565b9050600081141561158c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115839061420d565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115db919061440c565b9250508190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611677838383612952565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516116bf92919061406c565b60405180910390a2505050565b601560019054906101000a900460ff1681565b6116e76128d4565b8181601291906116f89291906133f6565b505050565b600080846040516020016117119190613f71565b604051602081830303815290604052805190602001209050611777848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601454836129d8565b9150509392505050565b600061178c336129ef565b9050601560019054906101000a900460ff166117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d49061430d565b60405180910390fd5b6117e83384846116fd565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906142cd565b60405180910390fd5b60058482611835919061440c565b1115611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061410d565b60405180910390fd5b61138884611882610f16565b61188c919061440c565b11156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c49061422d565b60405180910390fd5b346118db8286601054612083565b1461191b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611912906140ed565b60405180910390fd5b600060115411611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061424d565b60405180910390fd5b60016011600082825461197391906144ed565b92505081905550600060115414156119bc576000601560016101000a81548160ff0219169083151502179055506001601560006101000a81548160ff0219169083151502179055505b6119c63385612a46565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f76119ef610f16565b6040516119fc919061434d565b60405180910390a150505050565b6000611a158261273c565b9050919050565b601560009054906101000a900460ff1681565b60128054611a3c9061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a689061463b565b8015611ab55780601f10611a8a57610100808354040283529160200191611ab5565b820191906000526020600020905b815481529060010190602001808311611a9857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b25576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b7e6128d4565b611b886000612a64565b565b611b926128d4565b806011541015611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061412d565b60405180910390fd5b8060116000828254611be991906144ed565b92505081905550611bfa3382612b2a565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611c23610f16565b604051611c30919061434d565b60405180910390a150565b6000600c8281548110611c5157611c50614798565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611cbc9061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce89061463b565b8015611d355780601f10611d0a57610100808354040283529160200191611d35565b820191906000526020600020905b815481529060010190602001808311611d1857829003601f168201915b5050505050905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601560009054906101000a900460ff16611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df4906142ad565b60405180910390fd5b600581611e09336129ef565b611e13919061440c565b1115611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b9061416d565b60405180910390fd5b61138881611e60610f16565b611e6a919061440c565b1115611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea29061422d565b60405180910390fd5b3481601054611eba9190614493565b14611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef1906140ed565b60405180910390fd5b611f043382612a46565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611f2d610f16565b604051611f3a919061434d565b60405180910390a150565b8060076000611f5261263b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fff61263b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120449190614095565b60405180910390a35050565b60008061205b6124ba565b47612066919061440c565b905061207b838261207686611d65565b612ce7565b915050919050565b60008084116120925781612095565b60005b82846120a19190614493565b6120ab91906144ed565b90509392505050565b6120bc6128d4565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612108610c1b565b73ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ea5761216461263b565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121aa57506121a9846121a461263b565b6124c4565b5b6121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e09061428d565b60405180910390fd5b5b6121f684848484612d55565b50505050565b6122046128d4565b80601560016101000a81548160ff0219169083151502179055507f1050112436208e776d9a33d97ca1981ed83303d2a93ccbd8c54f7a774c00f8148160405161224d9190614095565b60405180910390a150565b6000806122648461245a565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161229d9190613fdc565b60206040518083038186803b1580156122b557600080fd5b505afa1580156122c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ed9190613a9f565b6122f7919061440c565b905061230d838261230887876113ed565b612ce7565b91505092915050565b61231e6128d4565b80601560006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602816040516123679190614095565b60405180910390a150565b606061237d826125dc565b6123b3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006123bd612dc8565b90506000815114156123de5760405180602001604052806000815250612409565b806123e884612e5a565b6040516020016123f9929190613fa3565b6040516020818303038152906040525b915050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006124ae826129ef565b9050919050565b600581565b6000600954905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125606128d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c79061414d565b60405180910390fd5b6125d981612a64565b50565b6000816125e7612643565b111580156125f6575060005482105b8015612634575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b8047101561268b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612682906141cd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126b190613fc7565b60006040518083038185875af1925050503d80600081146126ee576040519150601f19603f3d011682016040523d82523d6000602084013e6126f3565b606091505b5050905080612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e906141ad565b60405180910390fd5b505050565b6000808290508061274b612643565b116127d3576000548110156127d25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156127d0575b60008114156127c657600460008360019003935083815260200190815260200160002054905061279b565b8092505050612805565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612892868684612eb3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6128dc610c1b565b73ffffffffffffffffffffffffffffffffffffffff166128fa611c83565b73ffffffffffffffffffffffffffffffffffffffff1614612950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129479061426d565b60405180910390fd5b565b6129d38363a9059cbb60e01b848460405160240161297192919061406c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ebc565b505050565b6000826129e58584612f83565b1490509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612a60828260405180602001604052806000815250612fd9565b5050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415612b6b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b786000848385612875565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bef83612be0600086600061287b565b612be985613076565b176128a3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c9057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c55565b506000821415612ccc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ce260008483856128ce565b505050565b600081600854600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612d389190614493565b612d429190614462565b612d4c91906144ed565b90509392505050565b612d608484846110ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612dc257612d8b84848484613086565b612dc1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060128054612dd79061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054612e039061463b565b8015612e505780601f10612e2557610100808354040283529160200191612e50565b820191906000526020600020905b815481529060010190602001808311612e3357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612e9e57600184039350600a81066030018453600a8104905080612e9957612e9e565b612e73565b50828103602084039350808452505050919050565b60009392505050565b6000612f1e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166131e69092919063ffffffff16565b9050600081511115612f7e5780806020019051810190612f3e9190613904565b612f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f749061432d565b60405180910390fd5b5b505050565b60008082905060005b8451811015612fce57612fb982868381518110612fac57612fab614798565b5b60200260200101516131fe565b91508080612fc69061469e565b915050612f8c565b508091505092915050565b612fe38383612b2a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461307157600080549050600083820390505b6130236000868380600101945086613086565b613059576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061301057816000541461306e57600080fd5b50505b505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ac61263b565b8786866040518563ffffffff1660e01b81526004016130ce9493929190614020565b602060405180830381600087803b1580156130e857600080fd5b505af192505050801561311957506040513d601f19601f82011682018060405250810190613116919061398b565b60015b613193573d8060008114613149576040519150601f19603f3d011682016040523d82523d6000602084013e61314e565b606091505b5060008151141561318b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606131f58484600085613229565b90509392505050565b60008183106132165761321182846132f6565b613221565b61322083836132f6565b5b905092915050565b60608247101561326e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613265906141ed565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516132979190613f8c565b60006040518083038185875af1925050503d80600081146132d4576040519150601f19603f3d011682016040523d82523d6000602084013e6132d9565b606091505b50915091506132ea8783838761330d565b92505050949350505050565b600082600052816020526040600020905092915050565b60608315613370576000835114156133685761332885613383565b613367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335e906142ed565b60405180910390fd5b5b82905061337b565b61337a83836133a6565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156133b95781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ed91906140cb565b60405180910390fd5b8280546134029061463b565b90600052602060002090601f016020900481019282613424576000855561346b565b82601f1061343d57803560ff191683800117855561346b565b8280016001018555821561346b579182015b8281111561346a57823582559160200191906001019061344f565b5b509050613478919061347c565b5090565b5b8082111561349557600081600090555060010161347d565b5090565b60006134ac6134a78461438d565b614368565b9050828152602081018484840111156134c8576134c7614805565b5b6134d38482856145f9565b509392505050565b6000813590506134ea81614c96565b92915050565b6000813590506134ff81614cad565b92915050565b60008083601f84011261351b5761351a6147fb565b5b8235905067ffffffffffffffff811115613538576135376147f6565b5b60208301915083602082028301111561355457613553614800565b5b9250929050565b60008135905061356a81614cc4565b92915050565b60008151905061357f81614cc4565b92915050565b60008135905061359481614cdb565b92915050565b6000813590506135a981614cf2565b92915050565b6000815190506135be81614cf2565b92915050565b600082601f8301126135d9576135d86147fb565b5b81356135e9848260208601613499565b91505092915050565b60008135905061360181614d09565b92915050565b60008083601f84011261361d5761361c6147fb565b5b8235905067ffffffffffffffff81111561363a576136396147f6565b5b60208301915083600182028301111561365657613655614800565b5b9250929050565b60008135905061366c81614d20565b92915050565b60008151905061368181614d20565b92915050565b60006020828403121561369d5761369c61480f565b5b60006136ab848285016134db565b91505092915050565b6000602082840312156136ca576136c961480f565b5b60006136d8848285016134f0565b91505092915050565b600080604083850312156136f8576136f761480f565b5b6000613706858286016134db565b9250506020613717858286016134db565b9150509250929050565b60008060006060848603121561373a5761373961480f565b5b6000613748868287016134db565b9350506020613759868287016134db565b925050604061376a8682870161365d565b9150509250925092565b6000806000806080858703121561378e5761378d61480f565b5b600061379c878288016134db565b94505060206137ad878288016134db565b93505060406137be8782880161365d565b925050606085013567ffffffffffffffff8111156137df576137de61480a565b5b6137eb878288016135c4565b91505092959194509250565b6000806000604084860312156138105761380f61480f565b5b600061381e868287016134db565b935050602084013567ffffffffffffffff81111561383f5761383e61480a565b5b61384b86828701613505565b92509250509250925092565b6000806040838503121561386e5761386d61480f565b5b600061387c858286016134db565b925050602061388d8582860161355b565b9150509250929050565b600080604083850312156138ae576138ad61480f565b5b60006138bc858286016134db565b92505060206138cd8582860161365d565b9150509250929050565b6000602082840312156138ed576138ec61480f565b5b60006138fb8482850161355b565b91505092915050565b60006020828403121561391a5761391961480f565b5b600061392884828501613570565b91505092915050565b6000602082840312156139475761394661480f565b5b600061395584828501613585565b91505092915050565b6000602082840312156139745761397361480f565b5b60006139828482850161359a565b91505092915050565b6000602082840312156139a1576139a061480f565b5b60006139af848285016135af565b91505092915050565b6000602082840312156139ce576139cd61480f565b5b60006139dc848285016135f2565b91505092915050565b600080604083850312156139fc576139fb61480f565b5b6000613a0a858286016135f2565b9250506020613a1b858286016134db565b9150509250929050565b60008060208385031215613a3c57613a3b61480f565b5b600083013567ffffffffffffffff811115613a5a57613a5961480a565b5b613a6685828601613607565b92509250509250929050565b600060208284031215613a8857613a8761480f565b5b6000613a968482850161365d565b91505092915050565b600060208284031215613ab557613ab461480f565b5b6000613ac384828501613672565b91505092915050565b600080600060408486031215613ae557613ae461480f565b5b6000613af38682870161365d565b935050602084013567ffffffffffffffff811115613b1457613b1361480a565b5b613b2086828701613505565b92509250509250925092565b600080600060608486031215613b4557613b4461480f565b5b6000613b538682870161365d565b9350506020613b648682870161365d565b9250506040613b758682870161365d565b9150509250925092565b613b88816145c3565b82525050565b613b9781614521565b82525050565b613bae613ba982614521565b6146e7565b82525050565b613bbd81614545565b82525050565b613bcc81614551565b82525050565b6000613bdd826143be565b613be781856143d4565b9350613bf7818560208601614608565b613c0081614814565b840191505092915050565b6000613c16826143be565b613c2081856143e5565b9350613c30818560208601614608565b80840191505092915050565b6000613c47826143c9565b613c5181856143f0565b9350613c61818560208601614608565b613c6a81614814565b840191505092915050565b6000613c80826143c9565b613c8a8185614401565b9350613c9a818560208601614608565b80840191505092915050565b6000613cb3601b836143f0565b9150613cbe82614832565b602082019050919050565b6000613cd66029836143f0565b9150613ce18261485b565b604082019050919050565b6000613cf9601e836143f0565b9150613d04826148aa565b602082019050919050565b6000613d1c6026836143f0565b9150613d27826148d3565b604082019050919050565b6000613d3f6026836143f0565b9150613d4a82614922565b604082019050919050565b6000613d626026836143f0565b9150613d6d82614971565b604082019050919050565b6000613d85603a836143f0565b9150613d90826149c0565b604082019050919050565b6000613da8601d836143f0565b9150613db382614a0f565b602082019050919050565b6000613dcb6026836143f0565b9150613dd682614a38565b604082019050919050565b6000613dee602b836143f0565b9150613df982614a87565b604082019050919050565b6000613e116016836143f0565b9150613e1c82614ad6565b602082019050919050565b6000613e346012836143f0565b9150613e3f82614aff565b602082019050919050565b6000613e576020836143f0565b9150613e6282614b28565b602082019050919050565b6000613e7a6032836143f0565b9150613e8582614b51565b604082019050919050565b6000613e9d6013836143f0565b9150613ea882614ba0565b602082019050919050565b6000613ec0601b836143f0565b9150613ecb82614bc9565b602082019050919050565b6000613ee36000836143e5565b9150613eee82614bf2565b600082019050919050565b6000613f06601d836143f0565b9150613f1182614bf5565b602082019050919050565b6000613f296016836143f0565b9150613f3482614c1e565b602082019050919050565b6000613f4c602a836143f0565b9150613f5782614c47565b604082019050919050565b613f6b816145b9565b82525050565b6000613f7d8284613b9d565b60148201915081905092915050565b6000613f988284613c0b565b915081905092915050565b6000613faf8285613c75565b9150613fbb8284613c75565b91508190509392505050565b6000613fd282613ed6565b9150819050919050565b6000602082019050613ff16000830184613b8e565b92915050565b600060408201905061400c6000830185613b7f565b6140196020830184613f62565b9392505050565b60006080820190506140356000830187613b8e565b6140426020830186613b8e565b61404f6040830185613f62565b81810360608301526140618184613bd2565b905095945050505050565b60006040820190506140816000830185613b8e565b61408e6020830184613f62565b9392505050565b60006020820190506140aa6000830184613bb4565b92915050565b60006020820190506140c56000830184613bc3565b92915050565b600060208201905081810360008301526140e58184613c3c565b905092915050565b6000602082019050818103600083015261410681613ca6565b9050919050565b6000602082019050818103600083015261412681613cc9565b9050919050565b6000602082019050818103600083015261414681613cec565b9050919050565b6000602082019050818103600083015261416681613d0f565b9050919050565b6000602082019050818103600083015261418681613d32565b9050919050565b600060208201905081810360008301526141a681613d55565b9050919050565b600060208201905081810360008301526141c681613d78565b9050919050565b600060208201905081810360008301526141e681613d9b565b9050919050565b6000602082019050818103600083015261420681613dbe565b9050919050565b6000602082019050818103600083015261422681613de1565b9050919050565b6000602082019050818103600083015261424681613e04565b9050919050565b6000602082019050818103600083015261426681613e27565b9050919050565b6000602082019050818103600083015261428681613e4a565b9050919050565b600060208201905081810360008301526142a681613e6d565b9050919050565b600060208201905081810360008301526142c681613e90565b9050919050565b600060208201905081810360008301526142e681613eb3565b9050919050565b6000602082019050818103600083015261430681613ef9565b9050919050565b6000602082019050818103600083015261432681613f1c565b9050919050565b6000602082019050818103600083015261434681613f3f565b9050919050565b60006020820190506143626000830184613f62565b92915050565b6000614372614383565b905061437e828261466d565b919050565b6000604051905090565b600067ffffffffffffffff8211156143a8576143a76147c7565b5b6143b182614814565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614417826145b9565b9150614422836145b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144575761445661470b565b5b828201905092915050565b600061446d826145b9565b9150614478836145b9565b9250826144885761448761473a565b5b828204905092915050565b600061449e826145b9565b91506144a9836145b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144e2576144e161470b565b5b828202905092915050565b60006144f8826145b9565b9150614503836145b9565b9250828210156145165761451561470b565b5b828203905092915050565b600061452c82614599565b9050919050565b600061453e82614599565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061459282614521565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006145ce826145d5565b9050919050565b60006145e0826145e7565b9050919050565b60006145f282614599565b9050919050565b82818337600083830152505050565b60005b8381101561462657808201518184015260208101905061460b565b83811115614635576000848401525b50505050565b6000600282049050600182168061465357607f821691505b6020821081141561466757614666614769565b5b50919050565b61467682614814565b810181811067ffffffffffffffff82111715614695576146946147c7565b5b80604052505050565b60006146a9826145b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146dc576146db61470b565b5b600182019050919050565b60006146f2826146f9565b9050919050565b600061470482614825565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b7f416d6f756e74206f6620746f6b656e7320657863656564732077686974656c6960008201527f7374206c696d69742e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206578636565642066726565206d696e74206c696d69742e0000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f6620746f6b656e7320657863656564732077616c6c65742060008201527f6c696d69742e0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206578636565647320737570706c792e00000000000000000000600082015250565b7f50726573616c652068617320656e6465642e0000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f41646472657373206973206e6f742077686974656c69737465642e0000000000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b614c9f81614521565b8114614caa57600080fd5b50565b614cb681614533565b8114614cc157600080fd5b50565b614ccd81614545565b8114614cd857600080fd5b50565b614ce481614551565b8114614cef57600080fd5b50565b614cfb8161455b565b8114614d0657600080fd5b50565b614d1281614587565b8114614d1d57600080fd5b50565b614d29816145b9565b8114614d3457600080fd5b5056fea26469706673582212207cee96f919508b2ea18bb3239b31a8e1124e0c83d603750734c5a6553a8d947864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000954686520507269646500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003545047000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f47000000000000000000000000d495fe1c0f76b74540437fc5bfb75c04e167093600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000004e

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806370a0823111610175578063ab59ce68116100dc578063ce7c2ac211610095578063df7787a41161006f578063df7787a414610b5f578063e33b7de314610b8a578063e985e9c514610bb5578063f2fde38b14610bf257610314565b8063ce7c2ac214610aa8578063d79779b214610ae5578063dc33e68114610b2257610314565b8063ab59ce6814610997578063b88d4fde146109c0578063bce4d6ae146109dc578063c45ac05014610a05578063c4e3709514610a42578063c87b56dd14610a6b57610314565b806396ea6ebe1161012e57806396ea6ebe146108705780639852595c1461089b578063a0712d68146108d8578063a22cb465146108f4578063a3f8eace1461091d578063a7c13b7c1461095a57610314565b806370a0823114610760578063715018a61461079d578063819b25ba146107b45780638b83209b146107dd5780638da5cb5b1461081a57806395d89b411461084557610314565b80633a98ef391161023457806353135ca0116101ed5780635a546223116101c75780635a546223146106b15780636352211e146106cd57806368428a1b1461070a5780636c0360eb1461073557610314565b806353135ca01461062057806355f804b31461064b5780635a23dd991461067457610314565b80633a98ef3914610521578063406072a91461054c57806342842e0e14610589578063440bc7f3146105a557806344a0d68a146105ce57806348b75044146105f757610314565b806318160ddd1161028657806318160ddd14610430578063191655871461045b57806323b872dd146104845780632e036768146104a05780632eb4a7ab146104cb57806332cb6b0c146104f657610314565b806301ffc9a71461031957806306fdde0314610356578063081812fc14610381578063095ea7b3146103be5780631370128e146103da57806313faede61461040557610314565b36610314577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102fb610c1b565b3460405161030a92919061406c565b60405180910390a1005b600080fd5b34801561032557600080fd5b50610340600480360381019061033b919061395e565b610c23565b60405161034d9190614095565b60405180910390f35b34801561036257600080fd5b5061036b610cb5565b60405161037891906140cb565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613a72565b610d47565b6040516103b59190613fdc565b60405180910390f35b6103d860048036038101906103d39190613897565b610dc6565b005b3480156103e657600080fd5b506103ef610f0a565b6040516103fc919061434d565b60405180910390f35b34801561041157600080fd5b5061041a610f10565b604051610427919061434d565b60405180910390f35b34801561043c57600080fd5b50610445610f16565b604051610452919061434d565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906136b4565b610f2d565b005b61049e60048036038101906104999190613721565b6110ad565b005b3480156104ac57600080fd5b506104b56113d2565b6040516104c2919061434d565b60405180910390f35b3480156104d757600080fd5b506104e06113d7565b6040516104ed91906140b0565b60405180910390f35b34801561050257600080fd5b5061050b6113dd565b604051610518919061434d565b60405180910390f35b34801561052d57600080fd5b506105366113e3565b604051610543919061434d565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906139e5565b6113ed565b604051610580919061434d565b60405180910390f35b6105a3600480360381019061059e9190613721565b611474565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613931565b611494565b005b3480156105da57600080fd5b506105f560048036038101906105f09190613a72565b6114a6565b005b34801561060357600080fd5b5061061e600480360381019061061991906139e5565b6114b8565b005b34801561062c57600080fd5b506106356116cc565b6040516106429190614095565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613a25565b6116df565b005b34801561068057600080fd5b5061069b600480360381019061069691906137f7565b6116fd565b6040516106a89190614095565b60405180910390f35b6106cb60048036038101906106c69190613acc565b611781565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613a72565b611a0a565b6040516107019190613fdc565b60405180910390f35b34801561071657600080fd5b5061071f611a1c565b60405161072c9190614095565b60405180910390f35b34801561074157600080fd5b5061074a611a2f565b60405161075791906140cb565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613687565b611abd565b604051610794919061434d565b60405180910390f35b3480156107a957600080fd5b506107b2611b76565b005b3480156107c057600080fd5b506107db60048036038101906107d69190613a72565b611b8a565b005b3480156107e957600080fd5b5061080460048036038101906107ff9190613a72565b611c3b565b6040516108119190613fdc565b60405180910390f35b34801561082657600080fd5b5061082f611c83565b60405161083c9190613fdc565b60405180910390f35b34801561085157600080fd5b5061085a611cad565b60405161086791906140cb565b60405180910390f35b34801561087c57600080fd5b50610885611d3f565b6040516108929190613fdc565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613687565b611d65565b6040516108cf919061434d565b60405180910390f35b6108f260048036038101906108ed9190613a72565b611dae565b005b34801561090057600080fd5b5061091b60048036038101906109169190613857565b611f45565b005b34801561092957600080fd5b50610944600480360381019061093f9190613687565b612050565b604051610951919061434d565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613b2c565b612083565b60405161098e919061434d565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190613687565b6120b4565b005b6109da60048036038101906109d59190613774565b612100565b005b3480156109e857600080fd5b50610a0360048036038101906109fe91906138d7565b6121fc565b005b348015610a1157600080fd5b50610a2c6004803603810190610a2791906139e5565b612258565b604051610a39919061434d565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a6491906138d7565b612316565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613a72565b612372565b604051610a9f91906140cb565b60405180910390f35b348015610ab457600080fd5b50610acf6004803603810190610aca9190613687565b612411565b604051610adc919061434d565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b0791906139b8565b61245a565b604051610b19919061434d565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190613687565b6124a3565b604051610b56919061434d565b60405180910390f35b348015610b6b57600080fd5b50610b746124b5565b604051610b81919061434d565b60405180910390f35b348015610b9657600080fd5b50610b9f6124ba565b604051610bac919061434d565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906136e1565b6124c4565b604051610be99190614095565b60405180910390f35b348015610bfe57600080fd5b50610c196004803603810190610c149190613687565b612558565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c7e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cae5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610cc49061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf09061463b565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b5050505050905090565b6000610d52826125dc565b610d88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd182611a0a565b90508073ffffffffffffffffffffffffffffffffffffffff16610df261263b565b73ffffffffffffffffffffffffffffffffffffffff1614610e5557610e1e81610e1961263b565b6124c4565b610e54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b60105481565b6000610f20612643565b6001546000540303905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa69061418d565b60405180910390fd5b6000610fba82612050565b90506000811415611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff79061420d565b60405180910390fd5b8060096000828254611012919061440c565b9250508190555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506110708282612648565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516110a1929190613ff7565b60405180910390a15050565b60006110b88261273c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461111f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061112b8461280a565b91509150611141818761113c61263b565b612831565b61118d576111568661115161263b565b6124c4565b61118c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111f4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112018686866001612875565b801561120c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112da856112b688888761287b565b7c0200000000000000000000000000000000000000000000000000000000176128a3565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561136257600060018501905060006004600083815260200190815260200160002054141561136057600054811461135f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ca86868660016128ce565b505050505050565b600581565b60145481565b61138881565b6000600854905090565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61148f83838360405180602001604052806000815250612100565b505050565b61149c6128d4565b8060148190555050565b6114ae6128d4565b8060108190555050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161153a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115319061418d565b60405180910390fd5b60006115468383612258565b9050600081141561158c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115839061420d565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115db919061440c565b9250508190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611677838383612952565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516116bf92919061406c565b60405180910390a2505050565b601560019054906101000a900460ff1681565b6116e76128d4565b8181601291906116f89291906133f6565b505050565b600080846040516020016117119190613f71565b604051602081830303815290604052805190602001209050611777848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601454836129d8565b9150509392505050565b600061178c336129ef565b9050601560019054906101000a900460ff166117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d49061430d565b60405180910390fd5b6117e83384846116fd565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906142cd565b60405180910390fd5b60058482611835919061440c565b1115611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061410d565b60405180910390fd5b61138884611882610f16565b61188c919061440c565b11156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c49061422d565b60405180910390fd5b346118db8286601054612083565b1461191b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611912906140ed565b60405180910390fd5b600060115411611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061424d565b60405180910390fd5b60016011600082825461197391906144ed565b92505081905550600060115414156119bc576000601560016101000a81548160ff0219169083151502179055506001601560006101000a81548160ff0219169083151502179055505b6119c63385612a46565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f76119ef610f16565b6040516119fc919061434d565b60405180910390a150505050565b6000611a158261273c565b9050919050565b601560009054906101000a900460ff1681565b60128054611a3c9061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a689061463b565b8015611ab55780601f10611a8a57610100808354040283529160200191611ab5565b820191906000526020600020905b815481529060010190602001808311611a9857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b25576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b7e6128d4565b611b886000612a64565b565b611b926128d4565b806011541015611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061412d565b60405180910390fd5b8060116000828254611be991906144ed565b92505081905550611bfa3382612b2a565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611c23610f16565b604051611c30919061434d565b60405180910390a150565b6000600c8281548110611c5157611c50614798565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611cbc9061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce89061463b565b8015611d355780601f10611d0a57610100808354040283529160200191611d35565b820191906000526020600020905b815481529060010190602001808311611d1857829003601f168201915b5050505050905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601560009054906101000a900460ff16611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df4906142ad565b60405180910390fd5b600581611e09336129ef565b611e13919061440c565b1115611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b9061416d565b60405180910390fd5b61138881611e60610f16565b611e6a919061440c565b1115611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea29061422d565b60405180910390fd5b3481601054611eba9190614493565b14611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef1906140ed565b60405180910390fd5b611f043382612a46565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611f2d610f16565b604051611f3a919061434d565b60405180910390a150565b8060076000611f5261263b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fff61263b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120449190614095565b60405180910390a35050565b60008061205b6124ba565b47612066919061440c565b905061207b838261207686611d65565b612ce7565b915050919050565b60008084116120925781612095565b60005b82846120a19190614493565b6120ab91906144ed565b90509392505050565b6120bc6128d4565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612108610c1b565b73ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ea5761216461263b565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121aa57506121a9846121a461263b565b6124c4565b5b6121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e09061428d565b60405180910390fd5b5b6121f684848484612d55565b50505050565b6122046128d4565b80601560016101000a81548160ff0219169083151502179055507f1050112436208e776d9a33d97ca1981ed83303d2a93ccbd8c54f7a774c00f8148160405161224d9190614095565b60405180910390a150565b6000806122648461245a565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161229d9190613fdc565b60206040518083038186803b1580156122b557600080fd5b505afa1580156122c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ed9190613a9f565b6122f7919061440c565b905061230d838261230887876113ed565b612ce7565b91505092915050565b61231e6128d4565b80601560006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602816040516123679190614095565b60405180910390a150565b606061237d826125dc565b6123b3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006123bd612dc8565b90506000815114156123de5760405180602001604052806000815250612409565b806123e884612e5a565b6040516020016123f9929190613fa3565b6040516020818303038152906040525b915050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006124ae826129ef565b9050919050565b600581565b6000600954905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125606128d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c79061414d565b60405180910390fd5b6125d981612a64565b50565b6000816125e7612643565b111580156125f6575060005482105b8015612634575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b8047101561268b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612682906141cd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126b190613fc7565b60006040518083038185875af1925050503d80600081146126ee576040519150601f19603f3d011682016040523d82523d6000602084013e6126f3565b606091505b5050905080612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e906141ad565b60405180910390fd5b505050565b6000808290508061274b612643565b116127d3576000548110156127d25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156127d0575b60008114156127c657600460008360019003935083815260200190815260200160002054905061279b565b8092505050612805565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612892868684612eb3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6128dc610c1b565b73ffffffffffffffffffffffffffffffffffffffff166128fa611c83565b73ffffffffffffffffffffffffffffffffffffffff1614612950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129479061426d565b60405180910390fd5b565b6129d38363a9059cbb60e01b848460405160240161297192919061406c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ebc565b505050565b6000826129e58584612f83565b1490509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612a60828260405180602001604052806000815250612fd9565b5050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415612b6b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b786000848385612875565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bef83612be0600086600061287b565b612be985613076565b176128a3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c9057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c55565b506000821415612ccc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ce260008483856128ce565b505050565b600081600854600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612d389190614493565b612d429190614462565b612d4c91906144ed565b90509392505050565b612d608484846110ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612dc257612d8b84848484613086565b612dc1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060128054612dd79061463b565b80601f0160208091040260200160405190810160405280929190818152602001828054612e039061463b565b8015612e505780601f10612e2557610100808354040283529160200191612e50565b820191906000526020600020905b815481529060010190602001808311612e3357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612e9e57600184039350600a81066030018453600a8104905080612e9957612e9e565b612e73565b50828103602084039350808452505050919050565b60009392505050565b6000612f1e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166131e69092919063ffffffff16565b9050600081511115612f7e5780806020019051810190612f3e9190613904565b612f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f749061432d565b60405180910390fd5b5b505050565b60008082905060005b8451811015612fce57612fb982868381518110612fac57612fab614798565b5b60200260200101516131fe565b91508080612fc69061469e565b915050612f8c565b508091505092915050565b612fe38383612b2a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461307157600080549050600083820390505b6130236000868380600101945086613086565b613059576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061301057816000541461306e57600080fd5b50505b505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ac61263b565b8786866040518563ffffffff1660e01b81526004016130ce9493929190614020565b602060405180830381600087803b1580156130e857600080fd5b505af192505050801561311957506040513d601f19601f82011682018060405250810190613116919061398b565b60015b613193573d8060008114613149576040519150601f19603f3d011682016040523d82523d6000602084013e61314e565b606091505b5060008151141561318b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606131f58484600085613229565b90509392505050565b60008183106132165761321182846132f6565b613221565b61322083836132f6565b5b905092915050565b60608247101561326e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613265906141ed565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516132979190613f8c565b60006040518083038185875af1925050503d80600081146132d4576040519150601f19603f3d011682016040523d82523d6000602084013e6132d9565b606091505b50915091506132ea8783838761330d565b92505050949350505050565b600082600052816020526040600020905092915050565b60608315613370576000835114156133685761332885613383565b613367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335e906142ed565b60405180910390fd5b5b82905061337b565b61337a83836133a6565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156133b95781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ed91906140cb565b60405180910390fd5b8280546134029061463b565b90600052602060002090601f016020900481019282613424576000855561346b565b82601f1061343d57803560ff191683800117855561346b565b8280016001018555821561346b579182015b8281111561346a57823582559160200191906001019061344f565b5b509050613478919061347c565b5090565b5b8082111561349557600081600090555060010161347d565b5090565b60006134ac6134a78461438d565b614368565b9050828152602081018484840111156134c8576134c7614805565b5b6134d38482856145f9565b509392505050565b6000813590506134ea81614c96565b92915050565b6000813590506134ff81614cad565b92915050565b60008083601f84011261351b5761351a6147fb565b5b8235905067ffffffffffffffff811115613538576135376147f6565b5b60208301915083602082028301111561355457613553614800565b5b9250929050565b60008135905061356a81614cc4565b92915050565b60008151905061357f81614cc4565b92915050565b60008135905061359481614cdb565b92915050565b6000813590506135a981614cf2565b92915050565b6000815190506135be81614cf2565b92915050565b600082601f8301126135d9576135d86147fb565b5b81356135e9848260208601613499565b91505092915050565b60008135905061360181614d09565b92915050565b60008083601f84011261361d5761361c6147fb565b5b8235905067ffffffffffffffff81111561363a576136396147f6565b5b60208301915083600182028301111561365657613655614800565b5b9250929050565b60008135905061366c81614d20565b92915050565b60008151905061368181614d20565b92915050565b60006020828403121561369d5761369c61480f565b5b60006136ab848285016134db565b91505092915050565b6000602082840312156136ca576136c961480f565b5b60006136d8848285016134f0565b91505092915050565b600080604083850312156136f8576136f761480f565b5b6000613706858286016134db565b9250506020613717858286016134db565b9150509250929050565b60008060006060848603121561373a5761373961480f565b5b6000613748868287016134db565b9350506020613759868287016134db565b925050604061376a8682870161365d565b9150509250925092565b6000806000806080858703121561378e5761378d61480f565b5b600061379c878288016134db565b94505060206137ad878288016134db565b93505060406137be8782880161365d565b925050606085013567ffffffffffffffff8111156137df576137de61480a565b5b6137eb878288016135c4565b91505092959194509250565b6000806000604084860312156138105761380f61480f565b5b600061381e868287016134db565b935050602084013567ffffffffffffffff81111561383f5761383e61480a565b5b61384b86828701613505565b92509250509250925092565b6000806040838503121561386e5761386d61480f565b5b600061387c858286016134db565b925050602061388d8582860161355b565b9150509250929050565b600080604083850312156138ae576138ad61480f565b5b60006138bc858286016134db565b92505060206138cd8582860161365d565b9150509250929050565b6000602082840312156138ed576138ec61480f565b5b60006138fb8482850161355b565b91505092915050565b60006020828403121561391a5761391961480f565b5b600061392884828501613570565b91505092915050565b6000602082840312156139475761394661480f565b5b600061395584828501613585565b91505092915050565b6000602082840312156139745761397361480f565b5b60006139828482850161359a565b91505092915050565b6000602082840312156139a1576139a061480f565b5b60006139af848285016135af565b91505092915050565b6000602082840312156139ce576139cd61480f565b5b60006139dc848285016135f2565b91505092915050565b600080604083850312156139fc576139fb61480f565b5b6000613a0a858286016135f2565b9250506020613a1b858286016134db565b9150509250929050565b60008060208385031215613a3c57613a3b61480f565b5b600083013567ffffffffffffffff811115613a5a57613a5961480a565b5b613a6685828601613607565b92509250509250929050565b600060208284031215613a8857613a8761480f565b5b6000613a968482850161365d565b91505092915050565b600060208284031215613ab557613ab461480f565b5b6000613ac384828501613672565b91505092915050565b600080600060408486031215613ae557613ae461480f565b5b6000613af38682870161365d565b935050602084013567ffffffffffffffff811115613b1457613b1361480a565b5b613b2086828701613505565b92509250509250925092565b600080600060608486031215613b4557613b4461480f565b5b6000613b538682870161365d565b9350506020613b648682870161365d565b9250506040613b758682870161365d565b9150509250925092565b613b88816145c3565b82525050565b613b9781614521565b82525050565b613bae613ba982614521565b6146e7565b82525050565b613bbd81614545565b82525050565b613bcc81614551565b82525050565b6000613bdd826143be565b613be781856143d4565b9350613bf7818560208601614608565b613c0081614814565b840191505092915050565b6000613c16826143be565b613c2081856143e5565b9350613c30818560208601614608565b80840191505092915050565b6000613c47826143c9565b613c5181856143f0565b9350613c61818560208601614608565b613c6a81614814565b840191505092915050565b6000613c80826143c9565b613c8a8185614401565b9350613c9a818560208601614608565b80840191505092915050565b6000613cb3601b836143f0565b9150613cbe82614832565b602082019050919050565b6000613cd66029836143f0565b9150613ce18261485b565b604082019050919050565b6000613cf9601e836143f0565b9150613d04826148aa565b602082019050919050565b6000613d1c6026836143f0565b9150613d27826148d3565b604082019050919050565b6000613d3f6026836143f0565b9150613d4a82614922565b604082019050919050565b6000613d626026836143f0565b9150613d6d82614971565b604082019050919050565b6000613d85603a836143f0565b9150613d90826149c0565b604082019050919050565b6000613da8601d836143f0565b9150613db382614a0f565b602082019050919050565b6000613dcb6026836143f0565b9150613dd682614a38565b604082019050919050565b6000613dee602b836143f0565b9150613df982614a87565b604082019050919050565b6000613e116016836143f0565b9150613e1c82614ad6565b602082019050919050565b6000613e346012836143f0565b9150613e3f82614aff565b602082019050919050565b6000613e576020836143f0565b9150613e6282614b28565b602082019050919050565b6000613e7a6032836143f0565b9150613e8582614b51565b604082019050919050565b6000613e9d6013836143f0565b9150613ea882614ba0565b602082019050919050565b6000613ec0601b836143f0565b9150613ecb82614bc9565b602082019050919050565b6000613ee36000836143e5565b9150613eee82614bf2565b600082019050919050565b6000613f06601d836143f0565b9150613f1182614bf5565b602082019050919050565b6000613f296016836143f0565b9150613f3482614c1e565b602082019050919050565b6000613f4c602a836143f0565b9150613f5782614c47565b604082019050919050565b613f6b816145b9565b82525050565b6000613f7d8284613b9d565b60148201915081905092915050565b6000613f988284613c0b565b915081905092915050565b6000613faf8285613c75565b9150613fbb8284613c75565b91508190509392505050565b6000613fd282613ed6565b9150819050919050565b6000602082019050613ff16000830184613b8e565b92915050565b600060408201905061400c6000830185613b7f565b6140196020830184613f62565b9392505050565b60006080820190506140356000830187613b8e565b6140426020830186613b8e565b61404f6040830185613f62565b81810360608301526140618184613bd2565b905095945050505050565b60006040820190506140816000830185613b8e565b61408e6020830184613f62565b9392505050565b60006020820190506140aa6000830184613bb4565b92915050565b60006020820190506140c56000830184613bc3565b92915050565b600060208201905081810360008301526140e58184613c3c565b905092915050565b6000602082019050818103600083015261410681613ca6565b9050919050565b6000602082019050818103600083015261412681613cc9565b9050919050565b6000602082019050818103600083015261414681613cec565b9050919050565b6000602082019050818103600083015261416681613d0f565b9050919050565b6000602082019050818103600083015261418681613d32565b9050919050565b600060208201905081810360008301526141a681613d55565b9050919050565b600060208201905081810360008301526141c681613d78565b9050919050565b600060208201905081810360008301526141e681613d9b565b9050919050565b6000602082019050818103600083015261420681613dbe565b9050919050565b6000602082019050818103600083015261422681613de1565b9050919050565b6000602082019050818103600083015261424681613e04565b9050919050565b6000602082019050818103600083015261426681613e27565b9050919050565b6000602082019050818103600083015261428681613e4a565b9050919050565b600060208201905081810360008301526142a681613e6d565b9050919050565b600060208201905081810360008301526142c681613e90565b9050919050565b600060208201905081810360008301526142e681613eb3565b9050919050565b6000602082019050818103600083015261430681613ef9565b9050919050565b6000602082019050818103600083015261432681613f1c565b9050919050565b6000602082019050818103600083015261434681613f3f565b9050919050565b60006020820190506143626000830184613f62565b92915050565b6000614372614383565b905061437e828261466d565b919050565b6000604051905090565b600067ffffffffffffffff8211156143a8576143a76147c7565b5b6143b182614814565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614417826145b9565b9150614422836145b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144575761445661470b565b5b828201905092915050565b600061446d826145b9565b9150614478836145b9565b9250826144885761448761473a565b5b828204905092915050565b600061449e826145b9565b91506144a9836145b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144e2576144e161470b565b5b828202905092915050565b60006144f8826145b9565b9150614503836145b9565b9250828210156145165761451561470b565b5b828203905092915050565b600061452c82614599565b9050919050565b600061453e82614599565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061459282614521565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006145ce826145d5565b9050919050565b60006145e0826145e7565b9050919050565b60006145f282614599565b9050919050565b82818337600083830152505050565b60005b8381101561462657808201518184015260208101905061460b565b83811115614635576000848401525b50505050565b6000600282049050600182168061465357607f821691505b6020821081141561466757614666614769565b5b50919050565b61467682614814565b810181811067ffffffffffffffff82111715614695576146946147c7565b5b80604052505050565b60006146a9826145b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146dc576146db61470b565b5b600182019050919050565b60006146f2826146f9565b9050919050565b600061470482614825565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b7f416d6f756e74206f6620746f6b656e7320657863656564732077686974656c6960008201527f7374206c696d69742e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206578636565642066726565206d696e74206c696d69742e0000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f6620746f6b656e7320657863656564732077616c6c65742060008201527f6c696d69742e0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206578636565647320737570706c792e00000000000000000000600082015250565b7f50726573616c652068617320656e6465642e0000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f41646472657373206973206e6f742077686974656c69737465642e0000000000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b614c9f81614521565b8114614caa57600080fd5b50565b614cb681614533565b8114614cc157600080fd5b50565b614ccd81614545565b8114614cd857600080fd5b50565b614ce481614551565b8114614cef57600080fd5b50565b614cfb8161455b565b8114614d0657600080fd5b50565b614d1281614587565b8114614d1d57600080fd5b50565b614d29816145b9565b8114614d3457600080fd5b5056fea26469706673582212207cee96f919508b2ea18bb3239b31a8e1124e0c83d603750734c5a6553a8d947864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000954686520507269646500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003545047000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f47000000000000000000000000d495fe1c0f76b74540437fc5bfb75c04e167093600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000004e

-----Decoded View---------------
Arg [0] : _name (string): The Pride
Arg [1] : _symbol (string): TPG
Arg [2] : _shareholders (address[]): 0x6B99D2B10f3Cc0CE6b871A9F5f94e1ECD6222f47,0xd495fe1c0f76B74540437fC5bfB75C04e1670936
Arg [3] : _shares (uint256[]): 22,78

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 5468652050726964650000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5450470000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 0000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f47
Arg [10] : 000000000000000000000000d495fe1c0f76b74540437fc5bfb75c04e1670936
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [13] : 000000000000000000000000000000000000000000000000000000000000004e


Deployed Bytecode Sourcemap

339:5909:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3374:40:2;3390:12;:10;:12::i;:::-;3404:9;3374:40;;;;;;;:::i;:::-;;;;;;;;339:5909:0;;;;;9155:630:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;659:26:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;603:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5820:655:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19903:2764:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;893:45:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;830:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;533:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3499:89:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22758:187:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3106:83:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3250:72;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6736:775:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1027:33:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3397:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2453:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4209:801;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;970:30:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;707:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:1;;;;;;;;;;;;;:::i;:::-;;3835:208:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4810:98:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;757:33:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4321:107:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5147:425:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4993:222:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1915:203:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3616:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5842:404;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2924:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5369:257:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2738:113:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4124:103:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3921:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2219:111:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;443:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3677:93:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;640:96:7;693:7;719:10;712:17;;640:96;:::o;9155:630:9:-;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;659:26:0:-;;;;:::o;603:34::-;;;;:::o;5894:317:9:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;5820:655:2:-;5914:1;5895:7;:16;5903:7;5895:16;;;;;;;;;;;;;;;;:20;5887:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5969:15;5987:19;5998:7;5987:10;:19::i;:::-;5969:37;;6036:1;6025:7;:12;;6017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6294:7;6276:14;;:25;;;;;;;:::i;:::-;;;;;;;;6357:7;6335:9;:18;6345:7;6335:18;;;;;;;;;;;;;;;;:29;;;;;;;;;;;6385:35;6403:7;6412;6385:17;:35::i;:::-;6435:33;6451:7;6460;6435:33;;;;;;;:::i;:::-;;;;;;;;5877:598;5820:655;:::o;19903:2764:9:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;893:45:0:-;937:1;893:45;:::o;830:25::-;;;;:::o;533:41::-;570:4;533:41;:::o;3499:89:2:-;3543:7;3569:12;;3562:19;;3499:89;:::o;4591:133::-;4661:7;4687:14;:21;4702:5;4687:21;;;;;;;;;;;;;;;:30;4709:7;4687:30;;;;;;;;;;;;;;;;4680:37;;4591:133;;;;:::o;22758:187:9:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;3106:83:0:-;1094:13:1;:11;:13::i;:::-;3180:4:0::1;3167:10;:17;;;;3106:83:::0;:::o;3250:72::-;1094:13:1;:11;:13::i;:::-;3313:4:0::1;3306;:11;;;;3250:72:::0;:::o;6736:775:2:-;6836:1;6817:7;:16;6825:7;6817:16;;;;;;;;;;;;;;;;:20;6809:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6891:15;6909:26;6920:5;6927:7;6909:10;:26::i;:::-;6891:44;;6965:1;6954:7;:12;;6946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7294:7;7264:19;:26;7284:5;7264:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;7369:7;7335:14;:21;7350:5;7335:21;;;;;;;;;;;;;;;:30;7357:7;7335:30;;;;;;;;;;;;;;;;:41;;;;;;;;;;;7397:47;7420:5;7427:7;7436;7397:22;:47::i;:::-;7480:5;7459:45;;;7487:7;7496;7459:45;;;;;;;:::i;:::-;;;;;;;;6799:712;6736:775;;:::o;1027:33:0:-;;;;;;;;;;;;;:::o;3397:86::-;1094:13:1;:11;:13::i;:::-;3474:4:0::1;;3464:7;:14;;;;;;;:::i;:::-;;3397:86:::0;;:::o;2453:211::-;2539:4;2551:13;2594:5;2577:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;2567:34;;;;;;2551:50;;2614:45;2633:6;;2614:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2641:10;;2653:5;2614:18;:45::i;:::-;2607:52;;;2453:211;;;;;:::o;4209:801::-;4290:20;4313:25;4327:10;4313:13;:25::i;:::-;4290:48;;4352:13;;;;;;;;;;;4344:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;4406:33;4420:10;4432:6;;4406:13;:33::i;:::-;4398:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;937:1;4500:4;4485:12;:19;;;;:::i;:::-;:40;;4477:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;570:4;4601;4585:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:34;;4577:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;4698:9;4660:34;4669:12;4683:4;4689;;4660:8;:34::i;:::-;:47;4652:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;4760:1;4753:4;;:8;4745:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;4803:1;4795:4;;:9;;;;;;;:::i;:::-;;;;;;;;4875:1;4867:4;;:9;4863:60;;;4896:5;4880:13;;:21;;;;;;;;;;;;;;;;;;4916:4;4903:10;;:17;;;;;;;;;;;;;;;;;;4863:60;4933:27;4943:10;4955:4;4933:9;:27::i;:::-;4972:33;4991:13;:11;:13::i;:::-;4972:33;;;;;;:::i;:::-;;;;;;;;4284:726;4209:801;;;:::o;11391:150:9:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;970:30:0:-;;;;;;;;;;;;;:::o;707:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:9:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:1:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3835:208:0:-;1094:13:1;:11;:13::i;:::-;3907:4:0::1;3899;;:12;;3891:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3960:4;3952;;:12;;;;;;;:::i;:::-;;;;;;;;3970:23;3976:10;3988:4;3970:5;:23::i;:::-;4005:33;4024:13;:11;:13::i;:::-;4005:33;;;;;;:::i;:::-;;;;;;;;3835:208:::0;:::o;4810:98:2:-;4861:7;4887;4895:5;4887:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4880:21;;4810:98;;;:::o;1201:85:1:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;10208:102:9:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;757:33:0:-;;;;;;;;;;;;;:::o;4321:107:2:-;4377:7;4403:9;:18;4413:7;4403:18;;;;;;;;;;;;;;;;4396:25;;4321:107;;;:::o;5147:425:0:-;5206:10;;;;;;;;;;;5198:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;480:1;5282:4;5254:25;5268:10;5254:13;:25::i;:::-;:32;;;;:::i;:::-;:46;;5246:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;570:4;5373;5357:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:34;;5349:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;5447:9;5439:4;5432;;:11;;;;:::i;:::-;:24;5424:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5495:27;5505:10;5517:4;5495:9;:27::i;:::-;5534:33;5553:13;:11;:13::i;:::-;5534:33;;;;;;:::i;:::-;;;;;;;;5147:425;:::o;16901:231:9:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;4993:222:2:-;5051:7;5070:21;5118:15;:13;:15::i;:::-;5094:21;:39;;;;:::i;:::-;5070:63;;5150:58;5166:7;5175:13;5190:17;5199:7;5190:8;:17::i;:::-;5150:15;:58::i;:::-;5143:65;;;4993:222;;;:::o;1915:203:0:-;2022:7;2092:1;2076:13;:17;:36;;2100:12;2076:36;;;2096:1;2076:36;2060:12;2044:13;:28;;;;:::i;:::-;:69;;;;:::i;:::-;2037:76;;1915:203;;;;;:::o;3616:100::-;1094:13:1;:11;:13::i;:::-;3707:4:0::1;3686:18;;:25;;;;;;;;;;;;;;;;;;3616:100:::0;:::o;5842:404::-;6023:12;:10;:12::i;:::-;6001:34;;:18;;;;;;;;;;;:34;;;5997:192;;6061:19;:17;:19::i;:::-;6053:27;;:4;:27;;;:74;;;;6084:43;6101:4;6107:19;:17;:19::i;:::-;6084:16;:43::i;:::-;6053:74;6045:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;5997:192;6194:47;6217:4;6223:2;6227:7;6236:4;6194:22;:47::i;:::-;5842:404;;;;:::o;2924:122::-;1094:13:1;:11;:13::i;:::-;3001:4:0::1;2985:13;;:20;;;;;;;;;;;;;;;;;;3016:25;3036:4;3016:25;;;;;;:::i;:::-;;;;;;;;2924:122:::0;:::o;5369:257:2:-;5441:7;5460:21;5517:20;5531:5;5517:13;:20::i;:::-;5484:5;:15;;;5508:4;5484:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5460:77;;5554:65;5570:7;5579:13;5594:24;5603:5;5610:7;5594:8;:24::i;:::-;5554:15;:65::i;:::-;5547:72;;;5369:257;;;;:::o;2738:113:0:-;1094:13:1;:11;:13::i;:::-;2809:4:0::1;2796:10;;:17;;;;;;;;;;;;;;;;;;2824:22;2841:4;2824:22;;;;;;:::i;:::-;;;;;;;;2738:113:::0;:::o;10411:313:9:-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;4124:103:2:-;4178:7;4204;:16;4212:7;4204:16;;;;;;;;;;;;;;;;4197:23;;4124:103;;;:::o;3921:117::-;3979:7;4005:19;:26;4025:5;4005:26;;;;;;;;;;;;;;;;3998:33;;3921:117;;;:::o;2219:111:0:-;2281:7;2303:22;2317:7;2303:13;:22::i;:::-;2296:29;;2219:111;;;:::o;443:38::-;480:1;443:38;:::o;3677:93:2:-;3723:7;3749:14;;3742:21;;3677:93;:::o;17282:162:9:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:1:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;17693:277:9:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;5426:90::-;5482:7;5426:90;:::o;2417:312:6:-;2531:6;2506:21;:31;;2498:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2583:12;2601:9;:14;;2623:6;2601:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2582:52;;;2652:7;2644:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2488:241;2417:312;;:::o;12515:1249:9:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;1359:130:1:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;763:205:5:-;875:86;895:5;925:23;;;950:2;954:5;902:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:19;:86::i;:::-;763:205;;;:::o;1153:184:8:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;7352:176:9:-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;2433:187:1:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;27091:2902:9:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;7683:242:2:-;7825:7;7903:15;7888:12;;7868:7;:16;7876:7;7868:16;;;;;;;;;;;;;;;;7852:13;:32;;;;:::i;:::-;7851:49;;;;:::i;:::-;:67;;;;:::i;:::-;7844:74;;7683:242;;;;;:::o;23526:396:9:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;1543:100:0:-;1603:13;1631:7;1624:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1543:100;:::o;39637:1708:9:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;41070:25;;41088:5;;41070:25;40690:419;;;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;3747:706:5:-;4166:23;4192:69;4220:4;4192:69;;;;;;;;;;;;;;;;;4200:5;4192:27;;;;:69;;;;;:::i;:::-;4166:95;;4295:1;4275:10;:17;:21;4271:176;;;4370:10;4359:30;;;;;;;;;;;;:::i;:::-;4351:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4271:176;3817:636;3747:706;;:::o;1991:290:8:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;32675:669:9:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;3878:223:6:-;4011:12;4042:52;4064:6;4072:4;4078:1;4081:12;4042:21;:52::i;:::-;4035:59;;3878:223;;;;;:::o;8054:147:8:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;4965:446:6:-;5130:12;5187:5;5162:21;:30;;5154:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5246:12;5260:23;5287:6;:11;;5306:5;5313:4;5287:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5245:73;;;;5335:69;5362:6;5370:7;5379:10;5391:12;5335:26;:69::i;:::-;5328:76;;;;4965:446;;;;;;:::o;8207:261:8:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;7471:628:6:-;7651:12;7679:7;7675:418;;;7727:1;7706:10;:17;:22;7702:286;;;7921:18;7932:6;7921:10;:18::i;:::-;7913:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;7702:286;8008:10;8001:17;;;;7675:418;8049:33;8057:10;8069:12;8049:7;:33::i;:::-;7471:628;;;;;;;:::o;1180:320::-;1240:4;1492:1;1470:7;:19;;;:23;1463:30;;1180:320;;;:::o;8621:540::-;8800:1;8780:10;:17;:21;8776:379;;;9008:10;9002:17;9064:15;9051:10;9047:2;9043:19;9036:44;8776:379;9131:12;9124:20;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:11:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:155::-;622:5;660:6;647:20;638:29;;676:41;711:5;676:41;:::i;:::-;568:155;;;;:::o;746:568::-;819:8;829:6;879:3;872:4;864:6;860:17;856:27;846:122;;887:79;;:::i;:::-;846:122;1000:6;987:20;977:30;;1030:18;1022:6;1019:30;1016:117;;;1052:79;;:::i;:::-;1016:117;1166:4;1158:6;1154:17;1142:29;;1220:3;1212:4;1204:6;1200:17;1190:8;1186:32;1183:41;1180:128;;;1227:79;;:::i;:::-;1180:128;746:568;;;;;:::o;1320:133::-;1363:5;1401:6;1388:20;1379:29;;1417:30;1441:5;1417:30;:::i;:::-;1320:133;;;;:::o;1459:137::-;1513:5;1544:6;1538:13;1529:22;;1560:30;1584:5;1560:30;:::i;:::-;1459:137;;;;:::o;1602:139::-;1648:5;1686:6;1673:20;1664:29;;1702:33;1729:5;1702:33;:::i;:::-;1602:139;;;;:::o;1747:137::-;1792:5;1830:6;1817:20;1808:29;;1846:32;1872:5;1846:32;:::i;:::-;1747:137;;;;:::o;1890:141::-;1946:5;1977:6;1971:13;1962:22;;1993:32;2019:5;1993:32;:::i;:::-;1890:141;;;;:::o;2050:338::-;2105:5;2154:3;2147:4;2139:6;2135:17;2131:27;2121:122;;2162:79;;:::i;:::-;2121:122;2279:6;2266:20;2304:78;2378:3;2370:6;2363:4;2355:6;2351:17;2304:78;:::i;:::-;2295:87;;2111:277;2050:338;;;;:::o;2394:169::-;2455:5;2493:6;2480:20;2471:29;;2509:48;2551:5;2509:48;:::i;:::-;2394:169;;;;:::o;2583:553::-;2641:8;2651:6;2701:3;2694:4;2686:6;2682:17;2678:27;2668:122;;2709:79;;:::i;:::-;2668:122;2822:6;2809:20;2799:30;;2852:18;2844:6;2841:30;2838:117;;;2874:79;;:::i;:::-;2838:117;2988:4;2980:6;2976:17;2964:29;;3042:3;3034:4;3026:6;3022:17;3012:8;3008:32;3005:41;3002:128;;;3049:79;;:::i;:::-;3002:128;2583:553;;;;;:::o;3142:139::-;3188:5;3226:6;3213:20;3204:29;;3242:33;3269:5;3242:33;:::i;:::-;3142:139;;;;:::o;3287:143::-;3344:5;3375:6;3369:13;3360:22;;3391:33;3418:5;3391:33;:::i;:::-;3287:143;;;;:::o;3436:329::-;3495:6;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3436:329;;;;:::o;3771:345::-;3838:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:119;;;3893:79;;:::i;:::-;3855:119;4013:1;4038:61;4091:7;4082:6;4071:9;4067:22;4038:61;:::i;:::-;4028:71;;3984:125;3771:345;;;;:::o;4122:474::-;4190:6;4198;4247:2;4235:9;4226:7;4222:23;4218:32;4215:119;;;4253:79;;:::i;:::-;4215:119;4373:1;4398:53;4443:7;4434:6;4423:9;4419:22;4398:53;:::i;:::-;4388:63;;4344:117;4500:2;4526:53;4571:7;4562:6;4551:9;4547:22;4526:53;:::i;:::-;4516:63;;4471:118;4122:474;;;;;:::o;4602:619::-;4679:6;4687;4695;4744:2;4732:9;4723:7;4719:23;4715:32;4712:119;;;4750:79;;:::i;:::-;4712:119;4870:1;4895:53;4940:7;4931:6;4920:9;4916:22;4895:53;:::i;:::-;4885:63;;4841:117;4997:2;5023:53;5068:7;5059:6;5048:9;5044:22;5023:53;:::i;:::-;5013:63;;4968:118;5125:2;5151:53;5196:7;5187:6;5176:9;5172:22;5151:53;:::i;:::-;5141:63;;5096:118;4602:619;;;;;:::o;5227:943::-;5322:6;5330;5338;5346;5395:3;5383:9;5374:7;5370:23;5366:33;5363:120;;;5402:79;;:::i;:::-;5363:120;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5649:2;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5620:118;5777:2;5803:53;5848:7;5839:6;5828:9;5824:22;5803:53;:::i;:::-;5793:63;;5748:118;5933:2;5922:9;5918:18;5905:32;5964:18;5956:6;5953:30;5950:117;;;5986:79;;:::i;:::-;5950:117;6091:62;6145:7;6136:6;6125:9;6121:22;6091:62;:::i;:::-;6081:72;;5876:287;5227:943;;;;;;;:::o;6176:704::-;6271:6;6279;6287;6336:2;6324:9;6315:7;6311:23;6307:32;6304:119;;;6342:79;;:::i;:::-;6304:119;6462:1;6487:53;6532:7;6523:6;6512:9;6508:22;6487:53;:::i;:::-;6477:63;;6433:117;6617:2;6606:9;6602:18;6589:32;6648:18;6640:6;6637:30;6634:117;;;6670:79;;:::i;:::-;6634:117;6783:80;6855:7;6846:6;6835:9;6831:22;6783:80;:::i;:::-;6765:98;;;;6560:313;6176:704;;;;;:::o;6886:468::-;6951:6;6959;7008:2;6996:9;6987:7;6983:23;6979:32;6976:119;;;7014:79;;:::i;:::-;6976:119;7134:1;7159:53;7204:7;7195:6;7184:9;7180:22;7159:53;:::i;:::-;7149:63;;7105:117;7261:2;7287:50;7329:7;7320:6;7309:9;7305:22;7287:50;:::i;:::-;7277:60;;7232:115;6886:468;;;;;:::o;7360:474::-;7428:6;7436;7485:2;7473:9;7464:7;7460:23;7456:32;7453:119;;;7491:79;;:::i;:::-;7453:119;7611:1;7636:53;7681:7;7672:6;7661:9;7657:22;7636:53;:::i;:::-;7626:63;;7582:117;7738:2;7764:53;7809:7;7800:6;7789:9;7785:22;7764:53;:::i;:::-;7754:63;;7709:118;7360:474;;;;;:::o;7840:323::-;7896:6;7945:2;7933:9;7924:7;7920:23;7916:32;7913:119;;;7951:79;;:::i;:::-;7913:119;8071:1;8096:50;8138:7;8129:6;8118:9;8114:22;8096:50;:::i;:::-;8086:60;;8042:114;7840:323;;;;:::o;8169:345::-;8236:6;8285:2;8273:9;8264:7;8260:23;8256:32;8253:119;;;8291:79;;:::i;:::-;8253:119;8411:1;8436:61;8489:7;8480:6;8469:9;8465:22;8436:61;:::i;:::-;8426:71;;8382:125;8169:345;;;;:::o;8520:329::-;8579:6;8628:2;8616:9;8607:7;8603:23;8599:32;8596:119;;;8634:79;;:::i;:::-;8596:119;8754:1;8779:53;8824:7;8815:6;8804:9;8800:22;8779:53;:::i;:::-;8769:63;;8725:117;8520:329;;;;:::o;8855:327::-;8913:6;8962:2;8950:9;8941:7;8937:23;8933:32;8930:119;;;8968:79;;:::i;:::-;8930:119;9088:1;9113:52;9157:7;9148:6;9137:9;9133:22;9113:52;:::i;:::-;9103:62;;9059:116;8855:327;;;;:::o;9188:349::-;9257:6;9306:2;9294:9;9285:7;9281:23;9277:32;9274:119;;;9312:79;;:::i;:::-;9274:119;9432:1;9457:63;9512:7;9503:6;9492:9;9488:22;9457:63;:::i;:::-;9447:73;;9403:127;9188:349;;;;:::o;9543:359::-;9617:6;9666:2;9654:9;9645:7;9641:23;9637:32;9634:119;;;9672:79;;:::i;:::-;9634:119;9792:1;9817:68;9877:7;9868:6;9857:9;9853:22;9817:68;:::i;:::-;9807:78;;9763:132;9543:359;;;;:::o;9908:504::-;9991:6;9999;10048:2;10036:9;10027:7;10023:23;10019:32;10016:119;;;10054:79;;:::i;:::-;10016:119;10174:1;10199:68;10259:7;10250:6;10239:9;10235:22;10199:68;:::i;:::-;10189:78;;10145:132;10316:2;10342:53;10387:7;10378:6;10367:9;10363:22;10342:53;:::i;:::-;10332:63;;10287:118;9908:504;;;;;:::o;10418:529::-;10489:6;10497;10546:2;10534:9;10525:7;10521:23;10517:32;10514:119;;;10552:79;;:::i;:::-;10514:119;10700:1;10689:9;10685:17;10672:31;10730:18;10722:6;10719:30;10716:117;;;10752:79;;:::i;:::-;10716:117;10865:65;10922:7;10913:6;10902:9;10898:22;10865:65;:::i;:::-;10847:83;;;;10643:297;10418:529;;;;;:::o;10953:329::-;11012:6;11061:2;11049:9;11040:7;11036:23;11032:32;11029:119;;;11067:79;;:::i;:::-;11029:119;11187:1;11212:53;11257:7;11248:6;11237:9;11233:22;11212:53;:::i;:::-;11202:63;;11158:117;10953:329;;;;:::o;11288:351::-;11358:6;11407:2;11395:9;11386:7;11382:23;11378:32;11375:119;;;11413:79;;:::i;:::-;11375:119;11533:1;11558:64;11614:7;11605:6;11594:9;11590:22;11558:64;:::i;:::-;11548:74;;11504:128;11288:351;;;;:::o;11645:704::-;11740:6;11748;11756;11805:2;11793:9;11784:7;11780:23;11776:32;11773:119;;;11811:79;;:::i;:::-;11773:119;11931:1;11956:53;12001:7;11992:6;11981:9;11977:22;11956:53;:::i;:::-;11946:63;;11902:117;12086:2;12075:9;12071:18;12058:32;12117:18;12109:6;12106:30;12103:117;;;12139:79;;:::i;:::-;12103:117;12252:80;12324:7;12315:6;12304:9;12300:22;12252:80;:::i;:::-;12234:98;;;;12029:313;11645:704;;;;;:::o;12355:619::-;12432:6;12440;12448;12497:2;12485:9;12476:7;12472:23;12468:32;12465:119;;;12503:79;;:::i;:::-;12465:119;12623:1;12648:53;12693:7;12684:6;12673:9;12669:22;12648:53;:::i;:::-;12638:63;;12594:117;12750:2;12776:53;12821:7;12812:6;12801:9;12797:22;12776:53;:::i;:::-;12766:63;;12721:118;12878:2;12904:53;12949:7;12940:6;12929:9;12925:22;12904:53;:::i;:::-;12894:63;;12849:118;12355:619;;;;;:::o;12980:147::-;13075:45;13114:5;13075:45;:::i;:::-;13070:3;13063:58;12980:147;;:::o;13133:118::-;13220:24;13238:5;13220:24;:::i;:::-;13215:3;13208:37;13133:118;;:::o;13257:157::-;13362:45;13382:24;13400:5;13382:24;:::i;:::-;13362:45;:::i;:::-;13357:3;13350:58;13257:157;;:::o;13420:109::-;13501:21;13516:5;13501:21;:::i;:::-;13496:3;13489:34;13420:109;;:::o;13535:118::-;13622:24;13640:5;13622:24;:::i;:::-;13617:3;13610:37;13535:118;;:::o;13659:360::-;13745:3;13773:38;13805:5;13773:38;:::i;:::-;13827:70;13890:6;13885:3;13827:70;:::i;:::-;13820:77;;13906:52;13951:6;13946:3;13939:4;13932:5;13928:16;13906:52;:::i;:::-;13983:29;14005:6;13983:29;:::i;:::-;13978:3;13974:39;13967:46;;13749:270;13659:360;;;;:::o;14025:373::-;14129:3;14157:38;14189:5;14157:38;:::i;:::-;14211:88;14292:6;14287:3;14211:88;:::i;:::-;14204:95;;14308:52;14353:6;14348:3;14341:4;14334:5;14330:16;14308:52;:::i;:::-;14385:6;14380:3;14376:16;14369:23;;14133:265;14025:373;;;;:::o;14404:364::-;14492:3;14520:39;14553:5;14520:39;:::i;:::-;14575:71;14639:6;14634:3;14575:71;:::i;:::-;14568:78;;14655:52;14700:6;14695:3;14688:4;14681:5;14677:16;14655:52;:::i;:::-;14732:29;14754:6;14732:29;:::i;:::-;14727:3;14723:39;14716:46;;14496:272;14404:364;;;;:::o;14774:377::-;14880:3;14908:39;14941:5;14908:39;:::i;:::-;14963:89;15045:6;15040:3;14963:89;:::i;:::-;14956:96;;15061:52;15106:6;15101:3;15094:4;15087:5;15083:16;15061:52;:::i;:::-;15138:6;15133:3;15129:16;15122:23;;14884:267;14774:377;;;;:::o;15157:366::-;15299:3;15320:67;15384:2;15379:3;15320:67;:::i;:::-;15313:74;;15396:93;15485:3;15396:93;:::i;:::-;15514:2;15509:3;15505:12;15498:19;;15157:366;;;:::o;15529:::-;15671:3;15692:67;15756:2;15751:3;15692:67;:::i;:::-;15685:74;;15768:93;15857:3;15768:93;:::i;:::-;15886:2;15881:3;15877:12;15870:19;;15529:366;;;:::o;15901:::-;16043:3;16064:67;16128:2;16123:3;16064:67;:::i;:::-;16057:74;;16140:93;16229:3;16140:93;:::i;:::-;16258:2;16253:3;16249:12;16242:19;;15901:366;;;:::o;16273:::-;16415:3;16436:67;16500:2;16495:3;16436:67;:::i;:::-;16429:74;;16512:93;16601:3;16512:93;:::i;:::-;16630:2;16625:3;16621:12;16614:19;;16273:366;;;:::o;16645:::-;16787:3;16808:67;16872:2;16867:3;16808:67;:::i;:::-;16801:74;;16884:93;16973:3;16884:93;:::i;:::-;17002:2;16997:3;16993:12;16986:19;;16645:366;;;:::o;17017:::-;17159:3;17180:67;17244:2;17239:3;17180:67;:::i;:::-;17173:74;;17256:93;17345:3;17256:93;:::i;:::-;17374:2;17369:3;17365:12;17358:19;;17017:366;;;:::o;17389:::-;17531:3;17552:67;17616:2;17611:3;17552:67;:::i;:::-;17545:74;;17628:93;17717:3;17628:93;:::i;:::-;17746:2;17741:3;17737:12;17730:19;;17389:366;;;:::o;17761:::-;17903:3;17924:67;17988:2;17983:3;17924:67;:::i;:::-;17917:74;;18000:93;18089:3;18000:93;:::i;:::-;18118:2;18113:3;18109:12;18102:19;;17761:366;;;:::o;18133:::-;18275:3;18296:67;18360:2;18355:3;18296:67;:::i;:::-;18289:74;;18372:93;18461:3;18372:93;:::i;:::-;18490:2;18485:3;18481:12;18474:19;;18133:366;;;:::o;18505:::-;18647:3;18668:67;18732:2;18727:3;18668:67;:::i;:::-;18661:74;;18744:93;18833:3;18744:93;:::i;:::-;18862:2;18857:3;18853:12;18846:19;;18505:366;;;:::o;18877:::-;19019:3;19040:67;19104:2;19099:3;19040:67;:::i;:::-;19033:74;;19116:93;19205:3;19116:93;:::i;:::-;19234:2;19229:3;19225:12;19218:19;;18877:366;;;:::o;19249:::-;19391:3;19412:67;19476:2;19471:3;19412:67;:::i;:::-;19405:74;;19488:93;19577:3;19488:93;:::i;:::-;19606:2;19601:3;19597:12;19590:19;;19249:366;;;:::o;19621:::-;19763:3;19784:67;19848:2;19843:3;19784:67;:::i;:::-;19777:74;;19860:93;19949:3;19860:93;:::i;:::-;19978:2;19973:3;19969:12;19962:19;;19621:366;;;:::o;19993:::-;20135:3;20156:67;20220:2;20215:3;20156:67;:::i;:::-;20149:74;;20232:93;20321:3;20232:93;:::i;:::-;20350:2;20345:3;20341:12;20334:19;;19993:366;;;:::o;20365:::-;20507:3;20528:67;20592:2;20587:3;20528:67;:::i;:::-;20521:74;;20604:93;20693:3;20604:93;:::i;:::-;20722:2;20717:3;20713:12;20706:19;;20365:366;;;:::o;20737:::-;20879:3;20900:67;20964:2;20959:3;20900:67;:::i;:::-;20893:74;;20976:93;21065:3;20976:93;:::i;:::-;21094:2;21089:3;21085:12;21078:19;;20737:366;;;:::o;21109:398::-;21268:3;21289:83;21370:1;21365:3;21289:83;:::i;:::-;21282:90;;21381:93;21470:3;21381:93;:::i;:::-;21499:1;21494:3;21490:11;21483:18;;21109:398;;;:::o;21513:366::-;21655:3;21676:67;21740:2;21735:3;21676:67;:::i;:::-;21669:74;;21752:93;21841:3;21752:93;:::i;:::-;21870:2;21865:3;21861:12;21854:19;;21513:366;;;:::o;21885:::-;22027:3;22048:67;22112:2;22107:3;22048:67;:::i;:::-;22041:74;;22124:93;22213:3;22124:93;:::i;:::-;22242:2;22237:3;22233:12;22226:19;;21885:366;;;:::o;22257:::-;22399:3;22420:67;22484:2;22479:3;22420:67;:::i;:::-;22413:74;;22496:93;22585:3;22496:93;:::i;:::-;22614:2;22609:3;22605:12;22598:19;;22257:366;;;:::o;22629:118::-;22716:24;22734:5;22716:24;:::i;:::-;22711:3;22704:37;22629:118;;:::o;22753:256::-;22865:3;22880:75;22951:3;22942:6;22880:75;:::i;:::-;22980:2;22975:3;22971:12;22964:19;;23000:3;22993:10;;22753:256;;;;:::o;23015:271::-;23145:3;23167:93;23256:3;23247:6;23167:93;:::i;:::-;23160:100;;23277:3;23270:10;;23015:271;;;;:::o;23292:435::-;23472:3;23494:95;23585:3;23576:6;23494:95;:::i;:::-;23487:102;;23606:95;23697:3;23688:6;23606:95;:::i;:::-;23599:102;;23718:3;23711:10;;23292:435;;;;;:::o;23733:379::-;23917:3;23939:147;24082:3;23939:147;:::i;:::-;23932:154;;24103:3;24096:10;;23733:379;;;:::o;24118:222::-;24211:4;24249:2;24238:9;24234:18;24226:26;;24262:71;24330:1;24319:9;24315:17;24306:6;24262:71;:::i;:::-;24118:222;;;;:::o;24346:348::-;24475:4;24513:2;24502:9;24498:18;24490:26;;24526:79;24602:1;24591:9;24587:17;24578:6;24526:79;:::i;:::-;24615:72;24683:2;24672:9;24668:18;24659:6;24615:72;:::i;:::-;24346:348;;;;;:::o;24700:640::-;24895:4;24933:3;24922:9;24918:19;24910:27;;24947:71;25015:1;25004:9;25000:17;24991:6;24947:71;:::i;:::-;25028:72;25096:2;25085:9;25081:18;25072:6;25028:72;:::i;:::-;25110;25178:2;25167:9;25163:18;25154:6;25110:72;:::i;:::-;25229:9;25223:4;25219:20;25214:2;25203:9;25199:18;25192:48;25257:76;25328:4;25319:6;25257:76;:::i;:::-;25249:84;;24700:640;;;;;;;:::o;25346:332::-;25467:4;25505:2;25494:9;25490:18;25482:26;;25518:71;25586:1;25575:9;25571:17;25562:6;25518:71;:::i;:::-;25599:72;25667:2;25656:9;25652:18;25643:6;25599:72;:::i;:::-;25346:332;;;;;:::o;25684:210::-;25771:4;25809:2;25798:9;25794:18;25786:26;;25822:65;25884:1;25873:9;25869:17;25860:6;25822:65;:::i;:::-;25684:210;;;;:::o;25900:222::-;25993:4;26031:2;26020:9;26016:18;26008:26;;26044:71;26112:1;26101:9;26097:17;26088:6;26044:71;:::i;:::-;25900:222;;;;:::o;26128:313::-;26241:4;26279:2;26268:9;26264:18;26256:26;;26328:9;26322:4;26318:20;26314:1;26303:9;26299:17;26292:47;26356:78;26429:4;26420:6;26356:78;:::i;:::-;26348:86;;26128:313;;;;:::o;26447:419::-;26613:4;26651:2;26640:9;26636:18;26628:26;;26700:9;26694:4;26690:20;26686:1;26675:9;26671:17;26664:47;26728:131;26854:4;26728:131;:::i;:::-;26720:139;;26447:419;;;:::o;26872:::-;27038:4;27076:2;27065:9;27061:18;27053:26;;27125:9;27119:4;27115:20;27111:1;27100:9;27096:17;27089:47;27153:131;27279:4;27153:131;:::i;:::-;27145:139;;26872:419;;;:::o;27297:::-;27463:4;27501:2;27490:9;27486:18;27478:26;;27550:9;27544:4;27540:20;27536:1;27525:9;27521:17;27514:47;27578:131;27704:4;27578:131;:::i;:::-;27570:139;;27297:419;;;:::o;27722:::-;27888:4;27926:2;27915:9;27911:18;27903:26;;27975:9;27969:4;27965:20;27961:1;27950:9;27946:17;27939:47;28003:131;28129:4;28003:131;:::i;:::-;27995:139;;27722:419;;;:::o;28147:::-;28313:4;28351:2;28340:9;28336:18;28328:26;;28400:9;28394:4;28390:20;28386:1;28375:9;28371:17;28364:47;28428:131;28554:4;28428:131;:::i;:::-;28420:139;;28147:419;;;:::o;28572:::-;28738:4;28776:2;28765:9;28761:18;28753:26;;28825:9;28819:4;28815:20;28811:1;28800:9;28796:17;28789:47;28853:131;28979:4;28853:131;:::i;:::-;28845:139;;28572:419;;;:::o;28997:::-;29163:4;29201:2;29190:9;29186:18;29178:26;;29250:9;29244:4;29240:20;29236:1;29225:9;29221:17;29214:47;29278:131;29404:4;29278:131;:::i;:::-;29270:139;;28997:419;;;:::o;29422:::-;29588:4;29626:2;29615:9;29611:18;29603:26;;29675:9;29669:4;29665:20;29661:1;29650:9;29646:17;29639:47;29703:131;29829:4;29703:131;:::i;:::-;29695:139;;29422:419;;;:::o;29847:::-;30013:4;30051:2;30040:9;30036:18;30028:26;;30100:9;30094:4;30090:20;30086:1;30075:9;30071:17;30064:47;30128:131;30254:4;30128:131;:::i;:::-;30120:139;;29847:419;;;:::o;30272:::-;30438:4;30476:2;30465:9;30461:18;30453:26;;30525:9;30519:4;30515:20;30511:1;30500:9;30496:17;30489:47;30553:131;30679:4;30553:131;:::i;:::-;30545:139;;30272:419;;;:::o;30697:::-;30863:4;30901:2;30890:9;30886:18;30878:26;;30950:9;30944:4;30940:20;30936:1;30925:9;30921:17;30914:47;30978:131;31104:4;30978:131;:::i;:::-;30970:139;;30697:419;;;:::o;31122:::-;31288:4;31326:2;31315:9;31311:18;31303:26;;31375:9;31369:4;31365:20;31361:1;31350:9;31346:17;31339:47;31403:131;31529:4;31403:131;:::i;:::-;31395:139;;31122:419;;;:::o;31547:::-;31713:4;31751:2;31740:9;31736:18;31728:26;;31800:9;31794:4;31790:20;31786:1;31775:9;31771:17;31764:47;31828:131;31954:4;31828:131;:::i;:::-;31820:139;;31547:419;;;:::o;31972:::-;32138:4;32176:2;32165:9;32161:18;32153:26;;32225:9;32219:4;32215:20;32211:1;32200:9;32196:17;32189:47;32253:131;32379:4;32253:131;:::i;:::-;32245:139;;31972:419;;;:::o;32397:::-;32563:4;32601:2;32590:9;32586:18;32578:26;;32650:9;32644:4;32640:20;32636:1;32625:9;32621:17;32614:47;32678:131;32804:4;32678:131;:::i;:::-;32670:139;;32397:419;;;:::o;32822:::-;32988:4;33026:2;33015:9;33011:18;33003:26;;33075:9;33069:4;33065:20;33061:1;33050:9;33046:17;33039:47;33103:131;33229:4;33103:131;:::i;:::-;33095:139;;32822:419;;;:::o;33247:::-;33413:4;33451:2;33440:9;33436:18;33428:26;;33500:9;33494:4;33490:20;33486:1;33475:9;33471:17;33464:47;33528:131;33654:4;33528:131;:::i;:::-;33520:139;;33247:419;;;:::o;33672:::-;33838:4;33876:2;33865:9;33861:18;33853:26;;33925:9;33919:4;33915:20;33911:1;33900:9;33896:17;33889:47;33953:131;34079:4;33953:131;:::i;:::-;33945:139;;33672:419;;;:::o;34097:::-;34263:4;34301:2;34290:9;34286:18;34278:26;;34350:9;34344:4;34340:20;34336:1;34325:9;34321:17;34314:47;34378:131;34504:4;34378:131;:::i;:::-;34370:139;;34097:419;;;:::o;34522:222::-;34615:4;34653:2;34642:9;34638:18;34630:26;;34666:71;34734:1;34723:9;34719:17;34710:6;34666:71;:::i;:::-;34522:222;;;;:::o;34750:129::-;34784:6;34811:20;;:::i;:::-;34801:30;;34840:33;34868:4;34860:6;34840:33;:::i;:::-;34750:129;;;:::o;34885:75::-;34918:6;34951:2;34945:9;34935:19;;34885:75;:::o;34966:307::-;35027:4;35117:18;35109:6;35106:30;35103:56;;;35139:18;;:::i;:::-;35103:56;35177:29;35199:6;35177:29;:::i;:::-;35169:37;;35261:4;35255;35251:15;35243:23;;34966:307;;;:::o;35279:98::-;35330:6;35364:5;35358:12;35348:22;;35279:98;;;:::o;35383:99::-;35435:6;35469:5;35463:12;35453:22;;35383:99;;;:::o;35488:168::-;35571:11;35605:6;35600:3;35593:19;35645:4;35640:3;35636:14;35621:29;;35488:168;;;;:::o;35662:147::-;35763:11;35800:3;35785:18;;35662:147;;;;:::o;35815:169::-;35899:11;35933:6;35928:3;35921:19;35973:4;35968:3;35964:14;35949:29;;35815:169;;;;:::o;35990:148::-;36092:11;36129:3;36114:18;;35990:148;;;;:::o;36144:305::-;36184:3;36203:20;36221:1;36203:20;:::i;:::-;36198:25;;36237:20;36255:1;36237:20;:::i;:::-;36232:25;;36391:1;36323:66;36319:74;36316:1;36313:81;36310:107;;;36397:18;;:::i;:::-;36310:107;36441:1;36438;36434:9;36427:16;;36144:305;;;;:::o;36455:185::-;36495:1;36512:20;36530:1;36512:20;:::i;:::-;36507:25;;36546:20;36564:1;36546:20;:::i;:::-;36541:25;;36585:1;36575:35;;36590:18;;:::i;:::-;36575:35;36632:1;36629;36625:9;36620:14;;36455:185;;;;:::o;36646:348::-;36686:7;36709:20;36727:1;36709:20;:::i;:::-;36704:25;;36743:20;36761:1;36743:20;:::i;:::-;36738:25;;36931:1;36863:66;36859:74;36856:1;36853:81;36848:1;36841:9;36834:17;36830:105;36827:131;;;36938:18;;:::i;:::-;36827:131;36986:1;36983;36979:9;36968:20;;36646:348;;;;:::o;37000:191::-;37040:4;37060:20;37078:1;37060:20;:::i;:::-;37055:25;;37094:20;37112:1;37094:20;:::i;:::-;37089:25;;37133:1;37130;37127:8;37124:34;;;37138:18;;:::i;:::-;37124:34;37183:1;37180;37176:9;37168:17;;37000:191;;;;:::o;37197:96::-;37234:7;37263:24;37281:5;37263:24;:::i;:::-;37252:35;;37197:96;;;:::o;37299:104::-;37344:7;37373:24;37391:5;37373:24;:::i;:::-;37362:35;;37299:104;;;:::o;37409:90::-;37443:7;37486:5;37479:13;37472:21;37461:32;;37409:90;;;:::o;37505:77::-;37542:7;37571:5;37560:16;;37505:77;;;:::o;37588:149::-;37624:7;37664:66;37657:5;37653:78;37642:89;;37588:149;;;:::o;37743:111::-;37795:7;37824:24;37842:5;37824:24;:::i;:::-;37813:35;;37743:111;;;:::o;37860:126::-;37897:7;37937:42;37930:5;37926:54;37915:65;;37860:126;;;:::o;37992:77::-;38029:7;38058:5;38047:16;;37992:77;;;:::o;38075:134::-;38133:9;38166:37;38197:5;38166:37;:::i;:::-;38153:50;;38075:134;;;:::o;38215:126::-;38265:9;38298:37;38329:5;38298:37;:::i;:::-;38285:50;;38215:126;;;:::o;38347:113::-;38397:9;38430:24;38448:5;38430:24;:::i;:::-;38417:37;;38347:113;;;:::o;38466:154::-;38550:6;38545:3;38540;38527:30;38612:1;38603:6;38598:3;38594:16;38587:27;38466:154;;;:::o;38626:307::-;38694:1;38704:113;38718:6;38715:1;38712:13;38704:113;;;38803:1;38798:3;38794:11;38788:18;38784:1;38779:3;38775:11;38768:39;38740:2;38737:1;38733:10;38728:15;;38704:113;;;38835:6;38832:1;38829:13;38826:101;;;38915:1;38906:6;38901:3;38897:16;38890:27;38826:101;38675:258;38626:307;;;:::o;38939:320::-;38983:6;39020:1;39014:4;39010:12;39000:22;;39067:1;39061:4;39057:12;39088:18;39078:81;;39144:4;39136:6;39132:17;39122:27;;39078:81;39206:2;39198:6;39195:14;39175:18;39172:38;39169:84;;;39225:18;;:::i;:::-;39169:84;38990:269;38939:320;;;:::o;39265:281::-;39348:27;39370:4;39348:27;:::i;:::-;39340:6;39336:40;39478:6;39466:10;39463:22;39442:18;39430:10;39427:34;39424:62;39421:88;;;39489:18;;:::i;:::-;39421:88;39529:10;39525:2;39518:22;39308:238;39265:281;;:::o;39552:233::-;39591:3;39614:24;39632:5;39614:24;:::i;:::-;39605:33;;39660:66;39653:5;39650:77;39647:103;;;39730:18;;:::i;:::-;39647:103;39777:1;39770:5;39766:13;39759:20;;39552:233;;;:::o;39791:100::-;39830:7;39859:26;39879:5;39859:26;:::i;:::-;39848:37;;39791:100;;;:::o;39897:94::-;39936:7;39965:20;39979:5;39965:20;:::i;:::-;39954:31;;39897:94;;;:::o;39997:180::-;40045:77;40042:1;40035:88;40142:4;40139:1;40132:15;40166:4;40163:1;40156:15;40183:180;40231:77;40228:1;40221:88;40328:4;40325:1;40318:15;40352:4;40349:1;40342:15;40369:180;40417:77;40414:1;40407:88;40514:4;40511:1;40504:15;40538:4;40535:1;40528:15;40555:180;40603:77;40600:1;40593:88;40700:4;40697:1;40690:15;40724:4;40721:1;40714:15;40741:180;40789:77;40786:1;40779:88;40886:4;40883:1;40876:15;40910:4;40907:1;40900:15;40927:117;41036:1;41033;41026:12;41050:117;41159:1;41156;41149:12;41173:117;41282:1;41279;41272:12;41296:117;41405:1;41402;41395:12;41419:117;41528:1;41525;41518:12;41542:117;41651:1;41648;41641:12;41665:102;41706:6;41757:2;41753:7;41748:2;41741:5;41737:14;41733:28;41723:38;;41665:102;;;:::o;41773:94::-;41806:8;41854:5;41850:2;41846:14;41825:35;;41773:94;;;:::o;41873:177::-;42013:29;42009:1;42001:6;41997:14;41990:53;41873:177;:::o;42056:228::-;42196:34;42192:1;42184:6;42180:14;42173:58;42265:11;42260:2;42252:6;42248:15;42241:36;42056:228;:::o;42290:180::-;42430:32;42426:1;42418:6;42414:14;42407:56;42290:180;:::o;42476:225::-;42616:34;42612:1;42604:6;42600:14;42593:58;42685:8;42680:2;42672:6;42668:15;42661:33;42476:225;:::o;42707:::-;42847:34;42843:1;42835:6;42831:14;42824:58;42916:8;42911:2;42903:6;42899:15;42892:33;42707:225;:::o;42938:::-;43078:34;43074:1;43066:6;43062:14;43055:58;43147:8;43142:2;43134:6;43130:15;43123:33;42938:225;:::o;43169:245::-;43309:34;43305:1;43297:6;43293:14;43286:58;43378:28;43373:2;43365:6;43361:15;43354:53;43169:245;:::o;43420:179::-;43560:31;43556:1;43548:6;43544:14;43537:55;43420:179;:::o;43605:225::-;43745:34;43741:1;43733:6;43729:14;43722:58;43814:8;43809:2;43801:6;43797:15;43790:33;43605:225;:::o;43836:230::-;43976:34;43972:1;43964:6;43960:14;43953:58;44045:13;44040:2;44032:6;44028:15;44021:38;43836:230;:::o;44072:172::-;44212:24;44208:1;44200:6;44196:14;44189:48;44072:172;:::o;44250:168::-;44390:20;44386:1;44378:6;44374:14;44367:44;44250:168;:::o;44424:182::-;44564:34;44560:1;44552:6;44548:14;44541:58;44424:182;:::o;44612:237::-;44752:34;44748:1;44740:6;44736:14;44729:58;44821:20;44816:2;44808:6;44804:15;44797:45;44612:237;:::o;44855:169::-;44995:21;44991:1;44983:6;44979:14;44972:45;44855:169;:::o;45030:177::-;45170:29;45166:1;45158:6;45154:14;45147:53;45030:177;:::o;45213:114::-;;:::o;45333:179::-;45473:31;45469:1;45461:6;45457:14;45450:55;45333:179;:::o;45518:172::-;45658:24;45654:1;45646:6;45642:14;45635:48;45518:172;:::o;45696:229::-;45836:34;45832:1;45824:6;45820:14;45813:58;45905:12;45900:2;45892:6;45888:15;45881:37;45696:229;:::o;45931:122::-;46004:24;46022:5;46004:24;:::i;:::-;45997:5;45994:35;45984:63;;46043:1;46040;46033:12;45984:63;45931:122;:::o;46059:138::-;46140:32;46166:5;46140:32;:::i;:::-;46133:5;46130:43;46120:71;;46187:1;46184;46177:12;46120:71;46059:138;:::o;46203:116::-;46273:21;46288:5;46273:21;:::i;:::-;46266:5;46263:32;46253:60;;46309:1;46306;46299:12;46253:60;46203:116;:::o;46325:122::-;46398:24;46416:5;46398:24;:::i;:::-;46391:5;46388:35;46378:63;;46437:1;46434;46427:12;46378:63;46325:122;:::o;46453:120::-;46525:23;46542:5;46525:23;:::i;:::-;46518:5;46515:34;46505:62;;46563:1;46560;46553:12;46505:62;46453:120;:::o;46579:152::-;46667:39;46700:5;46667:39;:::i;:::-;46660:5;46657:50;46647:78;;46721:1;46718;46711:12;46647:78;46579:152;:::o;46737:122::-;46810:24;46828:5;46810:24;:::i;:::-;46803:5;46800:35;46790:63;;46849:1;46846;46839:12;46790:63;46737:122;:::o

Swarm Source

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