ETH Price: $3,669.46 (+0.81%)

Token

UERII (UERII)
 

Overview

Max Total Supply

31,000,000,000 UERII

Holders

365 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (+0.12%)

Onchain Market Cap

$41,592,700.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 UERII

Value
$0.00
0x5532f8b6f7ec0ef4f9fc7aa6f73713f1170e1592
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

UERII was created to be the advanced platform capable of implementing the learning process with customized experiences, ready to enter the metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UERII

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-22
*/

// File: @openzeppelin/contracts/utils/math/SafeCast.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/SafeCast.sol)

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     *
     * _Available since v4.7._
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits");
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     *
     * _Available since v4.7._
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits");
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     *
     * _Available since v4.7._
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits");
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     *
     * _Available since v4.2._
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     *
     * _Available since v4.7._
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits");
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     *
     * _Available since v4.7._
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits");
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     *
     * _Available since v4.7._
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits");
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     *
     * _Available since v4.7._
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits");
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     *
     * _Available since v4.7._
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits");
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     *
     * _Available since v4.7._
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits");
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     *
     * _Available since v4.7._
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits");
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     *
     * _Available since v4.7._
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits");
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     *
     * _Available since v4.7._
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits");
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     *
     * _Available since v4.7._
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits");
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     *
     * _Available since v4.7._
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits");
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v2.5._
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     *
     * _Available since v4.7._
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits");
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     *
     * _Available since v4.7._
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits");
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     *
     * _Available since v4.7._
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits");
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     *
     * _Available since v4.2._
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     *
     * _Available since v4.7._
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits");
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     *
     * _Available since v4.7._
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits");
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     *
     * _Available since v4.7._
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits");
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v2.5._
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     *
     * _Available since v4.7._
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits");
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     *
     * _Available since v4.7._
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits");
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     *
     * _Available since v4.7._
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits");
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v2.5._
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     *
     * _Available since v4.7._
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits");
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v2.5._
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     *
     * _Available since v2.5._
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     *
     * _Available since v3.0._
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     *
     * _Available since v4.7._
     */
    function toInt248(int256 value) internal pure returns (int248) {
        require(value >= type(int248).min && value <= type(int248).max, "SafeCast: value doesn't fit in 248 bits");
        return int248(value);
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     *
     * _Available since v4.7._
     */
    function toInt240(int256 value) internal pure returns (int240) {
        require(value >= type(int240).min && value <= type(int240).max, "SafeCast: value doesn't fit in 240 bits");
        return int240(value);
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     *
     * _Available since v4.7._
     */
    function toInt232(int256 value) internal pure returns (int232) {
        require(value >= type(int232).min && value <= type(int232).max, "SafeCast: value doesn't fit in 232 bits");
        return int232(value);
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     *
     * _Available since v4.7._
     */
    function toInt224(int256 value) internal pure returns (int224) {
        require(value >= type(int224).min && value <= type(int224).max, "SafeCast: value doesn't fit in 224 bits");
        return int224(value);
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     *
     * _Available since v4.7._
     */
    function toInt216(int256 value) internal pure returns (int216) {
        require(value >= type(int216).min && value <= type(int216).max, "SafeCast: value doesn't fit in 216 bits");
        return int216(value);
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     *
     * _Available since v4.7._
     */
    function toInt208(int256 value) internal pure returns (int208) {
        require(value >= type(int208).min && value <= type(int208).max, "SafeCast: value doesn't fit in 208 bits");
        return int208(value);
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     *
     * _Available since v4.7._
     */
    function toInt200(int256 value) internal pure returns (int200) {
        require(value >= type(int200).min && value <= type(int200).max, "SafeCast: value doesn't fit in 200 bits");
        return int200(value);
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     *
     * _Available since v4.7._
     */
    function toInt192(int256 value) internal pure returns (int192) {
        require(value >= type(int192).min && value <= type(int192).max, "SafeCast: value doesn't fit in 192 bits");
        return int192(value);
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     *
     * _Available since v4.7._
     */
    function toInt184(int256 value) internal pure returns (int184) {
        require(value >= type(int184).min && value <= type(int184).max, "SafeCast: value doesn't fit in 184 bits");
        return int184(value);
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     *
     * _Available since v4.7._
     */
    function toInt176(int256 value) internal pure returns (int176) {
        require(value >= type(int176).min && value <= type(int176).max, "SafeCast: value doesn't fit in 176 bits");
        return int176(value);
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     *
     * _Available since v4.7._
     */
    function toInt168(int256 value) internal pure returns (int168) {
        require(value >= type(int168).min && value <= type(int168).max, "SafeCast: value doesn't fit in 168 bits");
        return int168(value);
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     *
     * _Available since v4.7._
     */
    function toInt160(int256 value) internal pure returns (int160) {
        require(value >= type(int160).min && value <= type(int160).max, "SafeCast: value doesn't fit in 160 bits");
        return int160(value);
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     *
     * _Available since v4.7._
     */
    function toInt152(int256 value) internal pure returns (int152) {
        require(value >= type(int152).min && value <= type(int152).max, "SafeCast: value doesn't fit in 152 bits");
        return int152(value);
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     *
     * _Available since v4.7._
     */
    function toInt144(int256 value) internal pure returns (int144) {
        require(value >= type(int144).min && value <= type(int144).max, "SafeCast: value doesn't fit in 144 bits");
        return int144(value);
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     *
     * _Available since v4.7._
     */
    function toInt136(int256 value) internal pure returns (int136) {
        require(value >= type(int136).min && value <= type(int136).max, "SafeCast: value doesn't fit in 136 bits");
        return int136(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     *
     * _Available since v4.7._
     */
    function toInt120(int256 value) internal pure returns (int120) {
        require(value >= type(int120).min && value <= type(int120).max, "SafeCast: value doesn't fit in 120 bits");
        return int120(value);
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     *
     * _Available since v4.7._
     */
    function toInt112(int256 value) internal pure returns (int112) {
        require(value >= type(int112).min && value <= type(int112).max, "SafeCast: value doesn't fit in 112 bits");
        return int112(value);
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     *
     * _Available since v4.7._
     */
    function toInt104(int256 value) internal pure returns (int104) {
        require(value >= type(int104).min && value <= type(int104).max, "SafeCast: value doesn't fit in 104 bits");
        return int104(value);
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     *
     * _Available since v4.7._
     */
    function toInt96(int256 value) internal pure returns (int96) {
        require(value >= type(int96).min && value <= type(int96).max, "SafeCast: value doesn't fit in 96 bits");
        return int96(value);
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     *
     * _Available since v4.7._
     */
    function toInt88(int256 value) internal pure returns (int88) {
        require(value >= type(int88).min && value <= type(int88).max, "SafeCast: value doesn't fit in 88 bits");
        return int88(value);
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     *
     * _Available since v4.7._
     */
    function toInt80(int256 value) internal pure returns (int80) {
        require(value >= type(int80).min && value <= type(int80).max, "SafeCast: value doesn't fit in 80 bits");
        return int80(value);
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     *
     * _Available since v4.7._
     */
    function toInt72(int256 value) internal pure returns (int72) {
        require(value >= type(int72).min && value <= type(int72).max, "SafeCast: value doesn't fit in 72 bits");
        return int72(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     *
     * _Available since v4.7._
     */
    function toInt56(int256 value) internal pure returns (int56) {
        require(value >= type(int56).min && value <= type(int56).max, "SafeCast: value doesn't fit in 56 bits");
        return int56(value);
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     *
     * _Available since v4.7._
     */
    function toInt48(int256 value) internal pure returns (int48) {
        require(value >= type(int48).min && value <= type(int48).max, "SafeCast: value doesn't fit in 48 bits");
        return int48(value);
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     *
     * _Available since v4.7._
     */
    function toInt40(int256 value) internal pure returns (int40) {
        require(value >= type(int40).min && value <= type(int40).max, "SafeCast: value doesn't fit in 40 bits");
        return int40(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     *
     * _Available since v4.7._
     */
    function toInt24(int256 value) internal pure returns (int24) {
        require(value >= type(int24).min && value <= type(int24).max, "SafeCast: value doesn't fit in 24 bits");
        return int24(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     *
     * _Available since v3.0._
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

// File: @openzeppelin/contracts/governance/utils/IVotes.sol


// OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol)
pragma solidity ^0.8.0;

/**
 * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.
 *
 * _Available since v4.5._
 */
interface IVotes {
    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Returns the current amount of votes that `account` has.
     */
    function getVotes(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).
     */
    function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).
     *
     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
     * Votes that have not been delegated are still part of total supply, even though they would not participate in a
     * vote.
     */
    function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the delegate that `account` has chosen.
     */
    function delegates(address account) external view returns (address);

    /**
     * @dev Delegates votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) external;

    /**
     * @dev Delegates votes from signer to `delegatee`.
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 1;
        }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/utils/cryptography/draft-EIP712.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// 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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;






/**
 * @dev Implementation 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.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Votes.sol)

pragma solidity ^0.8.0;






/**
 * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
 * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
 *
 * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
 *
 * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
 * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
 * power can be queried through the public accessors {getVotes} and {getPastVotes}.
 *
 * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
 * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
 *
 * _Available since v4.2._
 */
abstract contract ERC20Votes is IVotes, ERC20Permit {
    struct Checkpoint {
        uint32 fromBlock;
        uint224 votes;
    }

    bytes32 private constant _DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    mapping(address => address) private _delegates;
    mapping(address => Checkpoint[]) private _checkpoints;
    Checkpoint[] private _totalSupplyCheckpoints;

    /**
     * @dev Get the `pos`-th checkpoint for `account`.
     */
    function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) {
        return _checkpoints[account][pos];
    }

    /**
     * @dev Get number of checkpoints for `account`.
     */
    function numCheckpoints(address account) public view virtual returns (uint32) {
        return SafeCast.toUint32(_checkpoints[account].length);
    }

    /**
     * @dev Get the address `account` is currently delegating to.
     */
    function delegates(address account) public view virtual override returns (address) {
        return _delegates[account];
    }

    /**
     * @dev Gets the current votes balance for `account`
     */
    function getVotes(address account) public view virtual override returns (uint256) {
        uint256 pos = _checkpoints[account].length;
        return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes;
    }

    /**
     * @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastVotes(address account, uint256 blockNumber) public view virtual override returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_checkpoints[account], blockNumber);
    }

    /**
     * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
     * It is but NOT the sum of all the delegated votes!
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastTotalSupply(uint256 blockNumber) public view virtual override returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
    }

    /**
     * @dev Lookup a value in a list of (sorted) checkpoints.
     */
    function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) {
        // We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
        //
        // During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
        // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
        // - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
        // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
        // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
        // out of bounds (in which case we're looking too far in the past and the result is 0).
        // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
        // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
        // the same.
        uint256 high = ckpts.length;
        uint256 low = 0;
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (ckpts[mid].fromBlock > blockNumber) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        return high == 0 ? 0 : ckpts[high - 1].votes;
    }

    /**
     * @dev Delegate votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) public virtual override {
        _delegate(_msgSender(), delegatee);
    }

    /**
     * @dev Delegates votes from signer to `delegatee`
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= expiry, "ERC20Votes: signature expired");
        address signer = ECDSA.recover(
            _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))),
            v,
            r,
            s
        );
        require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce");
        _delegate(signer, delegatee);
    }

    /**
     * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1).
     */
    function _maxSupply() internal view virtual returns (uint224) {
        return type(uint224).max;
    }

    /**
     * @dev Snapshots the totalSupply after it has been increased.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        super._mint(account, amount);
        require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes");

        _writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
    }

    /**
     * @dev Snapshots the totalSupply after it has been decreased.
     */
    function _burn(address account, uint256 amount) internal virtual override {
        super._burn(account, amount);

        _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
    }

    /**
     * @dev Move voting power when tokens are transferred.
     *
     * Emits a {DelegateVotesChanged} event.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._afterTokenTransfer(from, to, amount);

        _moveVotingPower(delegates(from), delegates(to), amount);
    }

    /**
     * @dev Change delegation for `delegator` to `delegatee`.
     *
     * Emits events {DelegateChanged} and {DelegateVotesChanged}.
     */
    function _delegate(address delegator, address delegatee) internal virtual {
        address currentDelegate = delegates(delegator);
        uint256 delegatorBalance = balanceOf(delegator);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveVotingPower(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveVotingPower(
        address src,
        address dst,
        uint256 amount
    ) private {
        if (src != dst && amount > 0) {
            if (src != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount);
                emit DelegateVotesChanged(src, oldWeight, newWeight);
            }

            if (dst != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
                emit DelegateVotesChanged(dst, oldWeight, newWeight);
            }
        }
    }

    function _writeCheckpoint(
        Checkpoint[] storage ckpts,
        function(uint256, uint256) view returns (uint256) op,
        uint256 delta
    ) private returns (uint256 oldWeight, uint256 newWeight) {
        uint256 pos = ckpts.length;
        oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes;
        newWeight = op(oldWeight, delta);

        if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) {
            ckpts[pos - 1].votes = SafeCast.toUint224(newWeight);
        } else {
            ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)}));
        }
    }

    function _add(uint256 a, uint256 b) private pure returns (uint256) {
        return a + b;
    }

    function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
        return a - b;
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/uerii.sol


pragma solidity ^0.8.4;







/// @custom:security-contact [email protected]
contract UERII is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit, ERC20Votes {
    uint256 totalAmountMintable;
	
	constructor() ERC20("UERII", "UERII") ERC20Permit("UERII") {
		totalAmountMintable = 100000000000 * 10 ** decimals();   
	}

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

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

    function mint(address to, uint256 amount) public onlyOwner {
        uint256 checkAmount = amount + totalSupply();
		if (checkAmount <= totalAmountMintable) {
			_mint(to, amount);
		}
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }

    // The following functions are overrides required by Solidity.

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._afterTokenTransfer(from, to, amount);
    }

    function _mint(address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._mint(to, amount);
    }

    function _burn(address account, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._burn(account, amount);
		totalAmountMintable = totalAmountMintable - amount;
    }

    function getTotalAmountMintable() public view returns (uint256)
    {
	    return totalAmountMintable;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalAmountMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040523480156200001257600080fd5b506040518060400160405280600581526020017f5545524949000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f55455249490000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f55455249490000000000000000000000000000000000000000000000000000008152508160039081620000fd9190620005c9565b5080600490816200010f9190620005c9565b5050506000600560006101000a81548160ff0219169083151502179055506200014d620001416200023c60201b60201c565b6200024460201b60201c565b60008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001b68184846200030a60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050806101208181525050505050505050620002106200034660201b60201c565b600a6200021e919062000840565b64174876e80062000230919062000891565b600b81905550620009aa565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008383834630604051602001620003279594939291906200094d565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003d157607f821691505b602082108103620003e757620003e662000389565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000412565b6200045d868362000412565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004aa620004a46200049e8462000475565b6200047f565b62000475565b9050919050565b6000819050919050565b620004c68362000489565b620004de620004d582620004b1565b8484546200041f565b825550505050565b600090565b620004f5620004e6565b62000502818484620004bb565b505050565b5b818110156200052a576200051e600082620004eb565b60018101905062000508565b5050565b601f82111562000579576200054381620003ed565b6200054e8462000402565b810160208510156200055e578190505b620005766200056d8562000402565b83018262000507565b50505b505050565b600082821c905092915050565b60006200059e600019846008026200057e565b1980831691505092915050565b6000620005b983836200058b565b9150826002028217905092915050565b620005d4826200034f565b67ffffffffffffffff811115620005f057620005ef6200035a565b5b620005fc8254620003b8565b620006098282856200052e565b600060209050601f8311600181146200064157600084156200062c578287015190505b620006388582620005ab565b865550620006a8565b601f1984166200065186620003ed565b60005b828110156200067b5784890151825560018201915060208501945060208101905062000654565b868310156200069b578489015162000697601f8916826200058b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200073e57808604811115620007165762000715620006b0565b5b6001851615620007265780820291505b80810290506200073685620006df565b9450620006f6565b94509492505050565b6000826200075957600190506200082c565b816200076957600090506200082c565b81600181146200078257600281146200078d57620007c3565b60019150506200082c565b60ff841115620007a257620007a1620006b0565b5b8360020a915084821115620007bc57620007bb620006b0565b5b506200082c565b5060208310610133831016604e8410600b8410161715620007fd5782820a905083811115620007f757620007f6620006b0565b5b6200082c565b6200080c8484846001620006ec565b92509050818404811115620008265762000825620006b0565b5b81810290505b9392505050565b600060ff82169050919050565b60006200084d8262000475565b91506200085a8362000833565b9250620008897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000747565b905092915050565b60006200089e8262000475565b9150620008ab8362000475565b9250828202620008bb8162000475565b91508282048414831517620008d557620008d4620006b0565b5b5092915050565b6000819050919050565b620008f181620008dc565b82525050565b620009028162000475565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009358262000908565b9050919050565b620009478162000928565b82525050565b600060a082019050620009646000830188620008e6565b620009736020830187620008e6565b620009826040830186620008e6565b620009916060830185620008f7565b620009a060808301846200093c565b9695505050505050565b60805160a05160c05160e05161010051610120516141cf620009fa600039600061170d0152600061174f0152600061172e01526000611663015260006116b9015260006116e201526141cf6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf146105cf578063dd62ed3e146105eb578063f1127ed81461061b578063f2fde38b1461064b576101f0565b8063a457c2d714610535578063a55ad3aa14610565578063a9059cbb14610583578063c3cda520146105b3576101f0565b80638da5cb5b116100de5780638da5cb5b146104995780638e539e8c146104b757806395d89b41146104e75780639ab24eb014610505576101f0565b8063715018a61461043957806379cc6790146104435780637ecebe001461045f5780638456cb591461048f576101f0565b80633f4ba83a116101875780635c19a95c116101565780635c19a95c1461039f5780635c975abb146103bb5780636fcfff45146103d957806370a0823114610409576101f0565b80633f4ba83a1461032d57806340c10f191461033757806342966c6814610353578063587cde1e1461036f576101f0565b8063313ce567116101c3578063313ce567146102915780633644e515146102af57806339509351146102cd5780633a46b1a8146102fd576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461024357806323b872dd14610261575b600080fd5b6101fd610667565b60405161020a9190612b28565b60405180910390f35b61022d60048036038101906102289190612be3565b6106f9565b60405161023a9190612c3e565b60405180910390f35b61024b61071c565b6040516102589190612c68565b60405180910390f35b61027b60048036038101906102769190612c83565b610726565b6040516102889190612c3e565b60405180910390f35b610299610755565b6040516102a69190612cf2565b60405180910390f35b6102b761075e565b6040516102c49190612d26565b60405180910390f35b6102e760048036038101906102e29190612be3565b61076d565b6040516102f49190612c3e565b60405180910390f35b61031760048036038101906103129190612be3565b6107a4565b6040516103249190612c68565b60405180910390f35b610335610838565b005b610351600480360381019061034c9190612be3565b61084a565b005b61036d60048036038101906103689190612d41565b610882565b005b61038960048036038101906103849190612d6e565b610896565b6040516103969190612daa565b60405180910390f35b6103b960048036038101906103b49190612d6e565b6108ff565b005b6103c3610913565b6040516103d09190612c3e565b60405180910390f35b6103f360048036038101906103ee9190612d6e565b61092a565b6040516104009190612de4565b60405180910390f35b610423600480360381019061041e9190612d6e565b61097e565b6040516104309190612c68565b60405180910390f35b6104416109c6565b005b61045d60048036038101906104589190612be3565b6109da565b005b61047960048036038101906104749190612d6e565b6109fa565b6040516104869190612c68565b60405180910390f35b610497610a4a565b005b6104a1610a5c565b6040516104ae9190612daa565b60405180910390f35b6104d160048036038101906104cc9190612d41565b610a86565b6040516104de9190612c68565b60405180910390f35b6104ef610adc565b6040516104fc9190612b28565b60405180910390f35b61051f600480360381019061051a9190612d6e565b610b6e565b60405161052c9190612c68565b60405180910390f35b61054f600480360381019061054a9190612be3565b610c7f565b60405161055c9190612c3e565b60405180910390f35b61056d610cf6565b60405161057a9190612c68565b60405180910390f35b61059d60048036038101906105989190612be3565b610d00565b6040516105aa9190612c3e565b60405180910390f35b6105cd60048036038101906105c89190612e57565b610d23565b005b6105e960048036038101906105e49190612ee4565b610e27565b005b61060560048036038101906106009190612f86565b610f69565b6040516106129190612c68565b60405180910390f35b61063560048036038101906106309190612ff2565b610ff0565b60405161064291906130a7565b60405180910390f35b61066560048036038101906106609190612d6e565b611100565b005b606060038054610676906130f1565b80601f01602080910402602001604051908101604052809291908181526020018280546106a2906130f1565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b600080610704611183565b905061071181858561118b565b600191505092915050565b6000600254905090565b600080610731611183565b905061073e858285611354565b6107498585856113e0565b60019150509392505050565b60006012905090565b600061076861165f565b905090565b600080610778611183565b905061079981858561078a8589610f69565b6107949190613151565b61118b565b600191505092915050565b60004382106107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df906131d1565b60405180910390fd5b610830600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611779565b905092915050565b610840611885565b610848611903565b565b610852611885565b600061085c61071c565b826108679190613151565b9050600b54811161087d5761087c8383611966565b5b505050565b61089361088d611183565b82611974565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61091061090a611183565b82611996565b50565b6000600560009054906101000a900460ff16905090565b6000610977600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611ab0565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ce611885565b6109d86000611b03565b565b6109ec826109e6611183565b83611354565b6109f68282611974565b5050565b6000610a43600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611bc9565b9050919050565b610a52611885565b610a5a611bd7565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906131d1565b60405180910390fd5b610ad5600a83611779565b9050919050565b606060048054610aeb906130f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b17906130f1565b8015610b645780601f10610b3957610100808354040283529160200191610b64565b820191906000526020600020905b815481529060010190602001808311610b4757829003601f168201915b5050505050905090565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610c5657600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610c0a91906131f1565b81548110610c1b57610c1a613225565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610c59565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610c8a611183565b90506000610c988286610f69565b905083811015610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906132c6565b60405180910390fd5b610cea828686840361118b565b60019250505092915050565b6000600b54905090565b600080610d0b611183565b9050610d188185856113e0565b600191505092915050565b83421115610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613332565b60405180910390fd5b6000610dc8610dc07fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610da59493929190613352565b60405160208183030381529060405280519060200120611c3a565b858585611c54565b9050610dd381611c7f565b8614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906133e3565b60405180910390fd5b610e1e8188611996565b50505050505050565b83421115610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e619061344f565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610e998c611c7f565b89604051602001610eaf9695949392919061346f565b6040516020818303038152906040528051906020012090506000610ed282611c3a565b90506000610ee282878787611c54565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f499061351c565b60405180910390fd5b610f5d8a8a8a61118b565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff8612a5a565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff168154811061104f5761104e613225565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b611108611885565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906135ae565b60405180910390fd5b61118081611b03565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613640565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906136d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113479190612c68565b60405180910390a3505050565b60006113608484610f69565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113da57818110156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c39061373e565b60405180910390fd5b6113d9848484840361118b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906137d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590613862565b60405180910390fd5b6114c9838383611cdd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561154f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611546906138f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e29190613151565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116469190612c68565b60405180910390a3611659848484611cf5565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156116db57507f000000000000000000000000000000000000000000000000000000000000000046145b15611708577f00000000000000000000000000000000000000000000000000000000000000009050611776565b6117737f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611d05565b90505b90565b6000808380549050905060005b818110156117f857600061179a8284611d3f565b9050848682815481106117b0576117af613225565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156117e2578092506117f2565b6001816117ef9190613151565b91505b50611786565b6000821461185a578460018361180e91906131f1565b8154811061181f5761181e613225565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661185d565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b61188d611183565b73ffffffffffffffffffffffffffffffffffffffff166118ab610a5c565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890613960565b60405180910390fd5b565b61190b611d65565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61194f611183565b60405161195c9190612daa565b60405180910390a1565b6119708282611dae565b5050565b61197e8282611e3b565b80600b5461198c91906131f1565b600b819055505050565b60006119a183610896565b905060006119ae8461097e565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611aaa828483611e59565b50505050565b600063ffffffff8016821115611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af2906139f2565b60405180910390fd5b819050919050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611bdf612052565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c23611183565b604051611c309190612daa565b60405180910390a1565b6000611c4d611c4761165f565b8361209c565b9050919050565b6000806000611c65878787876120cf565b91509150611c72816121db565b8192505050949350505050565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611ccc81611bc9565b9150611cd7816123a7565b50919050565b611ce5612052565b611cf08383836123bd565b505050565b611d008383836123c2565b505050565b60008383834630604051602001611d20959493929190613a12565b6040516020818303038152906040528051906020012090509392505050565b60006002828418611d509190613a94565b828416611d5d9190613151565b905092915050565b611d6d610913565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613b11565b60405180910390fd5b565b611db882826123ed565b611dc061254c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611de661071c565b1115611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e90613ba3565b60405180910390fd5b611e35600a61257083612586565b50505050565b611e4582826127fe565b611e53600a6129d483612586565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e955750600081115b1561204d57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f7357600080611f1c600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129d485612586565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611f68929190613bc3565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461204c57600080611ff5600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061257085612586565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612041929190613bc3565b60405180910390a250505b5b505050565b61205a610913565b1561209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190613c38565b60405180910390fd5b565b600082826040516020016120b1929190613cd0565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561210a5760006003915091506121d2565b601b8560ff16141580156121225750601c8560ff1614155b156121345760006004915091506121d2565b6000600187878787604051600081526020016040526040516121599493929190613d07565b6020604051602081039080840390855afa15801561217b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121c9576000600192509250506121d2565b80600092509250505b94509492505050565b600060048111156121ef576121ee613d4c565b5b81600481111561220257612201613d4c565b5b03156123a4576001600481111561221c5761221b613d4c565b5b81600481111561222f5761222e613d4c565b5b0361226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690613dc7565b60405180910390fd5b6002600481111561228357612282613d4c565b5b81600481111561229657612295613d4c565b5b036122d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cd90613e33565b60405180910390fd5b600360048111156122ea576122e9613d4c565b5b8160048111156122fd576122fc613d4c565b5b0361233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490613ec5565b60405180910390fd5b6004808111156123505761234f613d4c565b5b81600481111561236357612362613d4c565b5b036123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90613f57565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b505050565b6123cd8383836129ea565b6123e86123d984610896565b6123e284610896565b83611e59565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390613fc3565b60405180910390fd5b61246860008383611cdd565b806002600082825461247a9190613151565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124cf9190613151565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125349190612c68565b60405180910390a361254860008383611cf5565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000818361257e9190613151565b905092915050565b600080600085805490509050600081146125f457856001826125a891906131f1565b815481106125b9576125b8613225565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166125f7565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061262583858763ffffffff16565b91506000811180156126785750438660018361264191906131f1565b8154811061265257612651613225565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1561270557612686826129ef565b8660018361269491906131f1565b815481106126a5576126a4613225565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055506127f5565b85604051806040016040528061271a43611ab0565b63ffffffff16815260200161272e856129ef565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286490614055565b60405180910390fd5b61287982600083611cdd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f6906140e7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461295691906131f1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129bb9190612c68565b60405180910390a36129cf83600084611cf5565b505050565b600081836129e291906131f1565b905092915050565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614179565b60405180910390fd5b819050919050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ad2578082015181840152602081019050612ab7565b60008484015250505050565b6000601f19601f8301169050919050565b6000612afa82612a98565b612b048185612aa3565b9350612b14818560208601612ab4565b612b1d81612ade565b840191505092915050565b60006020820190508181036000830152612b428184612aef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b7a82612b4f565b9050919050565b612b8a81612b6f565b8114612b9557600080fd5b50565b600081359050612ba781612b81565b92915050565b6000819050919050565b612bc081612bad565b8114612bcb57600080fd5b50565b600081359050612bdd81612bb7565b92915050565b60008060408385031215612bfa57612bf9612b4a565b5b6000612c0885828601612b98565b9250506020612c1985828601612bce565b9150509250929050565b60008115159050919050565b612c3881612c23565b82525050565b6000602082019050612c536000830184612c2f565b92915050565b612c6281612bad565b82525050565b6000602082019050612c7d6000830184612c59565b92915050565b600080600060608486031215612c9c57612c9b612b4a565b5b6000612caa86828701612b98565b9350506020612cbb86828701612b98565b9250506040612ccc86828701612bce565b9150509250925092565b600060ff82169050919050565b612cec81612cd6565b82525050565b6000602082019050612d076000830184612ce3565b92915050565b6000819050919050565b612d2081612d0d565b82525050565b6000602082019050612d3b6000830184612d17565b92915050565b600060208284031215612d5757612d56612b4a565b5b6000612d6584828501612bce565b91505092915050565b600060208284031215612d8457612d83612b4a565b5b6000612d9284828501612b98565b91505092915050565b612da481612b6f565b82525050565b6000602082019050612dbf6000830184612d9b565b92915050565b600063ffffffff82169050919050565b612dde81612dc5565b82525050565b6000602082019050612df96000830184612dd5565b92915050565b612e0881612cd6565b8114612e1357600080fd5b50565b600081359050612e2581612dff565b92915050565b612e3481612d0d565b8114612e3f57600080fd5b50565b600081359050612e5181612e2b565b92915050565b60008060008060008060c08789031215612e7457612e73612b4a565b5b6000612e8289828a01612b98565b9650506020612e9389828a01612bce565b9550506040612ea489828a01612bce565b9450506060612eb589828a01612e16565b9350506080612ec689828a01612e42565b92505060a0612ed789828a01612e42565b9150509295509295509295565b600080600080600080600060e0888a031215612f0357612f02612b4a565b5b6000612f118a828b01612b98565b9750506020612f228a828b01612b98565b9650506040612f338a828b01612bce565b9550506060612f448a828b01612bce565b9450506080612f558a828b01612e16565b93505060a0612f668a828b01612e42565b92505060c0612f778a828b01612e42565b91505092959891949750929550565b60008060408385031215612f9d57612f9c612b4a565b5b6000612fab85828601612b98565b9250506020612fbc85828601612b98565b9150509250929050565b612fcf81612dc5565b8114612fda57600080fd5b50565b600081359050612fec81612fc6565b92915050565b6000806040838503121561300957613008612b4a565b5b600061301785828601612b98565b925050602061302885828601612fdd565b9150509250929050565b61303b81612dc5565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b61307281613041565b82525050565b60408201600082015161308e6000850182613032565b5060208201516130a16020850182613069565b50505050565b60006040820190506130bc6000830184613078565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310957607f821691505b60208210810361311c5761311b6130c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315c82612bad565b915061316783612bad565b925082820190508082111561317f5761317e613122565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b60006131bb601f83612aa3565b91506131c682613185565b602082019050919050565b600060208201905081810360008301526131ea816131ae565b9050919050565b60006131fc82612bad565b915061320783612bad565b925082820390508181111561321f5761321e613122565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006132b0602583612aa3565b91506132bb82613254565b604082019050919050565b600060208201905081810360008301526132df816132a3565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b600061331c601d83612aa3565b9150613327826132e6565b602082019050919050565b6000602082019050818103600083015261334b8161330f565b9050919050565b60006080820190506133676000830187612d17565b6133746020830186612d9b565b6133816040830185612c59565b61338e6060830184612c59565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b60006133cd601983612aa3565b91506133d882613397565b602082019050919050565b600060208201905081810360008301526133fc816133c0565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613439601d83612aa3565b915061344482613403565b602082019050919050565b600060208201905081810360008301526134688161342c565b9050919050565b600060c0820190506134846000830189612d17565b6134916020830188612d9b565b61349e6040830187612d9b565b6134ab6060830186612c59565b6134b86080830185612c59565b6134c560a0830184612c59565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000613506601e83612aa3565b9150613511826134d0565b602082019050919050565b60006020820190508181036000830152613535816134f9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613598602683612aa3565b91506135a38261353c565b604082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061362a602483612aa3565b9150613635826135ce565b604082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136bc602283612aa3565b91506136c782613660565b604082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613728601d83612aa3565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ba602583612aa3565b91506137c58261375e565b604082019050919050565b600060208201905081810360008301526137e9816137ad565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061384c602383612aa3565b9150613857826137f0565b604082019050919050565b6000602082019050818103600083015261387b8161383f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138de602683612aa3565b91506138e982613882565b604082019050919050565b6000602082019050818103600083015261390d816138d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394a602083612aa3565b915061395582613914565b602082019050919050565b600060208201905081810360008301526139798161393d565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b60006139dc602683612aa3565b91506139e782613980565b604082019050919050565b60006020820190508181036000830152613a0b816139cf565b9050919050565b600060a082019050613a276000830188612d17565b613a346020830187612d17565b613a416040830186612d17565b613a4e6060830185612c59565b613a5b6080830184612d9b565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a9f82612bad565b9150613aaa83612bad565b925082613aba57613ab9613a65565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613afb601483612aa3565b9150613b0682613ac5565b602082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b6000613b8d603083612aa3565b9150613b9882613b31565b604082019050919050565b60006020820190508181036000830152613bbc81613b80565b9050919050565b6000604082019050613bd86000830185612c59565b613be56020830184612c59565b9392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613c22601083612aa3565b9150613c2d82613bec565b602082019050919050565b60006020820190508181036000830152613c5181613c15565b9050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000613c99600283613c58565b9150613ca482613c63565b600282019050919050565b6000819050919050565b613cca613cc582612d0d565b613caf565b82525050565b6000613cdb82613c8c565b9150613ce78285613cb9565b602082019150613cf78284613cb9565b6020820191508190509392505050565b6000608082019050613d1c6000830187612d17565b613d296020830186612ce3565b613d366040830185612d17565b613d436060830184612d17565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613db1601883612aa3565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613e1d601f83612aa3565b9150613e2882613de7565b602082019050919050565b60006020820190508181036000830152613e4c81613e10565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eaf602283612aa3565b9150613eba82613e53565b604082019050919050565b60006020820190508181036000830152613ede81613ea2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f41602283612aa3565b9150613f4c82613ee5565b604082019050919050565b60006020820190508181036000830152613f7081613f34565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613fad601f83612aa3565b9150613fb882613f77565b602082019050919050565b60006020820190508181036000830152613fdc81613fa0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061403f602183612aa3565b915061404a82613fe3565b604082019050919050565b6000602082019050818103600083015261406e81614032565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d1602283612aa3565b91506140dc82614075565b604082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b6000614163602783612aa3565b915061416e82614107565b604082019050919050565b6000602082019050818103600083015261419281614156565b905091905056fea26469706673582212200c95314b15b76ac8f3db128959ab48906c650a3c751a8af91b4fca147bee047964736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf146105cf578063dd62ed3e146105eb578063f1127ed81461061b578063f2fde38b1461064b576101f0565b8063a457c2d714610535578063a55ad3aa14610565578063a9059cbb14610583578063c3cda520146105b3576101f0565b80638da5cb5b116100de5780638da5cb5b146104995780638e539e8c146104b757806395d89b41146104e75780639ab24eb014610505576101f0565b8063715018a61461043957806379cc6790146104435780637ecebe001461045f5780638456cb591461048f576101f0565b80633f4ba83a116101875780635c19a95c116101565780635c19a95c1461039f5780635c975abb146103bb5780636fcfff45146103d957806370a0823114610409576101f0565b80633f4ba83a1461032d57806340c10f191461033757806342966c6814610353578063587cde1e1461036f576101f0565b8063313ce567116101c3578063313ce567146102915780633644e515146102af57806339509351146102cd5780633a46b1a8146102fd576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461024357806323b872dd14610261575b600080fd5b6101fd610667565b60405161020a9190612b28565b60405180910390f35b61022d60048036038101906102289190612be3565b6106f9565b60405161023a9190612c3e565b60405180910390f35b61024b61071c565b6040516102589190612c68565b60405180910390f35b61027b60048036038101906102769190612c83565b610726565b6040516102889190612c3e565b60405180910390f35b610299610755565b6040516102a69190612cf2565b60405180910390f35b6102b761075e565b6040516102c49190612d26565b60405180910390f35b6102e760048036038101906102e29190612be3565b61076d565b6040516102f49190612c3e565b60405180910390f35b61031760048036038101906103129190612be3565b6107a4565b6040516103249190612c68565b60405180910390f35b610335610838565b005b610351600480360381019061034c9190612be3565b61084a565b005b61036d60048036038101906103689190612d41565b610882565b005b61038960048036038101906103849190612d6e565b610896565b6040516103969190612daa565b60405180910390f35b6103b960048036038101906103b49190612d6e565b6108ff565b005b6103c3610913565b6040516103d09190612c3e565b60405180910390f35b6103f360048036038101906103ee9190612d6e565b61092a565b6040516104009190612de4565b60405180910390f35b610423600480360381019061041e9190612d6e565b61097e565b6040516104309190612c68565b60405180910390f35b6104416109c6565b005b61045d60048036038101906104589190612be3565b6109da565b005b61047960048036038101906104749190612d6e565b6109fa565b6040516104869190612c68565b60405180910390f35b610497610a4a565b005b6104a1610a5c565b6040516104ae9190612daa565b60405180910390f35b6104d160048036038101906104cc9190612d41565b610a86565b6040516104de9190612c68565b60405180910390f35b6104ef610adc565b6040516104fc9190612b28565b60405180910390f35b61051f600480360381019061051a9190612d6e565b610b6e565b60405161052c9190612c68565b60405180910390f35b61054f600480360381019061054a9190612be3565b610c7f565b60405161055c9190612c3e565b60405180910390f35b61056d610cf6565b60405161057a9190612c68565b60405180910390f35b61059d60048036038101906105989190612be3565b610d00565b6040516105aa9190612c3e565b60405180910390f35b6105cd60048036038101906105c89190612e57565b610d23565b005b6105e960048036038101906105e49190612ee4565b610e27565b005b61060560048036038101906106009190612f86565b610f69565b6040516106129190612c68565b60405180910390f35b61063560048036038101906106309190612ff2565b610ff0565b60405161064291906130a7565b60405180910390f35b61066560048036038101906106609190612d6e565b611100565b005b606060038054610676906130f1565b80601f01602080910402602001604051908101604052809291908181526020018280546106a2906130f1565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b600080610704611183565b905061071181858561118b565b600191505092915050565b6000600254905090565b600080610731611183565b905061073e858285611354565b6107498585856113e0565b60019150509392505050565b60006012905090565b600061076861165f565b905090565b600080610778611183565b905061079981858561078a8589610f69565b6107949190613151565b61118b565b600191505092915050565b60004382106107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df906131d1565b60405180910390fd5b610830600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611779565b905092915050565b610840611885565b610848611903565b565b610852611885565b600061085c61071c565b826108679190613151565b9050600b54811161087d5761087c8383611966565b5b505050565b61089361088d611183565b82611974565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61091061090a611183565b82611996565b50565b6000600560009054906101000a900460ff16905090565b6000610977600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611ab0565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ce611885565b6109d86000611b03565b565b6109ec826109e6611183565b83611354565b6109f68282611974565b5050565b6000610a43600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611bc9565b9050919050565b610a52611885565b610a5a611bd7565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906131d1565b60405180910390fd5b610ad5600a83611779565b9050919050565b606060048054610aeb906130f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b17906130f1565b8015610b645780601f10610b3957610100808354040283529160200191610b64565b820191906000526020600020905b815481529060010190602001808311610b4757829003601f168201915b5050505050905090565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610c5657600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610c0a91906131f1565b81548110610c1b57610c1a613225565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610c59565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610c8a611183565b90506000610c988286610f69565b905083811015610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906132c6565b60405180910390fd5b610cea828686840361118b565b60019250505092915050565b6000600b54905090565b600080610d0b611183565b9050610d188185856113e0565b600191505092915050565b83421115610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613332565b60405180910390fd5b6000610dc8610dc07fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610da59493929190613352565b60405160208183030381529060405280519060200120611c3a565b858585611c54565b9050610dd381611c7f565b8614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906133e3565b60405180910390fd5b610e1e8188611996565b50505050505050565b83421115610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e619061344f565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610e998c611c7f565b89604051602001610eaf9695949392919061346f565b6040516020818303038152906040528051906020012090506000610ed282611c3a565b90506000610ee282878787611c54565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f499061351c565b60405180910390fd5b610f5d8a8a8a61118b565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff8612a5a565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff168154811061104f5761104e613225565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b611108611885565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906135ae565b60405180910390fd5b61118081611b03565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613640565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906136d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113479190612c68565b60405180910390a3505050565b60006113608484610f69565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113da57818110156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c39061373e565b60405180910390fd5b6113d9848484840361118b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906137d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590613862565b60405180910390fd5b6114c9838383611cdd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561154f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611546906138f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e29190613151565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116469190612c68565b60405180910390a3611659848484611cf5565b50505050565b60007f000000000000000000000000c1abb8c93be6811affc70675b0432926c4bfbb5d73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156116db57507f000000000000000000000000000000000000000000000000000000000000000146145b15611708577f0f802017da94f5ea4d47e316a72224b3fbe9d352e5c483a0d03f582d37180ad39050611776565b6117737f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f60d67a9213f702bbab1d9feee64763ec61c94bdb9bca8b147ac0f68dfc05b37f7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611d05565b90505b90565b6000808380549050905060005b818110156117f857600061179a8284611d3f565b9050848682815481106117b0576117af613225565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156117e2578092506117f2565b6001816117ef9190613151565b91505b50611786565b6000821461185a578460018361180e91906131f1565b8154811061181f5761181e613225565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661185d565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b61188d611183565b73ffffffffffffffffffffffffffffffffffffffff166118ab610a5c565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890613960565b60405180910390fd5b565b61190b611d65565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61194f611183565b60405161195c9190612daa565b60405180910390a1565b6119708282611dae565b5050565b61197e8282611e3b565b80600b5461198c91906131f1565b600b819055505050565b60006119a183610896565b905060006119ae8461097e565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611aaa828483611e59565b50505050565b600063ffffffff8016821115611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af2906139f2565b60405180910390fd5b819050919050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611bdf612052565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c23611183565b604051611c309190612daa565b60405180910390a1565b6000611c4d611c4761165f565b8361209c565b9050919050565b6000806000611c65878787876120cf565b91509150611c72816121db565b8192505050949350505050565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611ccc81611bc9565b9150611cd7816123a7565b50919050565b611ce5612052565b611cf08383836123bd565b505050565b611d008383836123c2565b505050565b60008383834630604051602001611d20959493929190613a12565b6040516020818303038152906040528051906020012090509392505050565b60006002828418611d509190613a94565b828416611d5d9190613151565b905092915050565b611d6d610913565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613b11565b60405180910390fd5b565b611db882826123ed565b611dc061254c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611de661071c565b1115611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e90613ba3565b60405180910390fd5b611e35600a61257083612586565b50505050565b611e4582826127fe565b611e53600a6129d483612586565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e955750600081115b1561204d57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f7357600080611f1c600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129d485612586565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611f68929190613bc3565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461204c57600080611ff5600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061257085612586565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612041929190613bc3565b60405180910390a250505b5b505050565b61205a610913565b1561209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190613c38565b60405180910390fd5b565b600082826040516020016120b1929190613cd0565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561210a5760006003915091506121d2565b601b8560ff16141580156121225750601c8560ff1614155b156121345760006004915091506121d2565b6000600187878787604051600081526020016040526040516121599493929190613d07565b6020604051602081039080840390855afa15801561217b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121c9576000600192509250506121d2565b80600092509250505b94509492505050565b600060048111156121ef576121ee613d4c565b5b81600481111561220257612201613d4c565b5b03156123a4576001600481111561221c5761221b613d4c565b5b81600481111561222f5761222e613d4c565b5b0361226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690613dc7565b60405180910390fd5b6002600481111561228357612282613d4c565b5b81600481111561229657612295613d4c565b5b036122d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cd90613e33565b60405180910390fd5b600360048111156122ea576122e9613d4c565b5b8160048111156122fd576122fc613d4c565b5b0361233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490613ec5565b60405180910390fd5b6004808111156123505761234f613d4c565b5b81600481111561236357612362613d4c565b5b036123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90613f57565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b505050565b6123cd8383836129ea565b6123e86123d984610896565b6123e284610896565b83611e59565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390613fc3565b60405180910390fd5b61246860008383611cdd565b806002600082825461247a9190613151565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124cf9190613151565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125349190612c68565b60405180910390a361254860008383611cf5565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000818361257e9190613151565b905092915050565b600080600085805490509050600081146125f457856001826125a891906131f1565b815481106125b9576125b8613225565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166125f7565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061262583858763ffffffff16565b91506000811180156126785750438660018361264191906131f1565b8154811061265257612651613225565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1561270557612686826129ef565b8660018361269491906131f1565b815481106126a5576126a4613225565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055506127f5565b85604051806040016040528061271a43611ab0565b63ffffffff16815260200161272e856129ef565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286490614055565b60405180910390fd5b61287982600083611cdd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f6906140e7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461295691906131f1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129bb9190612c68565b60405180910390a36129cf83600084611cf5565b505050565b600081836129e291906131f1565b905092915050565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614179565b60405180910390fd5b819050919050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ad2578082015181840152602081019050612ab7565b60008484015250505050565b6000601f19601f8301169050919050565b6000612afa82612a98565b612b048185612aa3565b9350612b14818560208601612ab4565b612b1d81612ade565b840191505092915050565b60006020820190508181036000830152612b428184612aef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b7a82612b4f565b9050919050565b612b8a81612b6f565b8114612b9557600080fd5b50565b600081359050612ba781612b81565b92915050565b6000819050919050565b612bc081612bad565b8114612bcb57600080fd5b50565b600081359050612bdd81612bb7565b92915050565b60008060408385031215612bfa57612bf9612b4a565b5b6000612c0885828601612b98565b9250506020612c1985828601612bce565b9150509250929050565b60008115159050919050565b612c3881612c23565b82525050565b6000602082019050612c536000830184612c2f565b92915050565b612c6281612bad565b82525050565b6000602082019050612c7d6000830184612c59565b92915050565b600080600060608486031215612c9c57612c9b612b4a565b5b6000612caa86828701612b98565b9350506020612cbb86828701612b98565b9250506040612ccc86828701612bce565b9150509250925092565b600060ff82169050919050565b612cec81612cd6565b82525050565b6000602082019050612d076000830184612ce3565b92915050565b6000819050919050565b612d2081612d0d565b82525050565b6000602082019050612d3b6000830184612d17565b92915050565b600060208284031215612d5757612d56612b4a565b5b6000612d6584828501612bce565b91505092915050565b600060208284031215612d8457612d83612b4a565b5b6000612d9284828501612b98565b91505092915050565b612da481612b6f565b82525050565b6000602082019050612dbf6000830184612d9b565b92915050565b600063ffffffff82169050919050565b612dde81612dc5565b82525050565b6000602082019050612df96000830184612dd5565b92915050565b612e0881612cd6565b8114612e1357600080fd5b50565b600081359050612e2581612dff565b92915050565b612e3481612d0d565b8114612e3f57600080fd5b50565b600081359050612e5181612e2b565b92915050565b60008060008060008060c08789031215612e7457612e73612b4a565b5b6000612e8289828a01612b98565b9650506020612e9389828a01612bce565b9550506040612ea489828a01612bce565b9450506060612eb589828a01612e16565b9350506080612ec689828a01612e42565b92505060a0612ed789828a01612e42565b9150509295509295509295565b600080600080600080600060e0888a031215612f0357612f02612b4a565b5b6000612f118a828b01612b98565b9750506020612f228a828b01612b98565b9650506040612f338a828b01612bce565b9550506060612f448a828b01612bce565b9450506080612f558a828b01612e16565b93505060a0612f668a828b01612e42565b92505060c0612f778a828b01612e42565b91505092959891949750929550565b60008060408385031215612f9d57612f9c612b4a565b5b6000612fab85828601612b98565b9250506020612fbc85828601612b98565b9150509250929050565b612fcf81612dc5565b8114612fda57600080fd5b50565b600081359050612fec81612fc6565b92915050565b6000806040838503121561300957613008612b4a565b5b600061301785828601612b98565b925050602061302885828601612fdd565b9150509250929050565b61303b81612dc5565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b61307281613041565b82525050565b60408201600082015161308e6000850182613032565b5060208201516130a16020850182613069565b50505050565b60006040820190506130bc6000830184613078565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310957607f821691505b60208210810361311c5761311b6130c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315c82612bad565b915061316783612bad565b925082820190508082111561317f5761317e613122565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b60006131bb601f83612aa3565b91506131c682613185565b602082019050919050565b600060208201905081810360008301526131ea816131ae565b9050919050565b60006131fc82612bad565b915061320783612bad565b925082820390508181111561321f5761321e613122565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006132b0602583612aa3565b91506132bb82613254565b604082019050919050565b600060208201905081810360008301526132df816132a3565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b600061331c601d83612aa3565b9150613327826132e6565b602082019050919050565b6000602082019050818103600083015261334b8161330f565b9050919050565b60006080820190506133676000830187612d17565b6133746020830186612d9b565b6133816040830185612c59565b61338e6060830184612c59565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b60006133cd601983612aa3565b91506133d882613397565b602082019050919050565b600060208201905081810360008301526133fc816133c0565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613439601d83612aa3565b915061344482613403565b602082019050919050565b600060208201905081810360008301526134688161342c565b9050919050565b600060c0820190506134846000830189612d17565b6134916020830188612d9b565b61349e6040830187612d9b565b6134ab6060830186612c59565b6134b86080830185612c59565b6134c560a0830184612c59565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000613506601e83612aa3565b9150613511826134d0565b602082019050919050565b60006020820190508181036000830152613535816134f9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613598602683612aa3565b91506135a38261353c565b604082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061362a602483612aa3565b9150613635826135ce565b604082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136bc602283612aa3565b91506136c782613660565b604082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613728601d83612aa3565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ba602583612aa3565b91506137c58261375e565b604082019050919050565b600060208201905081810360008301526137e9816137ad565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061384c602383612aa3565b9150613857826137f0565b604082019050919050565b6000602082019050818103600083015261387b8161383f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138de602683612aa3565b91506138e982613882565b604082019050919050565b6000602082019050818103600083015261390d816138d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394a602083612aa3565b915061395582613914565b602082019050919050565b600060208201905081810360008301526139798161393d565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b60006139dc602683612aa3565b91506139e782613980565b604082019050919050565b60006020820190508181036000830152613a0b816139cf565b9050919050565b600060a082019050613a276000830188612d17565b613a346020830187612d17565b613a416040830186612d17565b613a4e6060830185612c59565b613a5b6080830184612d9b565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a9f82612bad565b9150613aaa83612bad565b925082613aba57613ab9613a65565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613afb601483612aa3565b9150613b0682613ac5565b602082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b6000613b8d603083612aa3565b9150613b9882613b31565b604082019050919050565b60006020820190508181036000830152613bbc81613b80565b9050919050565b6000604082019050613bd86000830185612c59565b613be56020830184612c59565b9392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613c22601083612aa3565b9150613c2d82613bec565b602082019050919050565b60006020820190508181036000830152613c5181613c15565b9050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000613c99600283613c58565b9150613ca482613c63565b600282019050919050565b6000819050919050565b613cca613cc582612d0d565b613caf565b82525050565b6000613cdb82613c8c565b9150613ce78285613cb9565b602082019150613cf78284613cb9565b6020820191508190509392505050565b6000608082019050613d1c6000830187612d17565b613d296020830186612ce3565b613d366040830185612d17565b613d436060830184612d17565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613db1601883612aa3565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613e1d601f83612aa3565b9150613e2882613de7565b602082019050919050565b60006020820190508181036000830152613e4c81613e10565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eaf602283612aa3565b9150613eba82613e53565b604082019050919050565b60006020820190508181036000830152613ede81613ea2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f41602283612aa3565b9150613f4c82613ee5565b604082019050919050565b60006020820190508181036000830152613f7081613f34565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613fad601f83612aa3565b9150613fb882613f77565b602082019050919050565b60006020820190508181036000830152613fdc81613fa0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061403f602183612aa3565b915061404a82613fe3565b604082019050919050565b6000602082019050818103600083015261406e81614032565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d1602283612aa3565b91506140dc82614075565b604082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b6000614163602783612aa3565b915061416e82614107565b604082019050919050565b6000602082019050818103600083015261419281614156565b905091905056fea26469706673582212200c95314b15b76ac8f3db128959ab48906c650a3c751a8af91b4fca147bee047964736f6c63430008110033

Deployed Bytecode Sourcemap

104601:1567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79873:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82224:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80993:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83005:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80835:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93487:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83709:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96689:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104927:65;;;:::i;:::-;;105000:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103898:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96063:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99162:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73131:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95819:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81164:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70641:103;;;:::i;:::-;;104308:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93229:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104858:61;;;:::i;:::-;;69993:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97246:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80092:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96275:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84450:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106052:111;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81497:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99358:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92518:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81753:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95589:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70899:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79873:100;79927:13;79960:5;79953:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79873:100;:::o;82224:201::-;82307:4;82324:13;82340:12;:10;:12::i;:::-;82324:28;;82363:32;82372:5;82379:7;82388:6;82363:8;:32::i;:::-;82413:4;82406:11;;;82224:201;;;;:::o;80993:108::-;81054:7;81081:12;;81074:19;;80993:108;:::o;83005:295::-;83136:4;83153:15;83171:12;:10;:12::i;:::-;83153:30;;83194:38;83210:4;83216:7;83225:6;83194:15;:38::i;:::-;83243:27;83253:4;83259:2;83263:6;83243:9;:27::i;:::-;83288:4;83281:11;;;83005:295;;;;;:::o;80835:93::-;80893:5;80918:2;80911:9;;80835:93;:::o;93487:115::-;93547:7;93574:20;:18;:20::i;:::-;93567:27;;93487:115;:::o;83709:238::-;83797:4;83814:13;83830:12;:10;:12::i;:::-;83814:28;;83853:64;83862:5;83869:7;83906:10;83878:25;83888:5;83895:7;83878:9;:25::i;:::-;:38;;;;:::i;:::-;83853:8;:64::i;:::-;83935:4;83928:11;;;83709:238;;;;:::o;96689:268::-;96787:7;96829:12;96815:11;:26;96807:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;96895:54;96914:12;:21;96927:7;96914:21;;;;;;;;;;;;;;;96937:11;96895:18;:54::i;:::-;96888:61;;96689:268;;;;:::o;104927:65::-;69879:13;:11;:13::i;:::-;104974:10:::1;:8;:10::i;:::-;104927:65::o:0;105000:195::-;69879:13;:11;:13::i;:::-;105070:19:::1;105101:13;:11;:13::i;:::-;105092:6;:22;;;;:::i;:::-;105070:44;;105138:19;;105123:11;:34;105119:69;;105165:17;105171:2;105175:6;105165:5;:17::i;:::-;105119:69;105059:136;105000:195:::0;;:::o;103898:91::-;103954:27;103960:12;:10;:12::i;:::-;103974:6;103954:5;:27::i;:::-;103898:91;:::o;96063:128::-;96137:7;96164:10;:19;96175:7;96164:19;;;;;;;;;;;;;;;;;;;;;;;;;96157:26;;96063:128;;;:::o;99162:114::-;99234:34;99244:12;:10;:12::i;:::-;99258:9;99234;:34::i;:::-;99162:114;:::o;73131:86::-;73178:4;73202:7;;;;;;;;;;;73195:14;;73131:86;:::o;95819:151::-;95889:6;95915:47;95933:12;:21;95946:7;95933:21;;;;;;;;;;;;;;;:28;;;;95915:17;:47::i;:::-;95908:54;;95819:151;;;:::o;81164:127::-;81238:7;81265:9;:18;81275:7;81265:18;;;;;;;;;;;;;;;;81258:25;;81164:127;;;:::o;70641:103::-;69879:13;:11;:13::i;:::-;70706:30:::1;70733:1;70706:18;:30::i;:::-;70641:103::o:0;104308:164::-;104385:46;104401:7;104410:12;:10;:12::i;:::-;104424:6;104385:15;:46::i;:::-;104442:22;104448:7;104457:6;104442:5;:22::i;:::-;104308:164;;:::o;93229:128::-;93298:7;93325:24;:7;:14;93333:5;93325:14;;;;;;;;;;;;;;;:22;:24::i;:::-;93318:31;;93229:128;;;:::o;104858:61::-;69879:13;:11;:13::i;:::-;104903:8:::1;:6;:8::i;:::-;104858:61::o:0;69993:87::-;70039:7;70066:6;;;;;;;;;;;70059:13;;69993:87;:::o;97246:259::-;97333:7;97375:12;97361:11;:26;97353:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;97441:56;97460:23;97485:11;97441:18;:56::i;:::-;97434:63;;97246:259;;;:::o;80092:104::-;80148:13;80181:7;80174:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80092:104;:::o;96275:212::-;96348:7;96368:11;96382:12;:21;96395:7;96382:21;;;;;;;;;;;;;;;:28;;;;96368:42;;96435:1;96428:3;:8;:51;;96443:12;:21;96456:7;96443:21;;;;;;;;;;;;;;;96471:1;96465:3;:7;;;;:::i;:::-;96443:30;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;;;;;;;;;96428:51;;;96439:1;96428:51;96421:58;;;;;96275:212;;;:::o;84450:436::-;84543:4;84560:13;84576:12;:10;:12::i;:::-;84560:28;;84599:24;84626:25;84636:5;84643:7;84626:9;:25::i;:::-;84599:52;;84690:15;84670:16;:35;;84662:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;84783:60;84792:5;84799:7;84827:15;84808:16;:34;84783:8;:60::i;:::-;84874:4;84867:11;;;;84450:436;;;;:::o;106052:111::-;106107:7;106136:19;;106129:26;;106052:111;:::o;81497:193::-;81576:4;81593:13;81609:12;:10;:12::i;:::-;81593:28;;81632;81642:5;81649:2;81653:6;81632:9;:28::i;:::-;81678:4;81671:11;;;81497:193;;;;:::o;99358:591::-;99585:6;99566:15;:25;;99558:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;99636:14;99653:174;99681:87;95269:71;99741:9;99752:5;99759:6;99708:58;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;99698:69;;;;;;99681:16;:87::i;:::-;99783:1;99799;99815;99653:13;:174::i;:::-;99636:191;;99855:17;99865:6;99855:9;:17::i;:::-;99846:5;:26;99838:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;99913:28;99923:6;99931:9;99913;:28::i;:::-;99547:402;99358:591;;;;;;:::o;92518:645::-;92762:8;92743:15;:27;;92735:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;92817:18;91693:95;92877:5;92884:7;92893:5;92900:16;92910:5;92900:9;:16::i;:::-;92918:8;92848:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92838:90;;;;;;92817:111;;92941:12;92956:28;92973:10;92956:16;:28::i;:::-;92941:43;;92997:14;93014:28;93028:4;93034:1;93037;93040;93014:13;:28::i;:::-;92997:45;;93071:5;93061:15;;:6;:15;;;93053:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;93124:31;93133:5;93140:7;93149:5;93124:8;:31::i;:::-;92724:439;;;92518:645;;;;;;;:::o;81753:151::-;81842:7;81869:11;:18;81881:5;81869:18;;;;;;;;;;;;;;;:27;81888:7;81869:27;;;;;;;;;;;;;;;;81862:34;;81753:151;;;;:::o;95589:150::-;95668:17;;:::i;:::-;95705:12;:21;95718:7;95705:21;;;;;;;;;;;;;;;95727:3;95705:26;;;;;;;;;;:::i;:::-;;;;;;;;;95698:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95589:150;;;;:::o;70899:201::-;69879:13;:11;:13::i;:::-;71008:1:::1;70988:22;;:8;:22;;::::0;70980:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;71064:28;71083:8;71064:18;:28::i;:::-;70899:201:::0;:::o;68544:98::-;68597:7;68624:10;68617:17;;68544:98;:::o;88084:380::-;88237:1;88220:19;;:5;:19;;;88212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88318:1;88299:21;;:7;:21;;;88291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88402:6;88372:11;:18;88384:5;88372:18;;;;;;;;;;;;;;;:27;88391:7;88372:27;;;;;;;;;;;;;;;:36;;;;88440:7;88424:32;;88433:5;88424:32;;;88449:6;88424:32;;;;;;:::i;:::-;;;;;;;;88084:380;;;:::o;88755:453::-;88890:24;88917:25;88927:5;88934:7;88917:9;:25::i;:::-;88890:52;;88977:17;88957:16;:37;88953:248;;89039:6;89019:16;:26;;89011:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89123:51;89132:5;89139:7;89167:6;89148:16;:25;89123:8;:51::i;:::-;88953:248;88879:329;88755:453;;;:::o;85365:671::-;85512:1;85496:18;;:4;:18;;;85488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;85589:1;85575:16;;:2;:16;;;85567:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;85644:38;85665:4;85671:2;85675:6;85644:20;:38::i;:::-;85695:19;85717:9;:15;85727:4;85717:15;;;;;;;;;;;;;;;;85695:37;;85766:6;85751:11;:21;;85743:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;85883:6;85869:11;:20;85851:9;:15;85861:4;85851:15;;;;;;;;;;;;;;;:38;;;;85928:6;85911:9;:13;85921:2;85911:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;85967:2;85952:26;;85961:4;85952:26;;;85971:6;85952:26;;;;;;:::i;:::-;;;;;;;;85991:37;86011:4;86017:2;86021:6;85991:19;:37::i;:::-;85477:559;85365:671;;;:::o;64099:314::-;64152:7;64193:12;64176:29;;64184:4;64176:29;;;:66;;;;;64226:16;64209:13;:33;64176:66;64172:234;;;64266:24;64259:31;;;;64172:234;64330:64;64352:10;64364:12;64378:15;64330:21;:64::i;:::-;64323:71;;64099:314;;:::o;97594:1482::-;97693:7;98712:12;98727:5;:12;;;;98712:27;;98750:11;98776:236;98789:4;98783:3;:10;98776:236;;;98810:11;98824:23;98837:3;98842:4;98824:12;:23::i;:::-;98810:37;;98889:11;98866:5;98872:3;98866:10;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;:34;;;98862:139;;;98928:3;98921:10;;98862:139;;;98984:1;98978:3;:7;;;;:::i;:::-;98972:13;;98862:139;98795:217;98776:236;;;99039:1;99031:4;:9;:37;;99047:5;99060:1;99053:4;:8;;;;:::i;:::-;99047:15;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;;99031:37;;;99043:1;99031:37;99024:44;;;;;;97594:1482;;;;:::o;70158:132::-;70233:12;:10;:12::i;:::-;70222:23;;:7;:5;:7::i;:::-;:23;;;70214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70158:132::o;73986:120::-;72995:16;:14;:16::i;:::-;74055:5:::1;74045:7;;:15;;;;;;;;;;;;;;;;;;74076:22;74085:12;:10;:12::i;:::-;74076:22;;;;;;:::i;:::-;;;;;;;;73986:120::o:0;105681:145::-;105795:23;105807:2;105811:6;105795:11;:23::i;:::-;105681:145;;:::o;105834:210::-;105953:28;105965:7;105974:6;105953:11;:28::i;:::-;106030:6;106008:19;;:28;;;;:::i;:::-;105986:19;:50;;;;105834:210;;:::o;101399:388::-;101484:23;101510:20;101520:9;101510;:20::i;:::-;101484:46;;101541:24;101568:20;101578:9;101568;:20::i;:::-;101541:47;;101623:9;101599:10;:21;101610:9;101599:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;101694:9;101650:54;;101677:15;101650:54;;101666:9;101650:54;;;;;;;;;;;;101717:62;101734:15;101751:9;101762:16;101717;:62::i;:::-;101473:314;;101399:388;;:::o;15700:190::-;15756:6;15792:16;15783:25;;:5;:25;;15775:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;15876:5;15862:20;;15700:190;;;:::o;71260:191::-;71334:16;71353:6;;;;;;;;;;;71334:25;;71379:8;71370:6;;:17;;;;;;;;;;;;;;;;;;71434:8;71403:40;;71424:8;71403:40;;;;;;;;;;;;71323:128;71260:191;:::o;48806:114::-;48871:7;48898;:14;;;48891:21;;48806:114;;;:::o;73727:118::-;72736:19;:17;:19::i;:::-;73797:4:::1;73787:7;;:14;;;;;;;;;;;;;;;;;;73817:20;73824:12;:10;:12::i;:::-;73817:20;;;;;;:::i;:::-;;;;;;;;73727:118::o:0;65326:167::-;65403:7;65430:55;65452:20;:18;:20::i;:::-;65474:10;65430:21;:55::i;:::-;65423:62;;65326:167;;;:::o;58975:279::-;59103:7;59124:17;59143:18;59165:25;59176:4;59182:1;59185;59188;59165:10;:25::i;:::-;59123:67;;;;59201:18;59213:5;59201:11;:18::i;:::-;59237:9;59230:16;;;;58975:279;;;;;;:::o;93740:207::-;93800:15;93828:30;93861:7;:14;93869:5;93861:14;;;;;;;;;;;;;;;93828:47;;93896:15;:5;:13;:15::i;:::-;93886:25;;93922:17;:5;:15;:17::i;:::-;93817:130;93740:207;;;:::o;105203:199::-;72736:19;:17;:19::i;:::-;105350:44:::1;105377:4;105383:2;105387:6;105350:26;:44::i;:::-;105203:199:::0;;;:::o;105480:193::-;105622:43;105648:4;105654:2;105658:6;105622:25;:43::i;:::-;105480:193;;;:::o;64421:263::-;64565:7;64613:8;64623;64633:11;64646:13;64669:4;64602:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64592:84;;;;;;64585:91;;64421:263;;;;;:::o;39718:156::-;39780:7;39865:1;39860;39856;:5;39855:11;;;;:::i;:::-;39850:1;39846;:5;39845:21;;;;:::i;:::-;39838:28;;39718:156;;;;:::o;73475:108::-;73542:8;:6;:8::i;:::-;73534:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;73475:108::o;100255:290::-;100340:28;100352:7;100361:6;100340:11;:28::i;:::-;100404:12;:10;:12::i;:::-;100387:29;;:13;:11;:13::i;:::-;:29;;100379:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;100482:55;100499:23;100524:4;100530:6;100482:16;:55::i;:::-;;;100255:290;;:::o;100639:194::-;100724:28;100736:7;100745:6;100724:11;:28::i;:::-;100765:60;100782:23;100807:9;100818:6;100765:16;:60::i;:::-;;;100639:194;;:::o;101795:643::-;101927:3;101920:10;;:3;:10;;;;:24;;;;;101943:1;101934:6;:10;101920:24;101916:515;;;101980:1;101965:17;;:3;:17;;;101961:224;;102004:17;102023;102044:54;102061:12;:17;102074:3;102061:17;;;;;;;;;;;;;;;102080:9;102091:6;102044:16;:54::i;:::-;102003:95;;;;102143:3;102122:47;;;102148:9;102159;102122:47;;;;;;;:::i;:::-;;;;;;;;101984:201;;101961:224;102220:1;102205:17;;:3;:17;;;102201:219;;102244:17;102263;102284:49;102301:12;:17;102314:3;102301:17;;;;;;;;;;;;;;;102320:4;102326:6;102284:16;:49::i;:::-;102243:90;;;;102378:3;102357:47;;;102383:9;102394;102357:47;;;;;;;:::i;:::-;;;;;;;;102224:196;;102201:219;101916:515;101795:643;;;:::o;73290:108::-;73361:8;:6;:8::i;:::-;73360:9;73352:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;73290:108::o;60666:196::-;60759:7;60825:15;60842:10;60796:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60786:68;;;;;;60779:75;;60666:196;;;;:::o;57204:1632::-;57335:7;57344:12;58269:66;58264:1;58256:10;;:79;58252:163;;;58368:1;58372:30;58352:51;;;;;;58252:163;58434:2;58429:1;:7;;;;:18;;;;;58445:2;58440:1;:7;;;;58429:18;58425:102;;;58480:1;58484:30;58464:51;;;;;;58425:102;58624:14;58641:24;58651:4;58657:1;58660;58663;58641:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58624:41;;58698:1;58680:20;;:6;:20;;;58676:103;;58733:1;58737:29;58717:50;;;;;;;58676:103;58799:6;58807:20;58791:37;;;;;57204:1632;;;;;;;;:::o;52474:643::-;52552:20;52543:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;52539:571;52589:7;52539:571;52650:29;52641:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;52637:473;;52696:34;;;;;;;;;;:::i;:::-;;;;;;;;52637:473;52761:35;52752:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;52748:362;;52813:41;;;;;;;;;;:::i;:::-;;;;;;;;52748:362;52885:30;52876:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;52872:238;;52932:44;;;;;;;;;;:::i;:::-;;;;;;;;52872:238;53007:30;52998:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;52994:116;;53054:44;;;;;;;;;;:::i;:::-;;;;;;;;52994:116;52474:643;;:::o;48928:127::-;49035:1;49017:7;:14;;;:19;;;;;;;;;;;48928:127;:::o;89808:125::-;;;;:::o;100973:262::-;101115:43;101141:4;101147:2;101151:6;101115:25;:43::i;:::-;101171:56;101188:15;101198:4;101188:9;:15::i;:::-;101205:13;101215:2;101205:9;:13::i;:::-;101220:6;101171:16;:56::i;:::-;100973:262;;;:::o;86323:399::-;86426:1;86407:21;;:7;:21;;;86399:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;86477:49;86506:1;86510:7;86519:6;86477:20;:49::i;:::-;86555:6;86539:12;;:22;;;;;;;:::i;:::-;;;;;;;;86594:6;86572:9;:18;86582:7;86572:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;86637:7;86616:37;;86633:1;86616:37;;;86646:6;86616:37;;;;;;:::i;:::-;;;;;;;;86666:48;86694:1;86698:7;86707:6;86666:19;:48::i;:::-;86323:399;;:::o;100056:105::-;100109:7;100136:17;100129:24;;100056:105;:::o;103099:98::-;103157:7;103188:1;103184;:5;;;;:::i;:::-;103177:12;;103099:98;;;;:::o;102446:645::-;102620:17;102639;102669:11;102683:5;:12;;;;102669:26;;102725:1;102718:3;:8;:35;;102733:5;102745:1;102739:3;:7;;;;:::i;:::-;102733:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;102718:35;;;102729:1;102718:35;102706:47;;;;102776:20;102779:9;102790:5;102776:2;:20;;:::i;:::-;102764:32;;102819:1;102813:3;:7;:51;;;;;102852:12;102824:5;102836:1;102830:3;:7;;;;:::i;:::-;102824:14;;;;;;;;:::i;:::-;;;;;;;;;:24;;;;;;;;;;;;:40;;;102813:51;102809:275;;;102904:29;102923:9;102904:18;:29::i;:::-;102881:5;102893:1;102887:3;:7;;;;:::i;:::-;102881:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;:52;;;;;;;;;;;;;;;;;;102809:275;;;102966:5;102977:94;;;;;;;;103000:31;103018:12;103000:17;:31::i;:::-;102977:94;;;;;;103040:29;103059:9;103040:18;:29::i;:::-;102977:94;;;;;102966:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102809:275;102658:433;102446:645;;;;;;:::o;87055:591::-;87158:1;87139:21;;:7;:21;;;87131:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;87211:49;87232:7;87249:1;87253:6;87211:20;:49::i;:::-;87273:22;87298:9;:18;87308:7;87298:18;;;;;;;;;;;;;;;;87273:43;;87353:6;87335:14;:24;;87327:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;87472:6;87455:14;:23;87434:9;:18;87444:7;87434:18;;;;;;;;;;;;;;;:44;;;;87516:6;87500:12;;:22;;;;;;;:::i;:::-;;;;;;;;87566:1;87540:37;;87549:7;87540:37;;;87570:6;87540:37;;;;;;:::i;:::-;;;;;;;;87590:48;87610:7;87627:1;87631:6;87590:19;:48::i;:::-;87120:526;87055:591;;:::o;103205:103::-;103268:7;103299:1;103295;:5;;;;:::i;:::-;103288:12;;103205:103;;;;:::o;90537:124::-;;;;:::o;2864:195::-;2921:7;2958:17;2949:26;;:5;:26;;2941:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3045:5;3030:21;;2864:195;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:77::-;4890:7;4919:5;4908:16;;4853:77;;;:::o;4936:118::-;5023:24;5041:5;5023:24;:::i;:::-;5018:3;5011:37;4936:118;;:::o;5060:222::-;5153:4;5191:2;5180:9;5176:18;5168:26;;5204:71;5272:1;5261:9;5257:17;5248:6;5204:71;:::i;:::-;5060:222;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:::-;5682:6;5731:2;5719:9;5710:7;5706:23;5702:32;5699:119;;;5737:79;;:::i;:::-;5699:119;5857:1;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5828:117;5623:329;;;;:::o;5958:118::-;6045:24;6063:5;6045:24;:::i;:::-;6040:3;6033:37;5958:118;;:::o;6082:222::-;6175:4;6213:2;6202:9;6198:18;6190:26;;6226:71;6294:1;6283:9;6279:17;6270:6;6226:71;:::i;:::-;6082:222;;;;:::o;6310:93::-;6346:7;6386:10;6379:5;6375:22;6364:33;;6310:93;;;:::o;6409:115::-;6494:23;6511:5;6494:23;:::i;:::-;6489:3;6482:36;6409:115;;:::o;6530:218::-;6621:4;6659:2;6648:9;6644:18;6636:26;;6672:69;6738:1;6727:9;6723:17;6714:6;6672:69;:::i;:::-;6530:218;;;;:::o;6754:118::-;6825:22;6841:5;6825:22;:::i;:::-;6818:5;6815:33;6805:61;;6862:1;6859;6852:12;6805:61;6754:118;:::o;6878:135::-;6922:5;6960:6;6947:20;6938:29;;6976:31;7001:5;6976:31;:::i;:::-;6878:135;;;;:::o;7019:122::-;7092:24;7110:5;7092:24;:::i;:::-;7085:5;7082:35;7072:63;;7131:1;7128;7121:12;7072:63;7019:122;:::o;7147:139::-;7193:5;7231:6;7218:20;7209:29;;7247:33;7274:5;7247:33;:::i;:::-;7147:139;;;;:::o;7292:1053::-;7394:6;7402;7410;7418;7426;7434;7483:3;7471:9;7462:7;7458:23;7454:33;7451:120;;;7490:79;;:::i;:::-;7451:120;7610:1;7635:53;7680:7;7671:6;7660:9;7656:22;7635:53;:::i;:::-;7625:63;;7581:117;7737:2;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7708:118;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7993:2;8019:51;8062:7;8053:6;8042:9;8038:22;8019:51;:::i;:::-;8009:61;;7964:116;8119:3;8146:53;8191:7;8182:6;8171:9;8167:22;8146:53;:::i;:::-;8136:63;;8090:119;8248:3;8275:53;8320:7;8311:6;8300:9;8296:22;8275:53;:::i;:::-;8265:63;;8219:119;7292:1053;;;;;;;;:::o;8351:1199::-;8462:6;8470;8478;8486;8494;8502;8510;8559:3;8547:9;8538:7;8534:23;8530:33;8527:120;;;8566:79;;:::i;:::-;8527:120;8686:1;8711:53;8756:7;8747:6;8736:9;8732:22;8711:53;:::i;:::-;8701:63;;8657:117;8813:2;8839:53;8884:7;8875:6;8864:9;8860:22;8839:53;:::i;:::-;8829:63;;8784:118;8941:2;8967:53;9012:7;9003:6;8992:9;8988:22;8967:53;:::i;:::-;8957:63;;8912:118;9069:2;9095:53;9140:7;9131:6;9120:9;9116:22;9095:53;:::i;:::-;9085:63;;9040:118;9197:3;9224:51;9267:7;9258:6;9247:9;9243:22;9224:51;:::i;:::-;9214:61;;9168:117;9324:3;9351:53;9396:7;9387:6;9376:9;9372:22;9351:53;:::i;:::-;9341:63;;9295:119;9453:3;9480:53;9525:7;9516:6;9505:9;9501:22;9480:53;:::i;:::-;9470:63;;9424:119;8351:1199;;;;;;;;;;:::o;9556:474::-;9624:6;9632;9681:2;9669:9;9660:7;9656:23;9652:32;9649:119;;;9687:79;;:::i;:::-;9649:119;9807:1;9832:53;9877:7;9868:6;9857:9;9853:22;9832:53;:::i;:::-;9822:63;;9778:117;9934:2;9960:53;10005:7;9996:6;9985:9;9981:22;9960:53;:::i;:::-;9950:63;;9905:118;9556:474;;;;;:::o;10036:120::-;10108:23;10125:5;10108:23;:::i;:::-;10101:5;10098:34;10088:62;;10146:1;10143;10136:12;10088:62;10036:120;:::o;10162:137::-;10207:5;10245:6;10232:20;10223:29;;10261:32;10287:5;10261:32;:::i;:::-;10162:137;;;;:::o;10305:472::-;10372:6;10380;10429:2;10417:9;10408:7;10404:23;10400:32;10397:119;;;10435:79;;:::i;:::-;10397:119;10555:1;10580:53;10625:7;10616:6;10605:9;10601:22;10580:53;:::i;:::-;10570:63;;10526:117;10682:2;10708:52;10752:7;10743:6;10732:9;10728:22;10708:52;:::i;:::-;10698:62;;10653:117;10305:472;;;;;:::o;10783:105::-;10858:23;10875:5;10858:23;:::i;:::-;10853:3;10846:36;10783:105;;:::o;10894:142::-;10931:7;10971:58;10964:5;10960:70;10949:81;;10894:142;;;:::o;11042:108::-;11119:24;11137:5;11119:24;:::i;:::-;11114:3;11107:37;11042:108;;:::o;11224:517::-;11377:4;11372:3;11368:14;11469:4;11462:5;11458:16;11452:23;11488:61;11543:4;11538:3;11534:14;11520:12;11488:61;:::i;:::-;11392:167;11642:4;11635:5;11631:16;11625:23;11661:63;11718:4;11713:3;11709:14;11695:12;11661:63;:::i;:::-;11569:165;11346:395;11224:517;;:::o;11747:334::-;11896:4;11934:2;11923:9;11919:18;11911:26;;11947:127;12071:1;12060:9;12056:17;12047:6;11947:127;:::i;:::-;11747:334;;;;:::o;12087:180::-;12135:77;12132:1;12125:88;12232:4;12229:1;12222:15;12256:4;12253:1;12246:15;12273:320;12317:6;12354:1;12348:4;12344:12;12334:22;;12401:1;12395:4;12391:12;12422:18;12412:81;;12478:4;12470:6;12466:17;12456:27;;12412:81;12540:2;12532:6;12529:14;12509:18;12506:38;12503:84;;12559:18;;:::i;:::-;12503:84;12324:269;12273:320;;;:::o;12599:180::-;12647:77;12644:1;12637:88;12744:4;12741:1;12734:15;12768:4;12765:1;12758:15;12785:191;12825:3;12844:20;12862:1;12844:20;:::i;:::-;12839:25;;12878:20;12896:1;12878:20;:::i;:::-;12873:25;;12921:1;12918;12914:9;12907:16;;12942:3;12939:1;12936:10;12933:36;;;12949:18;;:::i;:::-;12933:36;12785:191;;;;:::o;12982:181::-;13122:33;13118:1;13110:6;13106:14;13099:57;12982:181;:::o;13169:366::-;13311:3;13332:67;13396:2;13391:3;13332:67;:::i;:::-;13325:74;;13408:93;13497:3;13408:93;:::i;:::-;13526:2;13521:3;13517:12;13510:19;;13169:366;;;:::o;13541:419::-;13707:4;13745:2;13734:9;13730:18;13722:26;;13794:9;13788:4;13784:20;13780:1;13769:9;13765:17;13758:47;13822:131;13948:4;13822:131;:::i;:::-;13814:139;;13541:419;;;:::o;13966:194::-;14006:4;14026:20;14044:1;14026:20;:::i;:::-;14021:25;;14060:20;14078:1;14060:20;:::i;:::-;14055:25;;14104:1;14101;14097:9;14089:17;;14128:1;14122:4;14119:11;14116:37;;;14133:18;;:::i;:::-;14116:37;13966:194;;;;:::o;14166:180::-;14214:77;14211:1;14204:88;14311:4;14308:1;14301:15;14335:4;14332:1;14325:15;14352:224;14492:34;14488:1;14480:6;14476:14;14469:58;14561:7;14556:2;14548:6;14544:15;14537:32;14352:224;:::o;14582:366::-;14724:3;14745:67;14809:2;14804:3;14745:67;:::i;:::-;14738:74;;14821:93;14910:3;14821:93;:::i;:::-;14939:2;14934:3;14930:12;14923:19;;14582:366;;;:::o;14954:419::-;15120:4;15158:2;15147:9;15143:18;15135:26;;15207:9;15201:4;15197:20;15193:1;15182:9;15178:17;15171:47;15235:131;15361:4;15235:131;:::i;:::-;15227:139;;14954:419;;;:::o;15379:179::-;15519:31;15515:1;15507:6;15503:14;15496:55;15379:179;:::o;15564:366::-;15706:3;15727:67;15791:2;15786:3;15727:67;:::i;:::-;15720:74;;15803:93;15892:3;15803:93;:::i;:::-;15921:2;15916:3;15912:12;15905:19;;15564:366;;;:::o;15936:419::-;16102:4;16140:2;16129:9;16125:18;16117:26;;16189:9;16183:4;16179:20;16175:1;16164:9;16160:17;16153:47;16217:131;16343:4;16217:131;:::i;:::-;16209:139;;15936:419;;;:::o;16361:553::-;16538:4;16576:3;16565:9;16561:19;16553:27;;16590:71;16658:1;16647:9;16643:17;16634:6;16590:71;:::i;:::-;16671:72;16739:2;16728:9;16724:18;16715:6;16671:72;:::i;:::-;16753;16821:2;16810:9;16806:18;16797:6;16753:72;:::i;:::-;16835;16903:2;16892:9;16888:18;16879:6;16835:72;:::i;:::-;16361:553;;;;;;;:::o;16920:175::-;17060:27;17056:1;17048:6;17044:14;17037:51;16920:175;:::o;17101:366::-;17243:3;17264:67;17328:2;17323:3;17264:67;:::i;:::-;17257:74;;17340:93;17429:3;17340:93;:::i;:::-;17458:2;17453:3;17449:12;17442:19;;17101:366;;;:::o;17473:419::-;17639:4;17677:2;17666:9;17662:18;17654:26;;17726:9;17720:4;17716:20;17712:1;17701:9;17697:17;17690:47;17754:131;17880:4;17754:131;:::i;:::-;17746:139;;17473:419;;;:::o;17898:179::-;18038:31;18034:1;18026:6;18022:14;18015:55;17898:179;:::o;18083:366::-;18225:3;18246:67;18310:2;18305:3;18246:67;:::i;:::-;18239:74;;18322:93;18411:3;18322:93;:::i;:::-;18440:2;18435:3;18431:12;18424:19;;18083:366;;;:::o;18455:419::-;18621:4;18659:2;18648:9;18644:18;18636:26;;18708:9;18702:4;18698:20;18694:1;18683:9;18679:17;18672:47;18736:131;18862:4;18736:131;:::i;:::-;18728:139;;18455:419;;;:::o;18880:775::-;19113:4;19151:3;19140:9;19136:19;19128:27;;19165:71;19233:1;19222:9;19218:17;19209:6;19165:71;:::i;:::-;19246:72;19314:2;19303:9;19299:18;19290:6;19246:72;:::i;:::-;19328;19396:2;19385:9;19381:18;19372:6;19328:72;:::i;:::-;19410;19478:2;19467:9;19463:18;19454:6;19410:72;:::i;:::-;19492:73;19560:3;19549:9;19545:19;19536:6;19492:73;:::i;:::-;19575;19643:3;19632:9;19628:19;19619:6;19575:73;:::i;:::-;18880:775;;;;;;;;;:::o;19661:180::-;19801:32;19797:1;19789:6;19785:14;19778:56;19661:180;:::o;19847:366::-;19989:3;20010:67;20074:2;20069:3;20010:67;:::i;:::-;20003:74;;20086:93;20175:3;20086:93;:::i;:::-;20204:2;20199:3;20195:12;20188:19;;19847:366;;;:::o;20219:419::-;20385:4;20423:2;20412:9;20408:18;20400:26;;20472:9;20466:4;20462:20;20458:1;20447:9;20443:17;20436:47;20500:131;20626:4;20500:131;:::i;:::-;20492:139;;20219:419;;;:::o;20644:225::-;20784:34;20780:1;20772:6;20768:14;20761:58;20853:8;20848:2;20840:6;20836:15;20829:33;20644:225;:::o;20875:366::-;21017:3;21038:67;21102:2;21097:3;21038:67;:::i;:::-;21031:74;;21114:93;21203:3;21114:93;:::i;:::-;21232:2;21227:3;21223:12;21216:19;;20875:366;;;:::o;21247:419::-;21413:4;21451:2;21440:9;21436:18;21428:26;;21500:9;21494:4;21490:20;21486:1;21475:9;21471:17;21464:47;21528:131;21654:4;21528:131;:::i;:::-;21520:139;;21247:419;;;:::o;21672:223::-;21812:34;21808:1;21800:6;21796:14;21789:58;21881:6;21876:2;21868:6;21864:15;21857:31;21672:223;:::o;21901:366::-;22043:3;22064:67;22128:2;22123:3;22064:67;:::i;:::-;22057:74;;22140:93;22229:3;22140:93;:::i;:::-;22258:2;22253:3;22249:12;22242:19;;21901:366;;;:::o;22273:419::-;22439:4;22477:2;22466:9;22462:18;22454:26;;22526:9;22520:4;22516:20;22512:1;22501:9;22497:17;22490:47;22554:131;22680:4;22554:131;:::i;:::-;22546:139;;22273:419;;;:::o;22698:221::-;22838:34;22834:1;22826:6;22822:14;22815:58;22907:4;22902:2;22894:6;22890:15;22883:29;22698:221;:::o;22925:366::-;23067:3;23088:67;23152:2;23147:3;23088:67;:::i;:::-;23081:74;;23164:93;23253:3;23164:93;:::i;:::-;23282:2;23277:3;23273:12;23266:19;;22925:366;;;:::o;23297:419::-;23463:4;23501:2;23490:9;23486:18;23478:26;;23550:9;23544:4;23540:20;23536:1;23525:9;23521:17;23514:47;23578:131;23704:4;23578:131;:::i;:::-;23570:139;;23297:419;;;:::o;23722:179::-;23862:31;23858:1;23850:6;23846:14;23839:55;23722:179;:::o;23907:366::-;24049:3;24070:67;24134:2;24129:3;24070:67;:::i;:::-;24063:74;;24146:93;24235:3;24146:93;:::i;:::-;24264:2;24259:3;24255:12;24248:19;;23907:366;;;:::o;24279:419::-;24445:4;24483:2;24472:9;24468:18;24460:26;;24532:9;24526:4;24522:20;24518:1;24507:9;24503:17;24496:47;24560:131;24686:4;24560:131;:::i;:::-;24552:139;;24279:419;;;:::o;24704:224::-;24844:34;24840:1;24832:6;24828:14;24821:58;24913:7;24908:2;24900:6;24896:15;24889:32;24704:224;:::o;24934:366::-;25076:3;25097:67;25161:2;25156:3;25097:67;:::i;:::-;25090:74;;25173:93;25262:3;25173:93;:::i;:::-;25291:2;25286:3;25282:12;25275:19;;24934:366;;;:::o;25306:419::-;25472:4;25510:2;25499:9;25495:18;25487:26;;25559:9;25553:4;25549:20;25545:1;25534:9;25530:17;25523:47;25587:131;25713:4;25587:131;:::i;:::-;25579:139;;25306:419;;;:::o;25731:222::-;25871:34;25867:1;25859:6;25855:14;25848:58;25940:5;25935:2;25927:6;25923:15;25916:30;25731:222;:::o;25959:366::-;26101:3;26122:67;26186:2;26181:3;26122:67;:::i;:::-;26115:74;;26198:93;26287:3;26198:93;:::i;:::-;26316:2;26311:3;26307:12;26300:19;;25959:366;;;:::o;26331:419::-;26497:4;26535:2;26524:9;26520:18;26512:26;;26584:9;26578:4;26574:20;26570:1;26559:9;26555:17;26548:47;26612:131;26738:4;26612:131;:::i;:::-;26604:139;;26331:419;;;:::o;26756:225::-;26896:34;26892:1;26884:6;26880:14;26873:58;26965:8;26960:2;26952:6;26948:15;26941:33;26756:225;:::o;26987:366::-;27129:3;27150:67;27214:2;27209:3;27150:67;:::i;:::-;27143:74;;27226:93;27315:3;27226:93;:::i;:::-;27344:2;27339:3;27335:12;27328:19;;26987:366;;;:::o;27359:419::-;27525:4;27563:2;27552:9;27548:18;27540:26;;27612:9;27606:4;27602:20;27598:1;27587:9;27583:17;27576:47;27640:131;27766:4;27640:131;:::i;:::-;27632:139;;27359:419;;;:::o;27784:182::-;27924:34;27920:1;27912:6;27908:14;27901:58;27784:182;:::o;27972:366::-;28114:3;28135:67;28199:2;28194:3;28135:67;:::i;:::-;28128:74;;28211:93;28300:3;28211:93;:::i;:::-;28329:2;28324:3;28320:12;28313:19;;27972:366;;;:::o;28344:419::-;28510:4;28548:2;28537:9;28533:18;28525:26;;28597:9;28591:4;28587:20;28583:1;28572:9;28568:17;28561:47;28625:131;28751:4;28625:131;:::i;:::-;28617:139;;28344:419;;;:::o;28769:225::-;28909:34;28905:1;28897:6;28893:14;28886:58;28978:8;28973:2;28965:6;28961:15;28954:33;28769:225;:::o;29000:366::-;29142:3;29163:67;29227:2;29222:3;29163:67;:::i;:::-;29156:74;;29239:93;29328:3;29239:93;:::i;:::-;29357:2;29352:3;29348:12;29341:19;;29000:366;;;:::o;29372:419::-;29538:4;29576:2;29565:9;29561:18;29553:26;;29625:9;29619:4;29615:20;29611:1;29600:9;29596:17;29589:47;29653:131;29779:4;29653:131;:::i;:::-;29645:139;;29372:419;;;:::o;29797:664::-;30002:4;30040:3;30029:9;30025:19;30017:27;;30054:71;30122:1;30111:9;30107:17;30098:6;30054:71;:::i;:::-;30135:72;30203:2;30192:9;30188:18;30179:6;30135:72;:::i;:::-;30217;30285:2;30274:9;30270:18;30261:6;30217:72;:::i;:::-;30299;30367:2;30356:9;30352:18;30343:6;30299:72;:::i;:::-;30381:73;30449:3;30438:9;30434:19;30425:6;30381:73;:::i;:::-;29797:664;;;;;;;;:::o;30467:180::-;30515:77;30512:1;30505:88;30612:4;30609:1;30602:15;30636:4;30633:1;30626:15;30653:185;30693:1;30710:20;30728:1;30710:20;:::i;:::-;30705:25;;30744:20;30762:1;30744:20;:::i;:::-;30739:25;;30783:1;30773:35;;30788:18;;:::i;:::-;30773:35;30830:1;30827;30823:9;30818:14;;30653:185;;;;:::o;30844:170::-;30984:22;30980:1;30972:6;30968:14;30961:46;30844:170;:::o;31020:366::-;31162:3;31183:67;31247:2;31242:3;31183:67;:::i;:::-;31176:74;;31259:93;31348:3;31259:93;:::i;:::-;31377:2;31372:3;31368:12;31361:19;;31020:366;;;:::o;31392:419::-;31558:4;31596:2;31585:9;31581:18;31573:26;;31645:9;31639:4;31635:20;31631:1;31620:9;31616:17;31609:47;31673:131;31799:4;31673:131;:::i;:::-;31665:139;;31392:419;;;:::o;31817:235::-;31957:34;31953:1;31945:6;31941:14;31934:58;32026:18;32021:2;32013:6;32009:15;32002:43;31817:235;:::o;32058:366::-;32200:3;32221:67;32285:2;32280:3;32221:67;:::i;:::-;32214:74;;32297:93;32386:3;32297:93;:::i;:::-;32415:2;32410:3;32406:12;32399:19;;32058:366;;;:::o;32430:419::-;32596:4;32634:2;32623:9;32619:18;32611:26;;32683:9;32677:4;32673:20;32669:1;32658:9;32654:17;32647:47;32711:131;32837:4;32711:131;:::i;:::-;32703:139;;32430:419;;;:::o;32855:332::-;32976:4;33014:2;33003:9;32999:18;32991:26;;33027:71;33095:1;33084:9;33080:17;33071:6;33027:71;:::i;:::-;33108:72;33176:2;33165:9;33161:18;33152:6;33108:72;:::i;:::-;32855:332;;;;;:::o;33193:166::-;33333:18;33329:1;33321:6;33317:14;33310:42;33193:166;:::o;33365:366::-;33507:3;33528:67;33592:2;33587:3;33528:67;:::i;:::-;33521:74;;33604:93;33693:3;33604:93;:::i;:::-;33722:2;33717:3;33713:12;33706:19;;33365:366;;;:::o;33737:419::-;33903:4;33941:2;33930:9;33926:18;33918:26;;33990:9;33984:4;33980:20;33976:1;33965:9;33961:17;33954:47;34018:131;34144:4;34018:131;:::i;:::-;34010:139;;33737:419;;;:::o;34162:148::-;34264:11;34301:3;34286:18;;34162:148;;;;:::o;34316:214::-;34456:66;34452:1;34444:6;34440:14;34433:90;34316:214;:::o;34536:400::-;34696:3;34717:84;34799:1;34794:3;34717:84;:::i;:::-;34710:91;;34810:93;34899:3;34810:93;:::i;:::-;34928:1;34923:3;34919:11;34912:18;;34536:400;;;:::o;34942:79::-;34981:7;35010:5;34999:16;;34942:79;;;:::o;35027:157::-;35132:45;35152:24;35170:5;35152:24;:::i;:::-;35132:45;:::i;:::-;35127:3;35120:58;35027:157;;:::o;35190:663::-;35431:3;35453:148;35597:3;35453:148;:::i;:::-;35446:155;;35611:75;35682:3;35673:6;35611:75;:::i;:::-;35711:2;35706:3;35702:12;35695:19;;35724:75;35795:3;35786:6;35724:75;:::i;:::-;35824:2;35819:3;35815:12;35808:19;;35844:3;35837:10;;35190:663;;;;;:::o;35859:545::-;36032:4;36070:3;36059:9;36055:19;36047:27;;36084:71;36152:1;36141:9;36137:17;36128:6;36084:71;:::i;:::-;36165:68;36229:2;36218:9;36214:18;36205:6;36165:68;:::i;:::-;36243:72;36311:2;36300:9;36296:18;36287:6;36243:72;:::i;:::-;36325;36393:2;36382:9;36378:18;36369:6;36325:72;:::i;:::-;35859:545;;;;;;;:::o;36410:180::-;36458:77;36455:1;36448:88;36555:4;36552:1;36545:15;36579:4;36576:1;36569:15;36596:174;36736:26;36732:1;36724:6;36720:14;36713:50;36596:174;:::o;36776:366::-;36918:3;36939:67;37003:2;36998:3;36939:67;:::i;:::-;36932:74;;37015:93;37104:3;37015:93;:::i;:::-;37133:2;37128:3;37124:12;37117:19;;36776:366;;;:::o;37148:419::-;37314:4;37352:2;37341:9;37337:18;37329:26;;37401:9;37395:4;37391:20;37387:1;37376:9;37372:17;37365:47;37429:131;37555:4;37429:131;:::i;:::-;37421:139;;37148:419;;;:::o;37573:181::-;37713:33;37709:1;37701:6;37697:14;37690:57;37573:181;:::o;37760:366::-;37902:3;37923:67;37987:2;37982:3;37923:67;:::i;:::-;37916:74;;37999:93;38088:3;37999:93;:::i;:::-;38117:2;38112:3;38108:12;38101:19;;37760:366;;;:::o;38132:419::-;38298:4;38336:2;38325:9;38321:18;38313:26;;38385:9;38379:4;38375:20;38371:1;38360:9;38356:17;38349:47;38413:131;38539:4;38413:131;:::i;:::-;38405:139;;38132:419;;;:::o;38557:221::-;38697:34;38693:1;38685:6;38681:14;38674:58;38766:4;38761:2;38753:6;38749:15;38742:29;38557:221;:::o;38784:366::-;38926:3;38947:67;39011:2;39006:3;38947:67;:::i;:::-;38940:74;;39023:93;39112:3;39023:93;:::i;:::-;39141:2;39136:3;39132:12;39125:19;;38784:366;;;:::o;39156:419::-;39322:4;39360:2;39349:9;39345:18;39337:26;;39409:9;39403:4;39399:20;39395:1;39384:9;39380:17;39373:47;39437:131;39563:4;39437:131;:::i;:::-;39429:139;;39156:419;;;:::o;39581:221::-;39721:34;39717:1;39709:6;39705:14;39698:58;39790:4;39785:2;39777:6;39773:15;39766:29;39581:221;:::o;39808:366::-;39950:3;39971:67;40035:2;40030:3;39971:67;:::i;:::-;39964:74;;40047:93;40136:3;40047:93;:::i;:::-;40165:2;40160:3;40156:12;40149:19;;39808:366;;;:::o;40180:419::-;40346:4;40384:2;40373:9;40369:18;40361:26;;40433:9;40427:4;40423:20;40419:1;40408:9;40404:17;40397:47;40461:131;40587:4;40461:131;:::i;:::-;40453:139;;40180:419;;;:::o;40605:181::-;40745:33;40741:1;40733:6;40729:14;40722:57;40605:181;:::o;40792:366::-;40934:3;40955:67;41019:2;41014:3;40955:67;:::i;:::-;40948:74;;41031:93;41120:3;41031:93;:::i;:::-;41149:2;41144:3;41140:12;41133:19;;40792:366;;;:::o;41164:419::-;41330:4;41368:2;41357:9;41353:18;41345:26;;41417:9;41411:4;41407:20;41403:1;41392:9;41388:17;41381:47;41445:131;41571:4;41445:131;:::i;:::-;41437:139;;41164:419;;;:::o;41589:220::-;41729:34;41725:1;41717:6;41713:14;41706:58;41798:3;41793:2;41785:6;41781:15;41774:28;41589:220;:::o;41815:366::-;41957:3;41978:67;42042:2;42037:3;41978:67;:::i;:::-;41971:74;;42054:93;42143:3;42054:93;:::i;:::-;42172:2;42167:3;42163:12;42156:19;;41815:366;;;:::o;42187:419::-;42353:4;42391:2;42380:9;42376:18;42368:26;;42440:9;42434:4;42430:20;42426:1;42415:9;42411:17;42404:47;42468:131;42594:4;42468:131;:::i;:::-;42460:139;;42187:419;;;:::o;42612:221::-;42752:34;42748:1;42740:6;42736:14;42729:58;42821:4;42816:2;42808:6;42804:15;42797:29;42612:221;:::o;42839:366::-;42981:3;43002:67;43066:2;43061:3;43002:67;:::i;:::-;42995:74;;43078:93;43167:3;43078:93;:::i;:::-;43196:2;43191:3;43187:12;43180:19;;42839:366;;;:::o;43211:419::-;43377:4;43415:2;43404:9;43400:18;43392:26;;43464:9;43458:4;43454:20;43450:1;43439:9;43435:17;43428:47;43492:131;43618:4;43492:131;:::i;:::-;43484:139;;43211:419;;;:::o;43636:226::-;43776:34;43772:1;43764:6;43760:14;43753:58;43845:9;43840:2;43832:6;43828:15;43821:34;43636:226;:::o;43868:366::-;44010:3;44031:67;44095:2;44090:3;44031:67;:::i;:::-;44024:74;;44107:93;44196:3;44107:93;:::i;:::-;44225:2;44220:3;44216:12;44209:19;;43868:366;;;:::o;44240:419::-;44406:4;44444:2;44433:9;44429:18;44421:26;;44493:9;44487:4;44483:20;44479:1;44468:9;44464:17;44457:47;44521:131;44647:4;44521:131;:::i;:::-;44513:139;;44240:419;;;:::o

Swarm Source

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