ERC-20
Overview
Max Total Supply
99,920.979884142118232314 vUNIFI
Holders
52
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
23.05911741 vUNIFIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UnifiProtocolVotingToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-24 */ // File: @openzeppelin/contracts/utils/math/SafeCast.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. 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 downcasted) { downcasted = int248(value); require(downcasted == value, "SafeCast: value doesn't fit in 248 bits"); } /** * @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 downcasted) { downcasted = int240(value); require(downcasted == value, "SafeCast: value doesn't fit in 240 bits"); } /** * @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 downcasted) { downcasted = int232(value); require(downcasted == value, "SafeCast: value doesn't fit in 232 bits"); } /** * @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 downcasted) { downcasted = int224(value); require(downcasted == value, "SafeCast: value doesn't fit in 224 bits"); } /** * @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 downcasted) { downcasted = int216(value); require(downcasted == value, "SafeCast: value doesn't fit in 216 bits"); } /** * @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 downcasted) { downcasted = int208(value); require(downcasted == value, "SafeCast: value doesn't fit in 208 bits"); } /** * @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 downcasted) { downcasted = int200(value); require(downcasted == value, "SafeCast: value doesn't fit in 200 bits"); } /** * @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 downcasted) { downcasted = int192(value); require(downcasted == value, "SafeCast: value doesn't fit in 192 bits"); } /** * @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 downcasted) { downcasted = int184(value); require(downcasted == value, "SafeCast: value doesn't fit in 184 bits"); } /** * @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 downcasted) { downcasted = int176(value); require(downcasted == value, "SafeCast: value doesn't fit in 176 bits"); } /** * @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 downcasted) { downcasted = int168(value); require(downcasted == value, "SafeCast: value doesn't fit in 168 bits"); } /** * @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 downcasted) { downcasted = int160(value); require(downcasted == value, "SafeCast: value doesn't fit in 160 bits"); } /** * @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 downcasted) { downcasted = int152(value); require(downcasted == value, "SafeCast: value doesn't fit in 152 bits"); } /** * @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 downcasted) { downcasted = int144(value); require(downcasted == value, "SafeCast: value doesn't fit in 144 bits"); } /** * @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 downcasted) { downcasted = int136(value); require(downcasted == value, "SafeCast: value doesn't fit in 136 bits"); } /** * @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 downcasted) { downcasted = int128(value); require(downcasted == value, "SafeCast: value doesn't fit in 128 bits"); } /** * @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 downcasted) { downcasted = int120(value); require(downcasted == value, "SafeCast: value doesn't fit in 120 bits"); } /** * @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 downcasted) { downcasted = int112(value); require(downcasted == value, "SafeCast: value doesn't fit in 112 bits"); } /** * @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 downcasted) { downcasted = int104(value); require(downcasted == value, "SafeCast: value doesn't fit in 104 bits"); } /** * @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 downcasted) { downcasted = int96(value); require(downcasted == value, "SafeCast: value doesn't fit in 96 bits"); } /** * @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 downcasted) { downcasted = int88(value); require(downcasted == value, "SafeCast: value doesn't fit in 88 bits"); } /** * @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 downcasted) { downcasted = int80(value); require(downcasted == value, "SafeCast: value doesn't fit in 80 bits"); } /** * @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 downcasted) { downcasted = int72(value); require(downcasted == value, "SafeCast: value doesn't fit in 72 bits"); } /** * @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 downcasted) { downcasted = int64(value); require(downcasted == value, "SafeCast: value doesn't fit in 64 bits"); } /** * @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 downcasted) { downcasted = int56(value); require(downcasted == value, "SafeCast: value doesn't fit in 56 bits"); } /** * @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 downcasted) { downcasted = int48(value); require(downcasted == value, "SafeCast: value doesn't fit in 48 bits"); } /** * @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 downcasted) { downcasted = int40(value); require(downcasted == value, "SafeCast: value doesn't fit in 40 bits"); } /** * @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 downcasted) { downcasted = int32(value); require(downcasted == value, "SafeCast: value doesn't fit in 32 bits"); } /** * @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 downcasted) { downcasted = int24(value); require(downcasted == value, "SafeCast: value doesn't fit in 24 bits"); } /** * @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 downcasted) { downcasted = int16(value); require(downcasted == value, "SafeCast: value doesn't fit in 16 bits"); } /** * @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 downcasted) { downcasted = int8(value); require(downcasted == value, "SafeCast: value doesn't fit in 8 bits"); } /** * @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/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/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.8.0) (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 // Deprecated in v4.8 } 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"); } } /** * @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 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/EIP712.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/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/access/Ownable2Step.sol // OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() external { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } } // 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.8.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.openzeppelin.com/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 `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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.8.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.8.1) (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`. // // Initially we check if the block is recent to narrow the search range. // 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 length = ckpts.length; uint256 low = 0; uint256 high = length; if (length > 5) { uint256 mid = length - Math.sqrt(length); if (_unsafeAccess(ckpts, mid).fromBlock > blockNumber) { high = mid; } else { low = mid + 1; } } while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(ckpts, mid).fromBlock > blockNumber) { high = mid; } else { low = mid + 1; } } return high == 0 ? 0 : _unsafeAccess(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 {IVotes-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 {IVotes-DelegateChanged} and {IVotes-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; Checkpoint memory oldCkpt = pos == 0 ? Checkpoint(0, 0) : _unsafeAccess(ckpts, pos - 1); oldWeight = oldCkpt.votes; newWeight = op(oldWeight, delta); if (pos > 0 && oldCkpt.fromBlock == block.number) { _unsafeAccess(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; } /** * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds. */ function _unsafeAccess(Checkpoint[] storage ckpts, uint256 pos) private pure returns (Checkpoint storage result) { assembly { mstore(0, ckpts.slot) result.slot := add(keccak256(0, 0x20), pos) } } } // 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: vUNIFI.sol pragma solidity ^0.8.9; contract UnifiProtocolVotingToken is ERC20Burnable, ERC20Votes, Ownable2Step { /// @notice this role has rights for transfer/mint/burning tokens, such us a staking contract address private _controller = address(0); mapping(address => bool) _blacklist; event ControllerUpdated(address newController); event BlacklistUpdated(address indexed user, bool value); constructor() ERC20("Unifi Protocol Voting Token", "vUNIFI") ERC20Permit("Unifi Protocol Voting Token") {} modifier onlyOwnerOrController() { require( msg.sender == owner() || msg.sender == _controller, "UnifiProtocolVotingToken: onlyOwnerOrController" ); _; } /// @notice Function to mint vUNIFI tokens. Only callable by the owner & controller. /// @param to The address to mint the tokens to. /// @param amount The amount of tokens to mint. function mint(address to, uint256 amount) public onlyOwnerOrController { require(!isBlackListed(to), "UnifiProtocolVotingToken: Blacklisted"); _mint(to, amount); } /// @notice Function to burn vUNIFI tokens. /// @param from The address to burn the tokens from. /// @param amount The amount of tokens to burn. function burnFrom(address from, uint256 amount) public override { _burn(from, amount); } /// @notice Function to burn vUNIFI tokens. /// @param amount The amount of tokens to burn. function burn(uint256 amount) public override { _burn(msg.sender, amount); } /// @notice Set a new controller address. /// @param newController The new controller address. function setController(address newController) public onlyOwner { _controller = newController; emit ControllerUpdated(newController); } /// @notice Get the current controller address. function controller() public view returns (address) { return _controller; } /// @notice Function to blacklist an address. Only callable by the owner. /// @param user The address to blacklist. /// @param value The blacklist value. True to blacklist an address, false to remove an address from the blacklist. function blacklistUpdate( address user, bool value ) public virtual onlyOwner { _blacklist[user] = value; emit BlacklistUpdated(user, value); } /// @notice Function to check if an address is blacklisted. /// @param user The address to check. function isBlackListed(address user) public view returns (bool) { return _blacklist[user]; } // The following functions are overrides required by Solidity. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { super._beforeTokenTransfer(from, to, amount); } 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) onlyOwnerOrController { super._burn(account, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public override onlyOwnerOrController returns (bool) { return super.transferFrom(sender, recipient, amount); } function transfer( address recipient, uint256 amount ) public override onlyOwnerOrController returns (bool) { return super.transfer(recipient, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newController","type":"address"}],"name":"ControllerUpdated","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":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","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":"address","name":"user","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","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":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"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":"user","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"newController","type":"address"}],"name":"setController","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]
Contract Creation Code
6101406040526000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005457600080fd5b506040518060400160405280601b81526020017f556e6966692050726f746f636f6c20566f74696e6720546f6b656e0000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280601b81526020017f556e6966692050726f746f636f6c20566f74696e6720546f6b656e00000000008152506040518060400160405280600681526020017f76554e494649000000000000000000000000000000000000000000000000000081525081600390816200013f9190620005ef565b508060049081620001519190620005ef565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001bd8184846200022d60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050806101208181525050505050505050620002276200021b6200026960201b60201c565b6200027160201b60201c565b620007a4565b600083838346306040516020016200024a95949392919062000747565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b600b60006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055620002ac81620002af60201b6200168c1760201c565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f757607f821691505b6020821081036200040d576200040c620003af565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000438565b62000483868362000438565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004d0620004ca620004c4846200049b565b620004a5565b6200049b565b9050919050565b6000819050919050565b620004ec83620004af565b62000504620004fb82620004d7565b84845462000445565b825550505050565b600090565b6200051b6200050c565b62000528818484620004e1565b505050565b5b8181101562000550576200054460008262000511565b6001810190506200052e565b5050565b601f8211156200059f57620005698162000413565b620005748462000428565b8101602085101562000584578190505b6200059c620005938562000428565b8301826200052d565b50505b505050565b600082821c905092915050565b6000620005c460001984600802620005a4565b1980831691505092915050565b6000620005df8383620005b1565b9150826002028217905092915050565b620005fa8262000375565b67ffffffffffffffff81111562000616576200061562000380565b5b620006228254620003de565b6200062f82828562000554565b600060209050601f83116001811462000667576000841562000652578287015190505b6200065e8582620005d1565b865550620006ce565b601f198416620006778662000413565b60005b82811015620006a1578489015182556001820191506020850194506020810190506200067a565b86831015620006c15784890151620006bd601f891682620005b1565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b620006eb81620006d6565b82525050565b620006fc816200049b565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200072f8262000702565b9050919050565b620007418162000722565b82525050565b600060a0820190506200075e6000830188620006e0565b6200076d6020830187620006e0565b6200077c6040830186620006e0565b6200078b6060830185620006f1565b6200079a608083018462000736565b9695505050505050565b60805160a05160c05160e05161010051610120516148d2620007f46000396000611a0001526000611a4201526000611a2101526000611956015260006119ac015260006119d501526148d26000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80637ecebe001161011a578063b351dfe8116100ad578063e30c39781161007c578063e30c397814610623578063e47d606014610641578063f1127ed814610671578063f2fde38b146106a1578063f77c4791146106bd57610206565b8063b351dfe81461059f578063c3cda520146105bb578063d505accf146105d7578063dd62ed3e146105f357610206565b806395d89b41116100e957806395d89b41146104f15780639ab24eb01461050f578063a457c2d71461053f578063a9059cbb1461056f57610206565b80637ecebe00146104575780638da5cb5b146104875780638e539e8c146104a557806392eefe9b146104d557610206565b806340c10f191161019d5780636fcfff451161016c5780636fcfff45146103c757806370a08231146103f7578063715018a61461042757806379ba50971461043157806379cc67901461043b57610206565b806340c10f191461034357806342966c681461035f578063587cde1e1461037b5780635c19a95c146103ab57610206565b8063313ce567116101d9578063313ce567146102a75780633644e515146102c557806339509351146102e35780633a46b1a81461031357610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b6102136106db565b6040516102209190613205565b60405180910390f35b610243600480360381019061023e91906132c0565b61076d565b604051610250919061331b565b60405180910390f35b610261610790565b60405161026e9190613345565b60405180910390f35b610291600480360381019061028c9190613360565b61079a565b60405161029e919061331b565b60405180910390f35b6102af61087d565b6040516102bc91906133cf565b60405180910390f35b6102cd610886565b6040516102da9190613403565b60405180910390f35b6102fd60048036038101906102f891906132c0565b610895565b60405161030a919061331b565b60405180910390f35b61032d600480360381019061032891906132c0565b6108cc565b60405161033a9190613345565b60405180910390f35b61035d600480360381019061035891906132c0565b610960565b005b6103796004803603810190610374919061341e565b610a84565b005b6103956004803603810190610390919061344b565b610a91565b6040516103a29190613487565b60405180910390f35b6103c560048036038101906103c0919061344b565b610afa565b005b6103e160048036038101906103dc919061344b565b610b0e565b6040516103ee91906134c1565b60405180910390f35b610411600480360381019061040c919061344b565b610b62565b60405161041e9190613345565b60405180910390f35b61042f610baa565b005b610439610bbe565b005b610455600480360381019061045091906132c0565b610c4b565b005b610471600480360381019061046c919061344b565b610c59565b60405161047e9190613345565b60405180910390f35b61048f610ca9565b60405161049c9190613487565b60405180910390f35b6104bf60048036038101906104ba919061341e565b610cd3565b6040516104cc9190613345565b60405180910390f35b6104ef60048036038101906104ea919061344b565b610d29565b005b6104f9610dac565b6040516105069190613205565b60405180910390f35b6105296004803603810190610524919061344b565b610e3e565b6040516105369190613345565b60405180910390f35b610559600480360381019061055491906132c0565b610f4f565b604051610566919061331b565b60405180910390f35b610589600480360381019061058491906132c0565b610fc6565b604051610596919061331b565b60405180910390f35b6105b960048036038101906105b49190613508565b6110a7565b005b6105d560048036038101906105d091906135a0565b611158565b005b6105f160048036038101906105ec919061362d565b61125c565b005b61060d600480360381019061060891906136cf565b61139e565b60405161061a9190613345565b60405180910390f35b61062b611425565b6040516106389190613487565b60405180910390f35b61065b6004803603810190610656919061344b565b61144f565b604051610668919061331b565b60405180910390f35b61068b6004803603810190610686919061373b565b6114a5565b60405161069891906137f0565b60405180910390f35b6106bb60048036038101906106b6919061344b565b6115b5565b005b6106c5611662565b6040516106d29190613487565b60405180910390f35b6060600380546106ea9061383a565b80601f01602080910402602001604051908101604052809291908181526020018280546107169061383a565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b600080610778611752565b905061078581858561175a565b600191505092915050565b6000600254905090565b60006107a4610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061082a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610860906138dd565b60405180910390fd5b610874848484611923565b90509392505050565b60006012905090565b6000610890611952565b905090565b6000806108a0611752565b90506108c18185856108b2858961139e565b6108bc919061392c565b61175a565b600191505092915050565b6000438210610910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610907906139ac565b60405180910390fd5b610958600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611a6c565b905092915050565b610968610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109ee5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906138dd565b60405180910390fd5b610a368261144f565b15610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613a3e565b60405180910390fd5b610a808282611bbd565b5050565b610a8e3382611bcb565b50565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b0b610b05611752565b82611ca6565b50565b6000610b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611dc0565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bb2611e13565b610bbc6000611e91565b565b6000610bc8611752565b90508073ffffffffffffffffffffffffffffffffffffffff16610be9611425565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613ad0565b60405180910390fd5b610c4881611e91565b50565b610c558282611bcb565b5050565b6000610ca2600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ec2565b9050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906139ac565b60405180910390fd5b610d22600983611a6c565b9050919050565b610d31611e13565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1304018cfe79741dcf02ba6b61d39cc4757d59395d03224d9925c7aa8300214681604051610da19190613487565b60405180910390a150565b606060048054610dbb9061383a565b80601f0160208091040260200160405190810160405280929190818152602001828054610de79061383a565b8015610e345780601f10610e0957610100808354040283529160200191610e34565b820191906000526020600020905b815481529060010190602001808311610e1757829003601f168201915b5050505050905090565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610f2657600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610eda9190613af0565b81548110610eeb57610eea613b24565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610f29565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610f5a611752565b90506000610f68828661139e565b905083811015610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490613bc5565b60405180910390fd5b610fba828686840361175a565b60019250505092915050565b6000610fd0610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110565750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906138dd565b60405180910390fd5b61109f8383611ed0565b905092915050565b6110af611e13565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac8260405161114c919061331b565b60405180910390a25050565b8342111561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290613c31565b60405180910390fd5b60006111fd6111f57fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8989896040516020016111da9493929190613c51565b60405160208183030381529060405280519060200120611ef3565b858585611f0d565b905061120881611f38565b8614611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090613ce2565b60405180910390fd5b6112538188611ca6565b50505050505050565b8342111561129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613d4e565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886112ce8c611f38565b896040516020016112e496959493929190613d6e565b604051602081830303815290604052805190602001209050600061130782611ef3565b9050600061131782878787611f0d565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613e1b565b60405180910390fd5b6113928a8a8a61175a565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ad613137565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff168154811061150457611503613b24565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b6115bd611e13565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661161d610ca9565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090613ead565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613f3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119169190613345565b60405180910390a3505050565b60008061192e611752565b905061193b858285611f96565b611946858585612022565b60019150509392505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156119ce57507f000000000000000000000000000000000000000000000000000000000000000046145b156119fb577f00000000000000000000000000000000000000000000000000000000000000009050611a69565b611a667f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612298565b90505b90565b600080838054905090506000808290506005831115611ae2576000611a90846122d2565b84611a9b9190613af0565b905085611aa888836123cb565b60000160009054906101000a900463ffffffff1663ffffffff161115611ad057809150611ae0565b600181611add919061392c565b92505b505b5b80821015611b42576000611af783836123e0565b905085611b0488836123cb565b60000160009054906101000a900463ffffffff1663ffffffff161115611b2c57809150611b3c565b600181611b39919061392c565b92505b50611ae3565b60008114611b9157611b6086600183611b5b9190613af0565b6123cb565b60000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611b94565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16935050505092915050565b611bc78282612406565b5050565b611bd3610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611c595750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906138dd565b60405180910390fd5b611ca28282612493565b5050565b6000611cb183610a91565b90506000611cbe84610b62565b905082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611dba8284836124b1565b50505050565b600063ffffffff8016821115611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290613fd1565b60405180910390fd5b819050919050565b611e1b611752565b73ffffffffffffffffffffffffffffffffffffffff16611e39610ca9565b73ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e869061403d565b60405180910390fd5b565b600b60006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611ebf8161168c565b50565b600081600001549050919050565b600080611edb611752565b9050611ee8818585612022565b600191505092915050565b6000611f06611f00611952565b836126aa565b9050919050565b6000806000611f1e878787876126dd565b91509150611f2b816127bf565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611f8581611ec2565b9150611f9081612925565b50919050565b6000611fa2848461139e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461201c578181101561200e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612005906140a9565b60405180910390fd5b61201b848484840361175a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120889061413b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f7906141cd565b60405180910390fd5b61210b83838361293b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121889061425f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161227f9190613345565b60405180910390a361229284848461294b565b50505050565b600083838346306040516020016122b395949392919061427f565b6040516020818303038152906040528051906020012090509392505050565b60008082036122e457600090506123c6565b600060016122f18461295b565b901c6001901b9050600181848161230b5761230a6142d2565b5b048201901c90506001818481612324576123236142d2565b5b048201901c9050600181848161233d5761233c6142d2565b5b048201901c90506001818481612356576123556142d2565b5b048201901c9050600181848161236f5761236e6142d2565b5b048201901c90506001818481612388576123876142d2565b5b048201901c905060018184816123a1576123a06142d2565b5b048201901c90506123c2818285816123bc576123bb6142d2565b5b04612a3c565b9150505b919050565b60008260005281602060002001905092915050565b600060028284186123f19190614301565b8284166123fe919061392c565b905092915050565b6124108282612a55565b612418612bab565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661243e610790565b111561247f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612476906143a4565b60405180910390fd5b61248d6009612bcf83612be5565b50505050565b61249d8282612eb4565b6124ab600961308183612be5565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ed5750600081115b156126a557600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125cb57600080612574600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061308185612be5565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516125c09291906143c4565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126a45760008061264d600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bcf85612be5565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516126999291906143c4565b60405180910390a250505b5b505050565b600082826040516020016126bf929190614465565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156127185760006003915091506127b6565b60006001878787876040516000815260200160405260405161273d949392919061449c565b6020604051602081039080840390855afa15801561275f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127ad576000600192509250506127b6565b80600092509250505b94509492505050565b600060048111156127d3576127d26144e1565b5b8160048111156127e6576127e56144e1565b5b03156129225760016004811115612800576127ff6144e1565b5b816004811115612813576128126144e1565b5b03612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a9061455c565b60405180910390fd5b60026004811115612867576128666144e1565b5b81600481111561287a576128796144e1565b5b036128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b1906145c8565b60405180910390fd5b600360048111156128ce576128cd6144e1565b5b8160048111156128e1576128e06144e1565b5b03612921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129189061465a565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b612946838383613097565b505050565b61295683838361309c565b505050565b600080600090506000608084901c111561297d57608083901c92506080810190505b6000604084901c111561299857604083901c92506040810190505b6000602084901c11156129b357602083901c92506020810190505b6000601084901c11156129ce57601083901c92506010810190505b6000600884901c11156129e957600883901c92506008810190505b6000600484901c1115612a0457600483901c92506004810190505b6000600284901c1115612a1f57600283901c92506002810190505b6000600184901c1115612a33576001810190505b80915050919050565b6000818310612a4b5781612a4d565b825b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb906146c6565b60405180910390fd5b612ad06000838361293b565b8060026000828254612ae2919061392c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b939190613345565b60405180910390a3612ba76000838361294b565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008183612bdd919061392c565b905092915050565b6000806000858054905090506000808214612cb457612c1087600184612c0b9190613af0565b6123cb565b6040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050612cf0565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152505b905080602001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169350612d2584868863ffffffff16565b9250600082118015612d40575043816000015163ffffffff16145b15612dba57612d4e836130c7565b612d6488600185612d5f9190613af0565b6123cb565b60000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550612eaa565b866040518060400160405280612dcf43611dc0565b63ffffffff168152602001612de3866130c7565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b5050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1a90614758565b60405180910390fd5b612f2f8260008361293b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac906147ea565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130689190613345565b60405180910390a361307c8360008461294b565b505050565b6000818361308f9190613af0565b905092915050565b505050565b6130a7838383613132565b6130c26130b384610a91565b6130bc84610a91565b836124b1565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff801682111561312a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131219061487c565b60405180910390fd5b819050919050565b505050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156131af578082015181840152602081019050613194565b60008484015250505050565b6000601f19601f8301169050919050565b60006131d782613175565b6131e18185613180565b93506131f1818560208601613191565b6131fa816131bb565b840191505092915050565b6000602082019050818103600083015261321f81846131cc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132578261322c565b9050919050565b6132678161324c565b811461327257600080fd5b50565b6000813590506132848161325e565b92915050565b6000819050919050565b61329d8161328a565b81146132a857600080fd5b50565b6000813590506132ba81613294565b92915050565b600080604083850312156132d7576132d6613227565b5b60006132e585828601613275565b92505060206132f6858286016132ab565b9150509250929050565b60008115159050919050565b61331581613300565b82525050565b6000602082019050613330600083018461330c565b92915050565b61333f8161328a565b82525050565b600060208201905061335a6000830184613336565b92915050565b60008060006060848603121561337957613378613227565b5b600061338786828701613275565b935050602061339886828701613275565b92505060406133a9868287016132ab565b9150509250925092565b600060ff82169050919050565b6133c9816133b3565b82525050565b60006020820190506133e460008301846133c0565b92915050565b6000819050919050565b6133fd816133ea565b82525050565b600060208201905061341860008301846133f4565b92915050565b60006020828403121561343457613433613227565b5b6000613442848285016132ab565b91505092915050565b60006020828403121561346157613460613227565b5b600061346f84828501613275565b91505092915050565b6134818161324c565b82525050565b600060208201905061349c6000830184613478565b92915050565b600063ffffffff82169050919050565b6134bb816134a2565b82525050565b60006020820190506134d660008301846134b2565b92915050565b6134e581613300565b81146134f057600080fd5b50565b600081359050613502816134dc565b92915050565b6000806040838503121561351f5761351e613227565b5b600061352d85828601613275565b925050602061353e858286016134f3565b9150509250929050565b613551816133b3565b811461355c57600080fd5b50565b60008135905061356e81613548565b92915050565b61357d816133ea565b811461358857600080fd5b50565b60008135905061359a81613574565b92915050565b60008060008060008060c087890312156135bd576135bc613227565b5b60006135cb89828a01613275565b96505060206135dc89828a016132ab565b95505060406135ed89828a016132ab565b94505060606135fe89828a0161355f565b935050608061360f89828a0161358b565b92505060a061362089828a0161358b565b9150509295509295509295565b600080600080600080600060e0888a03121561364c5761364b613227565b5b600061365a8a828b01613275565b975050602061366b8a828b01613275565b965050604061367c8a828b016132ab565b955050606061368d8a828b016132ab565b945050608061369e8a828b0161355f565b93505060a06136af8a828b0161358b565b92505060c06136c08a828b0161358b565b91505092959891949750929550565b600080604083850312156136e6576136e5613227565b5b60006136f485828601613275565b925050602061370585828601613275565b9150509250929050565b613718816134a2565b811461372357600080fd5b50565b6000813590506137358161370f565b92915050565b6000806040838503121561375257613751613227565b5b600061376085828601613275565b925050602061377185828601613726565b9150509250929050565b613784816134a2565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6137bb8161378a565b82525050565b6040820160008201516137d7600085018261377b565b5060208201516137ea60208501826137b2565b50505050565b600060408201905061380560008301846137c1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061385257607f821691505b6020821081036138655761386461380b565b5b50919050565b7f556e69666950726f746f636f6c566f74696e67546f6b656e3a206f6e6c794f7760008201527f6e65724f72436f6e74726f6c6c65720000000000000000000000000000000000602082015250565b60006138c7602f83613180565b91506138d28261386b565b604082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139378261328a565b91506139428361328a565b925082820190508082111561395a576139596138fd565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b6000613996601f83613180565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f556e69666950726f746f636f6c566f74696e67546f6b656e3a20426c61636b6c60008201527f6973746564000000000000000000000000000000000000000000000000000000602082015250565b6000613a28602583613180565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613aba602983613180565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b6000613afb8261328a565b9150613b068361328a565b9250828203905081811115613b1e57613b1d6138fd565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613baf602583613180565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b6000613c1b601d83613180565b9150613c2682613be5565b602082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b6000608082019050613c6660008301876133f4565b613c736020830186613478565b613c806040830185613336565b613c8d6060830184613336565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b6000613ccc601983613180565b9150613cd782613c96565b602082019050919050565b60006020820190508181036000830152613cfb81613cbf565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613d38601d83613180565b9150613d4382613d02565b602082019050919050565b60006020820190508181036000830152613d6781613d2b565b9050919050565b600060c082019050613d8360008301896133f4565b613d906020830188613478565b613d9d6040830187613478565b613daa6060830186613336565b613db76080830185613336565b613dc460a0830184613336565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000613e05601e83613180565b9150613e1082613dcf565b602082019050919050565b60006020820190508181036000830152613e3481613df8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e97602483613180565b9150613ea282613e3b565b604082019050919050565b60006020820190508181036000830152613ec681613e8a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f29602283613180565b9150613f3482613ecd565b604082019050919050565b60006020820190508181036000830152613f5881613f1c565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b6000613fbb602683613180565b9150613fc682613f5f565b604082019050919050565b60006020820190508181036000830152613fea81613fae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614027602083613180565b915061403282613ff1565b602082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614093601d83613180565b915061409e8261405d565b602082019050919050565b600060208201905081810360008301526140c281614086565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614125602583613180565b9150614130826140c9565b604082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141b7602383613180565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614249602683613180565b9150614254826141ed565b604082019050919050565b600060208201905081810360008301526142788161423c565b9050919050565b600060a08201905061429460008301886133f4565b6142a160208301876133f4565b6142ae60408301866133f4565b6142bb6060830185613336565b6142c86080830184613478565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430c8261328a565b91506143178361328a565b925082614327576143266142d2565b5b828204905092915050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b600061438e603083613180565b915061439982614332565b604082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b60006040820190506143d96000830185613336565b6143e66020830184613336565b9392505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061442e6002836143ed565b9150614439826143f8565b600282019050919050565b6000819050919050565b61445f61445a826133ea565b614444565b82525050565b600061447082614421565b915061447c828561444e565b60208201915061448c828461444e565b6020820191508190509392505050565b60006080820190506144b160008301876133f4565b6144be60208301866133c0565b6144cb60408301856133f4565b6144d860608301846133f4565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614546601883613180565b915061455182614510565b602082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006145b2601f83613180565b91506145bd8261457c565b602082019050919050565b600060208201905081810360008301526145e1816145a5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614644602283613180565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006146b0601f83613180565b91506146bb8261467a565b602082019050919050565b600060208201905081810360008301526146df816146a3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614742602183613180565b915061474d826146e6565b604082019050919050565b6000602082019050818103600083015261477181614735565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006147d4602283613180565b91506147df82614778565b604082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b6000614866602783613180565b91506148718261480a565b604082019050919050565b6000602082019050818103600083015261489581614859565b905091905056fea26469706673582212200c6fabc290d08a22c6265f1359f59a00b8d4f9ed6abcf390277026f9507d0e8164736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c80637ecebe001161011a578063b351dfe8116100ad578063e30c39781161007c578063e30c397814610623578063e47d606014610641578063f1127ed814610671578063f2fde38b146106a1578063f77c4791146106bd57610206565b8063b351dfe81461059f578063c3cda520146105bb578063d505accf146105d7578063dd62ed3e146105f357610206565b806395d89b41116100e957806395d89b41146104f15780639ab24eb01461050f578063a457c2d71461053f578063a9059cbb1461056f57610206565b80637ecebe00146104575780638da5cb5b146104875780638e539e8c146104a557806392eefe9b146104d557610206565b806340c10f191161019d5780636fcfff451161016c5780636fcfff45146103c757806370a08231146103f7578063715018a61461042757806379ba50971461043157806379cc67901461043b57610206565b806340c10f191461034357806342966c681461035f578063587cde1e1461037b5780635c19a95c146103ab57610206565b8063313ce567116101d9578063313ce567146102a75780633644e515146102c557806339509351146102e35780633a46b1a81461031357610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b6102136106db565b6040516102209190613205565b60405180910390f35b610243600480360381019061023e91906132c0565b61076d565b604051610250919061331b565b60405180910390f35b610261610790565b60405161026e9190613345565b60405180910390f35b610291600480360381019061028c9190613360565b61079a565b60405161029e919061331b565b60405180910390f35b6102af61087d565b6040516102bc91906133cf565b60405180910390f35b6102cd610886565b6040516102da9190613403565b60405180910390f35b6102fd60048036038101906102f891906132c0565b610895565b60405161030a919061331b565b60405180910390f35b61032d600480360381019061032891906132c0565b6108cc565b60405161033a9190613345565b60405180910390f35b61035d600480360381019061035891906132c0565b610960565b005b6103796004803603810190610374919061341e565b610a84565b005b6103956004803603810190610390919061344b565b610a91565b6040516103a29190613487565b60405180910390f35b6103c560048036038101906103c0919061344b565b610afa565b005b6103e160048036038101906103dc919061344b565b610b0e565b6040516103ee91906134c1565b60405180910390f35b610411600480360381019061040c919061344b565b610b62565b60405161041e9190613345565b60405180910390f35b61042f610baa565b005b610439610bbe565b005b610455600480360381019061045091906132c0565b610c4b565b005b610471600480360381019061046c919061344b565b610c59565b60405161047e9190613345565b60405180910390f35b61048f610ca9565b60405161049c9190613487565b60405180910390f35b6104bf60048036038101906104ba919061341e565b610cd3565b6040516104cc9190613345565b60405180910390f35b6104ef60048036038101906104ea919061344b565b610d29565b005b6104f9610dac565b6040516105069190613205565b60405180910390f35b6105296004803603810190610524919061344b565b610e3e565b6040516105369190613345565b60405180910390f35b610559600480360381019061055491906132c0565b610f4f565b604051610566919061331b565b60405180910390f35b610589600480360381019061058491906132c0565b610fc6565b604051610596919061331b565b60405180910390f35b6105b960048036038101906105b49190613508565b6110a7565b005b6105d560048036038101906105d091906135a0565b611158565b005b6105f160048036038101906105ec919061362d565b61125c565b005b61060d600480360381019061060891906136cf565b61139e565b60405161061a9190613345565b60405180910390f35b61062b611425565b6040516106389190613487565b60405180910390f35b61065b6004803603810190610656919061344b565b61144f565b604051610668919061331b565b60405180910390f35b61068b6004803603810190610686919061373b565b6114a5565b60405161069891906137f0565b60405180910390f35b6106bb60048036038101906106b6919061344b565b6115b5565b005b6106c5611662565b6040516106d29190613487565b60405180910390f35b6060600380546106ea9061383a565b80601f01602080910402602001604051908101604052809291908181526020018280546107169061383a565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b600080610778611752565b905061078581858561175a565b600191505092915050565b6000600254905090565b60006107a4610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061082a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610860906138dd565b60405180910390fd5b610874848484611923565b90509392505050565b60006012905090565b6000610890611952565b905090565b6000806108a0611752565b90506108c18185856108b2858961139e565b6108bc919061392c565b61175a565b600191505092915050565b6000438210610910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610907906139ac565b60405180910390fd5b610958600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611a6c565b905092915050565b610968610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109ee5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906138dd565b60405180910390fd5b610a368261144f565b15610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613a3e565b60405180910390fd5b610a808282611bbd565b5050565b610a8e3382611bcb565b50565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b0b610b05611752565b82611ca6565b50565b6000610b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611dc0565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bb2611e13565b610bbc6000611e91565b565b6000610bc8611752565b90508073ffffffffffffffffffffffffffffffffffffffff16610be9611425565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613ad0565b60405180910390fd5b610c4881611e91565b50565b610c558282611bcb565b5050565b6000610ca2600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ec2565b9050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906139ac565b60405180910390fd5b610d22600983611a6c565b9050919050565b610d31611e13565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1304018cfe79741dcf02ba6b61d39cc4757d59395d03224d9925c7aa8300214681604051610da19190613487565b60405180910390a150565b606060048054610dbb9061383a565b80601f0160208091040260200160405190810160405280929190818152602001828054610de79061383a565b8015610e345780601f10610e0957610100808354040283529160200191610e34565b820191906000526020600020905b815481529060010190602001808311610e1757829003601f168201915b5050505050905090565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610f2657600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610eda9190613af0565b81548110610eeb57610eea613b24565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610f29565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610f5a611752565b90506000610f68828661139e565b905083811015610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490613bc5565b60405180910390fd5b610fba828686840361175a565b60019250505092915050565b6000610fd0610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110565750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906138dd565b60405180910390fd5b61109f8383611ed0565b905092915050565b6110af611e13565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac8260405161114c919061331b565b60405180910390a25050565b8342111561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290613c31565b60405180910390fd5b60006111fd6111f57fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8989896040516020016111da9493929190613c51565b60405160208183030381529060405280519060200120611ef3565b858585611f0d565b905061120881611f38565b8614611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090613ce2565b60405180910390fd5b6112538188611ca6565b50505050505050565b8342111561129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613d4e565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886112ce8c611f38565b896040516020016112e496959493929190613d6e565b604051602081830303815290604052805190602001209050600061130782611ef3565b9050600061131782878787611f0d565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613e1b565b60405180910390fd5b6113928a8a8a61175a565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ad613137565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff168154811061150457611503613b24565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b6115bd611e13565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661161d610ca9565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090613ead565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613f3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119169190613345565b60405180910390a3505050565b60008061192e611752565b905061193b858285611f96565b611946858585612022565b60019150509392505050565b60007f0000000000000000000000006b5e07063b3cd19bef0d9e9f66d22db5d517f52a73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156119ce57507f000000000000000000000000000000000000000000000000000000000000000146145b156119fb577fc282add9ff3dafdfb02c0bc15816c5a571db2c87a49392b5975a2458ff5a4ba99050611a69565b611a667f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f71b3602e8656520dcd4ec59308996947fcabd743c4ad17f287dacf917d69f2727fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6612298565b90505b90565b600080838054905090506000808290506005831115611ae2576000611a90846122d2565b84611a9b9190613af0565b905085611aa888836123cb565b60000160009054906101000a900463ffffffff1663ffffffff161115611ad057809150611ae0565b600181611add919061392c565b92505b505b5b80821015611b42576000611af783836123e0565b905085611b0488836123cb565b60000160009054906101000a900463ffffffff1663ffffffff161115611b2c57809150611b3c565b600181611b39919061392c565b92505b50611ae3565b60008114611b9157611b6086600183611b5b9190613af0565b6123cb565b60000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611b94565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16935050505092915050565b611bc78282612406565b5050565b611bd3610ca9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611c595750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906138dd565b60405180910390fd5b611ca28282612493565b5050565b6000611cb183610a91565b90506000611cbe84610b62565b905082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611dba8284836124b1565b50505050565b600063ffffffff8016821115611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290613fd1565b60405180910390fd5b819050919050565b611e1b611752565b73ffffffffffffffffffffffffffffffffffffffff16611e39610ca9565b73ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e869061403d565b60405180910390fd5b565b600b60006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611ebf8161168c565b50565b600081600001549050919050565b600080611edb611752565b9050611ee8818585612022565b600191505092915050565b6000611f06611f00611952565b836126aa565b9050919050565b6000806000611f1e878787876126dd565b91509150611f2b816127bf565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611f8581611ec2565b9150611f9081612925565b50919050565b6000611fa2848461139e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461201c578181101561200e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612005906140a9565b60405180910390fd5b61201b848484840361175a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120889061413b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f7906141cd565b60405180910390fd5b61210b83838361293b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121889061425f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161227f9190613345565b60405180910390a361229284848461294b565b50505050565b600083838346306040516020016122b395949392919061427f565b6040516020818303038152906040528051906020012090509392505050565b60008082036122e457600090506123c6565b600060016122f18461295b565b901c6001901b9050600181848161230b5761230a6142d2565b5b048201901c90506001818481612324576123236142d2565b5b048201901c9050600181848161233d5761233c6142d2565b5b048201901c90506001818481612356576123556142d2565b5b048201901c9050600181848161236f5761236e6142d2565b5b048201901c90506001818481612388576123876142d2565b5b048201901c905060018184816123a1576123a06142d2565b5b048201901c90506123c2818285816123bc576123bb6142d2565b5b04612a3c565b9150505b919050565b60008260005281602060002001905092915050565b600060028284186123f19190614301565b8284166123fe919061392c565b905092915050565b6124108282612a55565b612418612bab565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661243e610790565b111561247f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612476906143a4565b60405180910390fd5b61248d6009612bcf83612be5565b50505050565b61249d8282612eb4565b6124ab600961308183612be5565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ed5750600081115b156126a557600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125cb57600080612574600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061308185612be5565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516125c09291906143c4565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126a45760008061264d600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bcf85612be5565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516126999291906143c4565b60405180910390a250505b5b505050565b600082826040516020016126bf929190614465565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156127185760006003915091506127b6565b60006001878787876040516000815260200160405260405161273d949392919061449c565b6020604051602081039080840390855afa15801561275f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127ad576000600192509250506127b6565b80600092509250505b94509492505050565b600060048111156127d3576127d26144e1565b5b8160048111156127e6576127e56144e1565b5b03156129225760016004811115612800576127ff6144e1565b5b816004811115612813576128126144e1565b5b03612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a9061455c565b60405180910390fd5b60026004811115612867576128666144e1565b5b81600481111561287a576128796144e1565b5b036128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b1906145c8565b60405180910390fd5b600360048111156128ce576128cd6144e1565b5b8160048111156128e1576128e06144e1565b5b03612921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129189061465a565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b612946838383613097565b505050565b61295683838361309c565b505050565b600080600090506000608084901c111561297d57608083901c92506080810190505b6000604084901c111561299857604083901c92506040810190505b6000602084901c11156129b357602083901c92506020810190505b6000601084901c11156129ce57601083901c92506010810190505b6000600884901c11156129e957600883901c92506008810190505b6000600484901c1115612a0457600483901c92506004810190505b6000600284901c1115612a1f57600283901c92506002810190505b6000600184901c1115612a33576001810190505b80915050919050565b6000818310612a4b5781612a4d565b825b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb906146c6565b60405180910390fd5b612ad06000838361293b565b8060026000828254612ae2919061392c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b939190613345565b60405180910390a3612ba76000838361294b565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008183612bdd919061392c565b905092915050565b6000806000858054905090506000808214612cb457612c1087600184612c0b9190613af0565b6123cb565b6040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050612cf0565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152505b905080602001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169350612d2584868863ffffffff16565b9250600082118015612d40575043816000015163ffffffff16145b15612dba57612d4e836130c7565b612d6488600185612d5f9190613af0565b6123cb565b60000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550612eaa565b866040518060400160405280612dcf43611dc0565b63ffffffff168152602001612de3866130c7565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b5050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1a90614758565b60405180910390fd5b612f2f8260008361293b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac906147ea565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130689190613345565b60405180910390a361307c8360008461294b565b505050565b6000818361308f9190613af0565b905092915050565b505050565b6130a7838383613132565b6130c26130b384610a91565b6130bc84610a91565b836124b1565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff801682111561312a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131219061487c565b60405180910390fd5b819050919050565b505050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156131af578082015181840152602081019050613194565b60008484015250505050565b6000601f19601f8301169050919050565b60006131d782613175565b6131e18185613180565b93506131f1818560208601613191565b6131fa816131bb565b840191505092915050565b6000602082019050818103600083015261321f81846131cc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132578261322c565b9050919050565b6132678161324c565b811461327257600080fd5b50565b6000813590506132848161325e565b92915050565b6000819050919050565b61329d8161328a565b81146132a857600080fd5b50565b6000813590506132ba81613294565b92915050565b600080604083850312156132d7576132d6613227565b5b60006132e585828601613275565b92505060206132f6858286016132ab565b9150509250929050565b60008115159050919050565b61331581613300565b82525050565b6000602082019050613330600083018461330c565b92915050565b61333f8161328a565b82525050565b600060208201905061335a6000830184613336565b92915050565b60008060006060848603121561337957613378613227565b5b600061338786828701613275565b935050602061339886828701613275565b92505060406133a9868287016132ab565b9150509250925092565b600060ff82169050919050565b6133c9816133b3565b82525050565b60006020820190506133e460008301846133c0565b92915050565b6000819050919050565b6133fd816133ea565b82525050565b600060208201905061341860008301846133f4565b92915050565b60006020828403121561343457613433613227565b5b6000613442848285016132ab565b91505092915050565b60006020828403121561346157613460613227565b5b600061346f84828501613275565b91505092915050565b6134818161324c565b82525050565b600060208201905061349c6000830184613478565b92915050565b600063ffffffff82169050919050565b6134bb816134a2565b82525050565b60006020820190506134d660008301846134b2565b92915050565b6134e581613300565b81146134f057600080fd5b50565b600081359050613502816134dc565b92915050565b6000806040838503121561351f5761351e613227565b5b600061352d85828601613275565b925050602061353e858286016134f3565b9150509250929050565b613551816133b3565b811461355c57600080fd5b50565b60008135905061356e81613548565b92915050565b61357d816133ea565b811461358857600080fd5b50565b60008135905061359a81613574565b92915050565b60008060008060008060c087890312156135bd576135bc613227565b5b60006135cb89828a01613275565b96505060206135dc89828a016132ab565b95505060406135ed89828a016132ab565b94505060606135fe89828a0161355f565b935050608061360f89828a0161358b565b92505060a061362089828a0161358b565b9150509295509295509295565b600080600080600080600060e0888a03121561364c5761364b613227565b5b600061365a8a828b01613275565b975050602061366b8a828b01613275565b965050604061367c8a828b016132ab565b955050606061368d8a828b016132ab565b945050608061369e8a828b0161355f565b93505060a06136af8a828b0161358b565b92505060c06136c08a828b0161358b565b91505092959891949750929550565b600080604083850312156136e6576136e5613227565b5b60006136f485828601613275565b925050602061370585828601613275565b9150509250929050565b613718816134a2565b811461372357600080fd5b50565b6000813590506137358161370f565b92915050565b6000806040838503121561375257613751613227565b5b600061376085828601613275565b925050602061377185828601613726565b9150509250929050565b613784816134a2565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6137bb8161378a565b82525050565b6040820160008201516137d7600085018261377b565b5060208201516137ea60208501826137b2565b50505050565b600060408201905061380560008301846137c1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061385257607f821691505b6020821081036138655761386461380b565b5b50919050565b7f556e69666950726f746f636f6c566f74696e67546f6b656e3a206f6e6c794f7760008201527f6e65724f72436f6e74726f6c6c65720000000000000000000000000000000000602082015250565b60006138c7602f83613180565b91506138d28261386b565b604082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139378261328a565b91506139428361328a565b925082820190508082111561395a576139596138fd565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b6000613996601f83613180565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f556e69666950726f746f636f6c566f74696e67546f6b656e3a20426c61636b6c60008201527f6973746564000000000000000000000000000000000000000000000000000000602082015250565b6000613a28602583613180565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613aba602983613180565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b6000613afb8261328a565b9150613b068361328a565b9250828203905081811115613b1e57613b1d6138fd565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613baf602583613180565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b6000613c1b601d83613180565b9150613c2682613be5565b602082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b6000608082019050613c6660008301876133f4565b613c736020830186613478565b613c806040830185613336565b613c8d6060830184613336565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b6000613ccc601983613180565b9150613cd782613c96565b602082019050919050565b60006020820190508181036000830152613cfb81613cbf565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613d38601d83613180565b9150613d4382613d02565b602082019050919050565b60006020820190508181036000830152613d6781613d2b565b9050919050565b600060c082019050613d8360008301896133f4565b613d906020830188613478565b613d9d6040830187613478565b613daa6060830186613336565b613db76080830185613336565b613dc460a0830184613336565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000613e05601e83613180565b9150613e1082613dcf565b602082019050919050565b60006020820190508181036000830152613e3481613df8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e97602483613180565b9150613ea282613e3b565b604082019050919050565b60006020820190508181036000830152613ec681613e8a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f29602283613180565b9150613f3482613ecd565b604082019050919050565b60006020820190508181036000830152613f5881613f1c565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b6000613fbb602683613180565b9150613fc682613f5f565b604082019050919050565b60006020820190508181036000830152613fea81613fae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614027602083613180565b915061403282613ff1565b602082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614093601d83613180565b915061409e8261405d565b602082019050919050565b600060208201905081810360008301526140c281614086565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614125602583613180565b9150614130826140c9565b604082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141b7602383613180565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614249602683613180565b9150614254826141ed565b604082019050919050565b600060208201905081810360008301526142788161423c565b9050919050565b600060a08201905061429460008301886133f4565b6142a160208301876133f4565b6142ae60408301866133f4565b6142bb6060830185613336565b6142c86080830184613478565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430c8261328a565b91506143178361328a565b925082614327576143266142d2565b5b828204905092915050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b600061438e603083613180565b915061439982614332565b604082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b60006040820190506143d96000830185613336565b6143e66020830184613336565b9392505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061442e6002836143ed565b9150614439826143f8565b600282019050919050565b6000819050919050565b61445f61445a826133ea565b614444565b82525050565b600061447082614421565b915061447c828561444e565b60208201915061448c828461444e565b6020820191508190509392505050565b60006080820190506144b160008301876133f4565b6144be60208301866133c0565b6144cb60408301856133f4565b6144d860608301846133f4565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614546601883613180565b915061455182614510565b602082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006145b2601f83613180565b91506145bd8261457c565b602082019050919050565b600060208201905081810360008301526145e1816145a5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614644602283613180565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006146b0601f83613180565b91506146bb8261467a565b602082019050919050565b600060208201905081810360008301526146df816146a3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614742602183613180565b915061474d826146e6565b604082019050919050565b6000602082019050818103600083015261477181614735565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006147d4602283613180565b91506147df82614778565b604082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b6000614866602783613180565b91506148718261480a565b604082019050919050565b6000602082019050818103600083015261489581614859565b905091905056fea26469706673582212200c6fabc290d08a22c6265f1359f59a00b8d4f9ed6abcf390277026f9507d0e8164736f6c63430008120033
Deployed Bytecode Sourcemap
108160:3945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82189:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84540:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83309:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111673:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83151:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96196:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86025:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99398:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109105:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109671:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98772:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102284:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98528:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83480:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73608:103;;;:::i;:::-;;76214:210;;;:::i;:::-;;109459:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95938:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72960:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99955:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109874:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82408:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98984:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86766:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111912:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110435:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102480:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95227:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84069:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75302:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110742:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98298:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75602:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110092:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82189:100;82243:13;82276:5;82269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82189:100;:::o;84540:201::-;84623:4;84640:13;84656:12;:10;:12::i;:::-;84640:28;;84679:32;84688:5;84695:7;84704:6;84679:8;:32::i;:::-;84729:4;84722:11;;;84540:201;;;;:::o;83309:108::-;83370:7;83397:12;;83390:19;;83309:108;:::o;111673:231::-;111827:4;108769:7;:5;:7::i;:::-;108755:21;;:10;:21;;;:50;;;;108794:11;;;;;;;;;;;108780:25;;:10;:25;;;108755:50;108733:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;111851:45:::1;111870:6;111878:9;111889:6;111851:18;:45::i;:::-;111844:52;;111673:231:::0;;;;;:::o;83151:93::-;83209:5;83234:2;83227:9;;83151:93;:::o;96196:115::-;96256:7;96283:20;:18;:20::i;:::-;96276:27;;96196:115;:::o;86025:238::-;86113:4;86130:13;86146:12;:10;:12::i;:::-;86130:28;;86169:64;86178:5;86185:7;86222:10;86194:25;86204:5;86211:7;86194:9;:25::i;:::-;:38;;;;:::i;:::-;86169:8;:64::i;:::-;86251:4;86244:11;;;86025:238;;;;:::o;99398:268::-;99496:7;99538:12;99524:11;:26;99516:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;99604:54;99623:12;:21;99636:7;99623:21;;;;;;;;;;;;;;;99646:11;99604:18;:54::i;:::-;99597:61;;99398:268;;;;:::o;109105:186::-;108769:7;:5;:7::i;:::-;108755:21;;:10;:21;;;:50;;;;108794:11;;;;;;;;;;;108780:25;;:10;:25;;;108755:50;108733:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;109196:17:::1;109210:2;109196:13;:17::i;:::-;109195:18;109187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;109266:17;109272:2;109276:6;109266:5;:17::i;:::-;109105:186:::0;;:::o;109671:90::-;109728:25;109734:10;109746:6;109728:5;:25::i;:::-;109671:90;:::o;98772:128::-;98846:7;98873:10;:19;98884:7;98873:19;;;;;;;;;;;;;;;;;;;;;;;;;98866:26;;98772:128;;;:::o;102284:114::-;102356:34;102366:12;:10;:12::i;:::-;102380:9;102356;:34::i;:::-;102284:114;:::o;98528:151::-;98598:6;98624:47;98642:12;:21;98655:7;98642:21;;;;;;;;;;;;;;;:28;;;;98624:17;:47::i;:::-;98617:54;;98528:151;;;:::o;83480:127::-;83554:7;83581:9;:18;83591:7;83581:18;;;;;;;;;;;;;;;;83574:25;;83480:127;;;:::o;73608:103::-;72846:13;:11;:13::i;:::-;73673:30:::1;73700:1;73673:18;:30::i;:::-;73608:103::o:0;76214:210::-;76261:14;76278:12;:10;:12::i;:::-;76261:29;;76327:6;76309:24;;:14;:12;:14::i;:::-;:24;;;76301:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;76390:26;76409:6;76390:18;:26::i;:::-;76250:174;76214:210::o;109459:102::-;109534:19;109540:4;109546:6;109534:5;:19::i;:::-;109459:102;;:::o;95938:128::-;96007:7;96034:24;:7;:14;96042:5;96034:14;;;;;;;;;;;;;;;:22;:24::i;:::-;96027:31;;95938:128;;;:::o;72960:87::-;73006:7;73033:6;;;;;;;;;;;73026:13;;72960:87;:::o;99955:259::-;100042:7;100084:12;100070:11;:26;100062:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;100150:56;100169:23;100194:11;100150:18;:56::i;:::-;100143:63;;99955:259;;;:::o;109874:157::-;72846:13;:11;:13::i;:::-;109962::::1;109948:11;;:27;;;;;;;;;;;;;;;;;;109991:32;110009:13;109991:32;;;;;;:::i;:::-;;;;;;;;109874:157:::0;:::o;82408:104::-;82464:13;82497:7;82490:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82408:104;:::o;98984:212::-;99057:7;99077:11;99091:12;:21;99104:7;99091:21;;;;;;;;;;;;;;;:28;;;;99077:42;;99144:1;99137:3;:8;:51;;99152:12;:21;99165:7;99152:21;;;;;;;;;;;;;;;99180:1;99174:3;:7;;;;:::i;:::-;99152:30;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;;;;;;;;;99137:51;;;99148:1;99137:51;99130:58;;;;;98984:212;;;:::o;86766:436::-;86859:4;86876:13;86892:12;:10;:12::i;:::-;86876:28;;86915:24;86942:25;86952:5;86959:7;86942:9;:25::i;:::-;86915:52;;87006:15;86986:16;:35;;86978:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;87099:60;87108:5;87115:7;87143:15;87124:16;:34;87099:8;:60::i;:::-;87190:4;87183:11;;;;86766:436;;;;:::o;111912:190::-;112037:4;108769:7;:5;:7::i;:::-;108755:21;;:10;:21;;;:50;;;;108794:11;;;;;;;;;;;108780:25;;:10;:25;;;108755:50;108733:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;112061:33:::1;112076:9;112087:6;112061:14;:33::i;:::-;112054:40;;111912:190:::0;;;;:::o;110435:189::-;72846:13;:11;:13::i;:::-;110566:5:::1;110547:10;:16;110558:4;110547:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;110604:4;110587:29;;;110610:5;110587:29;;;;;;:::i;:::-;;;;;;;;110435:189:::0;;:::o;102480:591::-;102707:6;102688:15;:25;;102680:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;102758:14;102775:174;102803:87;97978:71;102863:9;102874:5;102881:6;102830:58;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;102820:69;;;;;;102803:16;:87::i;:::-;102905:1;102921;102937;102775:13;:174::i;:::-;102758:191;;102977:17;102987:6;102977:9;:17::i;:::-;102968:5;:26;102960:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;103035:28;103045:6;103053:9;103035;:28::i;:::-;102669:402;102480:591;;;;;;:::o;95227:645::-;95471:8;95452:15;:27;;95444:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;95526:18;94402:95;95586:5;95593:7;95602:5;95609:16;95619:5;95609:9;:16::i;:::-;95627:8;95557:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;95547:90;;;;;;95526:111;;95650:12;95665:28;95682:10;95665:16;:28::i;:::-;95650:43;;95706:14;95723:28;95737:4;95743:1;95746;95749;95723:13;:28::i;:::-;95706:45;;95780:5;95770:15;;:6;:15;;;95762:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;95833:31;95842:5;95849:7;95858:5;95833:8;:31::i;:::-;95433:439;;;95227:645;;;;;;;:::o;84069:151::-;84158:7;84185:11;:18;84197:5;84185:18;;;;;;;;;;;;;;;:27;84204:7;84185:27;;;;;;;;;;;;;;;;84178:34;;84069:151;;;;:::o;75302:101::-;75355:7;75382:13;;;;;;;;;;;75375:20;;75302:101;:::o;110742:106::-;110800:4;110824:10;:16;110835:4;110824:16;;;;;;;;;;;;;;;;;;;;;;;;;110817:23;;110742:106;;;:::o;98298:150::-;98377:17;;:::i;:::-;98414:12;:21;98427:7;98414:21;;;;;;;;;;;;;;;98436:3;98414:26;;;;;;;;;;:::i;:::-;;;;;;;;;98407:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98298:150;;;;:::o;75602:181::-;72846:13;:11;:13::i;:::-;75708:8:::1;75692:13;;:24;;;;;;;;;;;;;;;;;;75766:8;75732:43;;75757:7;:5;:7::i;:::-;75732:43;;;;;;;;;;;;75602:181:::0;:::o;110092:89::-;110135:7;110162:11;;;;;;;;;;;110155:18;;110092:89;:::o;74227:191::-;74301:16;74320:6;;;;;;;;;;;74301:25;;74346:8;74337:6;;:17;;;;;;;;;;;;;;;;;;74401:8;74370:40;;74391:8;74370:40;;;;;;;;;;;;74290:128;74227:191;:::o;71511:98::-;71564:7;71591:10;71584:17;;71511:98;:::o;90793:380::-;90946:1;90929:19;;:5;:19;;;90921:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;91027:1;91008:21;;:7;:21;;;91000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;91111:6;91081:11;:18;91093:5;91081:18;;;;;;;;;;;;;;;:27;91100:7;91081:27;;;;;;;;;;;;;;;:36;;;;91149:7;91133:32;;91142:5;91133:32;;;91158:6;91133:32;;;;;;:::i;:::-;;;;;;;;90793:380;;;:::o;85321:295::-;85452:4;85469:15;85487:12;:10;:12::i;:::-;85469:30;;85510:38;85526:4;85532:7;85541:6;85510:15;:38::i;:::-;85559:27;85569:4;85575:2;85579:6;85559:9;:27::i;:::-;85604:4;85597:11;;;85321:295;;;;;:::o;67066:314::-;67119:7;67160:12;67143:29;;67151:4;67143:29;;;:66;;;;;67193:16;67176:13;:33;67143:66;67139:234;;;67233:24;67226:31;;;;67139:234;67297:64;67319:10;67331:12;67345:15;67297:21;:64::i;:::-;67290:71;;67066:314;;:::o;100303:1895::-;100402:7;101503:14;101520:5;:12;;;;101503:29;;101545:11;101571:12;101586:6;101571:21;;101618:1;101609:6;:10;101605:251;;;101636:11;101659:17;101669:6;101659:9;:17::i;:::-;101650:6;:26;;;;:::i;:::-;101636:40;;101733:11;101695:25;101709:5;101716:3;101695:13;:25::i;:::-;:35;;;;;;;;;;;;:49;;;101691:154;;;101772:3;101765:10;;101691:154;;;101828:1;101822:3;:7;;;;:::i;:::-;101816:13;;101691:154;101621:235;101605:251;101868;101881:4;101875:3;:10;101868:251;;;101902:11;101916:23;101929:3;101934:4;101916:12;:23::i;:::-;101902:37;;101996:11;101958:25;101972:5;101979:3;101958:13;:25::i;:::-;:35;;;;;;;;;;;;:49;;;101954:154;;;102035:3;102028:10;;101954:154;;;102091:1;102085:3;:7;;;;:::i;:::-;102079:13;;101954:154;101887:232;101868:251;;;102146:1;102138:4;:9;:52;;102154:30;102168:5;102182:1;102175:4;:8;;;;:::i;:::-;102154:13;:30::i;:::-;:36;;;;;;;;;;;;102138:52;;;102150:1;102138:52;102131:59;;;;;;;100303:1895;;;;:::o;111331:147::-;111447:23;111459:2;111463:6;111447:11;:23::i;:::-;111331:147;;:::o;111486:179::-;108769:7;:5;:7::i;:::-;108755:21;;:10;:21;;;:50;;;;108794:11;;;;;;;;;;;108780:25;;:10;:25;;;108755:50;108733:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;111629:28:::1;111641:7;111650:6;111629:11;:28::i;:::-;111486:179:::0;;:::o;104542:388::-;104627:23;104653:20;104663:9;104653;:20::i;:::-;104627:46;;104684:24;104711:20;104721:9;104711;:20::i;:::-;104684:47;;104766:9;104742:10;:21;104753:9;104742:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;104837:9;104793:54;;104820:15;104793:54;;104809:9;104793:54;;;;;;;;;;;;104860:62;104877:15;104894:9;104905:16;104860;:62::i;:::-;104616:314;;104542:388;;:::o;15786:190::-;15842:6;15878:16;15869:25;;:5;:25;;15861:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;15962:5;15948:20;;15786:190;;;:::o;73125:132::-;73200:12;:10;:12::i;:::-;73189:23;;:7;:5;:7::i;:::-;:23;;;73181:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73125:132::o;75973:156::-;76063:13;;76056:20;;;;;;;;;;;76087:34;76112:8;76087:24;:34::i;:::-;75973:156;:::o;39280:114::-;39345:7;39372;:14;;;39365:21;;39280:114;;;:::o;83813:193::-;83892:4;83909:13;83925:12;:10;:12::i;:::-;83909:28;;83948;83958:5;83965:2;83969:6;83948:9;:28::i;:::-;83994:4;83987:11;;;83813:193;;;;:::o;68293:167::-;68370:7;68397:55;68419:20;:18;:20::i;:::-;68441:10;68397:21;:55::i;:::-;68390:62;;68293:167;;;:::o;61939:279::-;62067:7;62088:17;62107:18;62129:25;62140:4;62146:1;62149;62152;62129:10;:25::i;:::-;62087:67;;;;62165:18;62177:5;62165:11;:18::i;:::-;62201:9;62194:16;;;;61939:279;;;;;;:::o;96449:207::-;96509:15;96537:30;96570:7;:14;96578:5;96570:14;;;;;;;;;;;;;;;96537:47;;96605:15;:5;:13;:15::i;:::-;96595:25;;96631:17;:5;:15;:17::i;:::-;96526:130;96449:207;;;:::o;91464:453::-;91599:24;91626:25;91636:5;91643:7;91626:9;:25::i;:::-;91599:52;;91686:17;91666:16;:37;91662:248;;91748:6;91728:16;:26;;91720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;91832:51;91841:5;91848:7;91876:6;91857:16;:25;91832:8;:51::i;:::-;91662:248;91588:329;91464:453;;;:::o;87672:840::-;87819:1;87803:18;;:4;:18;;;87795:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;87896:1;87882:16;;:2;:16;;;87874:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;87951:38;87972:4;87978:2;87982:6;87951:20;:38::i;:::-;88002:19;88024:9;:15;88034:4;88024:15;;;;;;;;;;;;;;;;88002:37;;88073:6;88058:11;:21;;88050:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;88190:6;88176:11;:20;88158:9;:15;88168:4;88158:15;;;;;;;;;;;;;;;:38;;;;88393:6;88376:9;:13;88386:2;88376:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;88443:2;88428:26;;88437:4;88428:26;;;88447:6;88428:26;;;;;;:::i;:::-;;;;;;;;88467:37;88487:4;88493:2;88497:6;88467:19;:37::i;:::-;87784:728;87672:840;;;:::o;67388:263::-;67532:7;67580:8;67590;67600:11;67613:13;67636:4;67569:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67559:84;;;;;;67552:91;;67388:263;;;;;:::o;46335:1673::-;46383:7;46412:1;46407;:6;46403:47;;46437:1;46430:8;;;;46403:47;47141:14;47175:1;47164:7;47169:1;47164:4;:7::i;:::-;:12;;47158:1;:19;;47141:36;;47643:1;47632:6;47628:1;:10;;;;;:::i;:::-;;;47619:6;:19;47618:26;;47609:35;;47693:1;47682:6;47678:1;:10;;;;;:::i;:::-;;;47669:6;:19;47668:26;;47659:35;;47743:1;47732:6;47728:1;:10;;;;;:::i;:::-;;;47719:6;:19;47718:26;;47709:35;;47793:1;47782:6;47778:1;:10;;;;;:::i;:::-;;;47769:6;:19;47768:26;;47759:35;;47843:1;47832:6;47828:1;:10;;;;;:::i;:::-;;;47819:6;:19;47818:26;;47809:35;;47893:1;47882:6;47878:1;:10;;;;;:::i;:::-;;;47869:6;:19;47868:26;;47859:35;;47943:1;47932:6;47928:1;:10;;;;;:::i;:::-;;;47919:6;:19;47918:26;;47909:35;;47966:23;47970:6;47982;47978:1;:10;;;;;:::i;:::-;;;47966:3;:23::i;:::-;47959:30;;;46335:1673;;;;:::o;106687:244::-;106773:25;106845:10;106842:1;106835:21;106909:3;106902:4;106899:1;106889:18;106885:28;106870:43;;106687:244;;;;:::o;40736:156::-;40798:7;40883:1;40878;40874;:5;40873:11;;;;:::i;:::-;40868:1;40864;:5;40863:21;;;;:::i;:::-;40856:28;;40736:156;;;;:::o;103377:290::-;103462:28;103474:7;103483:6;103462:11;:28::i;:::-;103526:12;:10;:12::i;:::-;103509:29;;:13;:11;:13::i;:::-;:29;;103501:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;103604:55;103621:23;103646:4;103652:6;103604:16;:55::i;:::-;;;103377:290;;:::o;103761:194::-;103846:28;103858:7;103867:6;103846:11;:28::i;:::-;103887:60;103904:23;103929:9;103940:6;103887:16;:60::i;:::-;;;103761:194;;:::o;104938:643::-;105070:3;105063:10;;:3;:10;;;;:24;;;;;105086:1;105077:6;:10;105063:24;105059:515;;;105123:1;105108:17;;:3;:17;;;105104:224;;105147:17;105166;105187:54;105204:12;:17;105217:3;105204:17;;;;;;;;;;;;;;;105223:9;105234:6;105187:16;:54::i;:::-;105146:95;;;;105286:3;105265:47;;;105291:9;105302;105265:47;;;;;;;:::i;:::-;;;;;;;;105127:201;;105104:224;105363:1;105348:17;;:3;:17;;;105344:219;;105387:17;105406;105427:49;105444:12;:17;105457:3;105444:17;;;;;;;;;;;;;;;105463:4;105469:6;105427:16;:49::i;:::-;105386:90;;;;105521:3;105500:47;;;105526:9;105537;105500:47;;;;;;;:::i;:::-;;;;;;;;105367:196;;105344:219;105059:515;104938:643;;;:::o;63630:196::-;63723:7;63789:15;63806:10;63760:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63750:68;;;;;;63743:75;;63630:196;;;;:::o;60280:1520::-;60411:7;60420:12;61345:66;61340:1;61332:10;;:79;61328:163;;;61444:1;61448:30;61428:51;;;;;;61328:163;61588:14;61605:24;61615:4;61621:1;61624;61627;61605:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61588:41;;61662:1;61644:20;;:6;:20;;;61640:103;;61697:1;61701:29;61681:50;;;;;;;61640:103;61763:6;61771:20;61755:37;;;;;60280:1520;;;;;;;;:::o;55672:521::-;55750:20;55741:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;55737:449;55787:7;55737:449;55848:29;55839:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;55835:351;;55894:34;;;;;;;;;;:::i;:::-;;;;;;;;55835:351;55959:35;55950:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;55946:240;;56011:41;;;;;;;;;;:::i;:::-;;;;;;;;55946:240;56083:30;56074:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;56070:116;;56130:44;;;;;;;;;;:::i;:::-;;;;;;;;56070:116;55672:521;;:::o;39402:127::-;39509:1;39491:7;:14;;;:19;;;;;;;;;;;39402:127;:::o;110924:187::-;111059:44;111086:4;111092:2;111096:6;111059:26;:44::i;:::-;110924:187;;;:::o;111119:204::-;111272:43;111298:4;111304:2;111308:6;111272:25;:43::i;:::-;111119:204;;;:::o;48485:1019::-;48537:7;48557:14;48574:1;48557:18;;48630:1;48624:3;48615:5;:12;;:16;48611:102;;;48662:3;48652:13;;;;;48694:3;48684:13;;;;48611:102;48745:1;48740:2;48731:5;:11;;:15;48727:99;;;48777:2;48767:12;;;;;48808:2;48798:12;;;;48727:99;48858:1;48853:2;48844:5;:11;;:15;48840:99;;;48890:2;48880:12;;;;;48921:2;48911:12;;;;48840:99;48971:1;48966:2;48957:5;:11;;:15;48953:99;;;49003:2;48993:12;;;;;49034:2;49024:12;;;;48953:99;49083:1;49079;49070:5;:10;;:14;49066:96;;;49115:1;49105:11;;;;;49145:1;49135:11;;;;49066:96;49193:1;49189;49180:5;:10;;:14;49176:96;;;49225:1;49215:11;;;;;49255:1;49245:11;;;;49176:96;49303:1;49299;49290:5;:10;;:14;49286:96;;;49335:1;49325:11;;;;;49365:1;49355:11;;;;49286:96;49413:1;49409;49400:5;:10;;:14;49396:66;;;49445:1;49435:11;;;;49396:66;49490:6;49483:13;;;48485:1019;;;:::o;40511:106::-;40569:7;40600:1;40596;:5;:13;;40608:1;40596:13;;;40604:1;40596:13;40589:20;;40511:106;;;;:::o;88799:548::-;88902:1;88883:21;;:7;:21;;;88875:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;88953:49;88982:1;88986:7;88995:6;88953:20;:49::i;:::-;89031:6;89015:12;;:22;;;;;;;:::i;:::-;;;;;;;;89208:6;89186:9;:18;89196:7;89186:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;89262:7;89241:37;;89258:1;89241:37;;;89271:6;89241:37;;;;;;:::i;:::-;;;;;;;;89291:48;89319:1;89323:7;89332:6;89291:19;:48::i;:::-;88799:548;;:::o;103178:105::-;103231:7;103258:17;103251:24;;103178:105;:::o;106330:98::-;106388:7;106419:1;106415;:5;;;;:::i;:::-;106408:12;;106330:98;;;;:::o;105589:733::-;105763:17;105782;105812:11;105826:5;:12;;;;105812:26;;105851:25;105886:1;105879:3;:8;:59;;105909:29;105923:5;105936:1;105930:3;:7;;;;:::i;:::-;105909:13;:29::i;:::-;105879:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105890:16;;;;;;;;105901:1;105890:16;;;;;;105904:1;105890:16;;;;;105879:59;105851:87;;105963:7;:13;;;105951:25;;;;105999:20;106002:9;106013:5;105999:2;:20;;:::i;:::-;105987:32;;106042:1;106036:3;:7;:44;;;;;106068:12;106047:7;:17;;;:33;;;106036:44;106032:283;;;106135:29;106154:9;106135:18;:29::i;:::-;106097;106111:5;106124:1;106118:3;:7;;;;:::i;:::-;106097:13;:29::i;:::-;:35;;;:67;;;;;;;;;;;;;;;;;;106032:283;;;106197:5;106208:94;;;;;;;;106231:31;106249:12;106231:17;:31::i;:::-;106208:94;;;;;;106271:29;106290:9;106271:18;:29::i;:::-;106208:94;;;;;106197:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106032:283;105801:521;;105589:733;;;;;;:::o;89680:675::-;89783:1;89764:21;;:7;:21;;;89756:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;89836:49;89857:7;89874:1;89878:6;89836:20;:49::i;:::-;89898:22;89923:9;:18;89933:7;89923:18;;;;;;;;;;;;;;;;89898:43;;89978:6;89960:14;:24;;89952:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;90097:6;90080:14;:23;90059:9;:18;90069:7;90059:18;;;;;;;;;;;;;;;:44;;;;90214:6;90198:12;;:22;;;;;;;;;;;90275:1;90249:37;;90258:7;90249:37;;;90279:6;90249:37;;;;;;:::i;:::-;;;;;;;;90299:48;90319:7;90336:1;90340:6;90299:19;:48::i;:::-;89745:610;89680:675;;:::o;106436:103::-;106499:7;106530:1;106526;:5;;;;:::i;:::-;106519:12;;106436:103;;;;:::o;92517:125::-;;;;:::o;104102:262::-;104244:43;104270:4;104276:2;104280:6;104244:25;:43::i;:::-;104300:56;104317:15;104327:4;104317:9;:15::i;:::-;104334:13;104344:2;104334:9;:13::i;:::-;104349:6;104300:16;:56::i;:::-;104102:262;;;:::o;2950:195::-;3007:7;3044:17;3035:26;;:5;:26;;3027:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3131:5;3116:21;;2950:195;;;:::o;93246:124::-;;;;:::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:116::-;6824:21;6839:5;6824:21;:::i;:::-;6817:5;6814:32;6804:60;;6860:1;6857;6850:12;6804:60;6754:116;:::o;6876:133::-;6919:5;6957:6;6944:20;6935:29;;6973:30;6997:5;6973:30;:::i;:::-;6876:133;;;;:::o;7015:468::-;7080:6;7088;7137:2;7125:9;7116:7;7112:23;7108:32;7105:119;;;7143:79;;:::i;:::-;7105:119;7263:1;7288:53;7333:7;7324:6;7313:9;7309:22;7288:53;:::i;:::-;7278:63;;7234:117;7390:2;7416:50;7458:7;7449:6;7438:9;7434:22;7416:50;:::i;:::-;7406:60;;7361:115;7015:468;;;;;:::o;7489:118::-;7560:22;7576:5;7560:22;:::i;:::-;7553:5;7550:33;7540:61;;7597:1;7594;7587:12;7540:61;7489:118;:::o;7613:135::-;7657:5;7695:6;7682:20;7673:29;;7711:31;7736:5;7711:31;:::i;:::-;7613:135;;;;:::o;7754:122::-;7827:24;7845:5;7827:24;:::i;:::-;7820:5;7817:35;7807:63;;7866:1;7863;7856:12;7807:63;7754:122;:::o;7882:139::-;7928:5;7966:6;7953:20;7944:29;;7982:33;8009:5;7982:33;:::i;:::-;7882:139;;;;:::o;8027:1053::-;8129:6;8137;8145;8153;8161;8169;8218:3;8206:9;8197:7;8193:23;8189:33;8186:120;;;8225:79;;:::i;:::-;8186:120;8345:1;8370:53;8415:7;8406:6;8395:9;8391:22;8370:53;:::i;:::-;8360:63;;8316:117;8472:2;8498:53;8543:7;8534:6;8523:9;8519:22;8498:53;:::i;:::-;8488:63;;8443:118;8600:2;8626:53;8671:7;8662:6;8651:9;8647:22;8626:53;:::i;:::-;8616:63;;8571:118;8728:2;8754:51;8797:7;8788:6;8777:9;8773:22;8754:51;:::i;:::-;8744:61;;8699:116;8854:3;8881:53;8926:7;8917:6;8906:9;8902:22;8881:53;:::i;:::-;8871:63;;8825:119;8983:3;9010:53;9055:7;9046:6;9035:9;9031:22;9010:53;:::i;:::-;9000:63;;8954:119;8027:1053;;;;;;;;:::o;9086:1199::-;9197:6;9205;9213;9221;9229;9237;9245;9294:3;9282:9;9273:7;9269:23;9265:33;9262:120;;;9301:79;;:::i;:::-;9262:120;9421:1;9446:53;9491:7;9482:6;9471:9;9467:22;9446:53;:::i;:::-;9436:63;;9392:117;9548:2;9574:53;9619:7;9610:6;9599:9;9595:22;9574:53;:::i;:::-;9564:63;;9519:118;9676:2;9702:53;9747:7;9738:6;9727:9;9723:22;9702:53;:::i;:::-;9692:63;;9647:118;9804:2;9830:53;9875:7;9866:6;9855:9;9851:22;9830:53;:::i;:::-;9820:63;;9775:118;9932:3;9959:51;10002:7;9993:6;9982:9;9978:22;9959:51;:::i;:::-;9949:61;;9903:117;10059:3;10086:53;10131:7;10122:6;10111:9;10107:22;10086:53;:::i;:::-;10076:63;;10030:119;10188:3;10215:53;10260:7;10251:6;10240:9;10236:22;10215:53;:::i;:::-;10205:63;;10159:119;9086:1199;;;;;;;;;;:::o;10291:474::-;10359:6;10367;10416:2;10404:9;10395:7;10391:23;10387:32;10384:119;;;10422:79;;:::i;:::-;10384:119;10542:1;10567:53;10612:7;10603:6;10592:9;10588:22;10567:53;:::i;:::-;10557:63;;10513:117;10669:2;10695:53;10740:7;10731:6;10720:9;10716:22;10695:53;:::i;:::-;10685:63;;10640:118;10291:474;;;;;:::o;10771:120::-;10843:23;10860:5;10843:23;:::i;:::-;10836:5;10833:34;10823:62;;10881:1;10878;10871:12;10823:62;10771:120;:::o;10897:137::-;10942:5;10980:6;10967:20;10958:29;;10996:32;11022:5;10996:32;:::i;:::-;10897:137;;;;:::o;11040:472::-;11107:6;11115;11164:2;11152:9;11143:7;11139:23;11135:32;11132:119;;;11170:79;;:::i;:::-;11132:119;11290:1;11315:53;11360:7;11351:6;11340:9;11336:22;11315:53;:::i;:::-;11305:63;;11261:117;11417:2;11443:52;11487:7;11478:6;11467:9;11463:22;11443:52;:::i;:::-;11433:62;;11388:117;11040:472;;;;;:::o;11518:105::-;11593:23;11610:5;11593:23;:::i;:::-;11588:3;11581:36;11518:105;;:::o;11629:142::-;11666:7;11706:58;11699:5;11695:70;11684:81;;11629:142;;;:::o;11777:108::-;11854:24;11872:5;11854:24;:::i;:::-;11849:3;11842:37;11777:108;;:::o;11959:517::-;12112:4;12107:3;12103:14;12204:4;12197:5;12193:16;12187:23;12223:61;12278:4;12273:3;12269:14;12255:12;12223:61;:::i;:::-;12127:167;12377:4;12370:5;12366:16;12360:23;12396:63;12453:4;12448:3;12444:14;12430:12;12396:63;:::i;:::-;12304:165;12081:395;11959:517;;:::o;12482:334::-;12631:4;12669:2;12658:9;12654:18;12646:26;;12682:127;12806:1;12795:9;12791:17;12782:6;12682:127;:::i;:::-;12482:334;;;;:::o;12822:180::-;12870:77;12867:1;12860:88;12967:4;12964:1;12957:15;12991:4;12988:1;12981:15;13008:320;13052:6;13089:1;13083:4;13079:12;13069:22;;13136:1;13130:4;13126:12;13157:18;13147:81;;13213:4;13205:6;13201:17;13191:27;;13147:81;13275:2;13267:6;13264:14;13244:18;13241:38;13238:84;;13294:18;;:::i;:::-;13238:84;13059:269;13008:320;;;:::o;13334:234::-;13474:34;13470:1;13462:6;13458:14;13451:58;13543:17;13538:2;13530:6;13526:15;13519:42;13334:234;:::o;13574:366::-;13716:3;13737:67;13801:2;13796:3;13737:67;:::i;:::-;13730:74;;13813:93;13902:3;13813:93;:::i;:::-;13931:2;13926:3;13922:12;13915:19;;13574:366;;;:::o;13946:419::-;14112:4;14150:2;14139:9;14135:18;14127:26;;14199:9;14193:4;14189:20;14185:1;14174:9;14170:17;14163:47;14227:131;14353:4;14227:131;:::i;:::-;14219:139;;13946:419;;;:::o;14371:180::-;14419:77;14416:1;14409:88;14516:4;14513:1;14506:15;14540:4;14537:1;14530:15;14557:191;14597:3;14616:20;14634:1;14616:20;:::i;:::-;14611:25;;14650:20;14668:1;14650:20;:::i;:::-;14645:25;;14693:1;14690;14686:9;14679:16;;14714:3;14711:1;14708:10;14705:36;;;14721:18;;:::i;:::-;14705:36;14557:191;;;;:::o;14754:181::-;14894:33;14890:1;14882:6;14878:14;14871:57;14754:181;:::o;14941:366::-;15083:3;15104:67;15168:2;15163:3;15104:67;:::i;:::-;15097:74;;15180:93;15269:3;15180:93;:::i;:::-;15298:2;15293:3;15289:12;15282:19;;14941:366;;;:::o;15313:419::-;15479:4;15517:2;15506:9;15502:18;15494:26;;15566:9;15560:4;15556:20;15552:1;15541:9;15537:17;15530:47;15594:131;15720:4;15594:131;:::i;:::-;15586:139;;15313:419;;;:::o;15738:224::-;15878:34;15874:1;15866:6;15862:14;15855:58;15947:7;15942:2;15934:6;15930:15;15923:32;15738:224;:::o;15968:366::-;16110:3;16131:67;16195:2;16190:3;16131:67;:::i;:::-;16124:74;;16207:93;16296:3;16207:93;:::i;:::-;16325:2;16320:3;16316:12;16309:19;;15968:366;;;:::o;16340:419::-;16506:4;16544:2;16533:9;16529:18;16521:26;;16593:9;16587:4;16583:20;16579:1;16568:9;16564:17;16557:47;16621:131;16747:4;16621:131;:::i;:::-;16613:139;;16340:419;;;:::o;16765:228::-;16905:34;16901:1;16893:6;16889:14;16882:58;16974:11;16969:2;16961:6;16957:15;16950:36;16765:228;:::o;16999:366::-;17141:3;17162:67;17226:2;17221:3;17162:67;:::i;:::-;17155:74;;17238:93;17327:3;17238:93;:::i;:::-;17356:2;17351:3;17347:12;17340:19;;16999:366;;;:::o;17371:419::-;17537:4;17575:2;17564:9;17560:18;17552:26;;17624:9;17618:4;17614:20;17610:1;17599:9;17595:17;17588:47;17652:131;17778:4;17652:131;:::i;:::-;17644:139;;17371:419;;;:::o;17796:194::-;17836:4;17856:20;17874:1;17856:20;:::i;:::-;17851:25;;17890:20;17908:1;17890:20;:::i;:::-;17885:25;;17934:1;17931;17927:9;17919:17;;17958:1;17952:4;17949:11;17946:37;;;17963:18;;:::i;:::-;17946:37;17796:194;;;;:::o;17996:180::-;18044:77;18041:1;18034:88;18141:4;18138:1;18131:15;18165:4;18162:1;18155:15;18182:224;18322:34;18318:1;18310:6;18306:14;18299:58;18391:7;18386:2;18378:6;18374:15;18367:32;18182:224;:::o;18412:366::-;18554:3;18575:67;18639:2;18634:3;18575:67;:::i;:::-;18568:74;;18651:93;18740:3;18651:93;:::i;:::-;18769:2;18764:3;18760:12;18753:19;;18412:366;;;:::o;18784:419::-;18950:4;18988:2;18977:9;18973:18;18965:26;;19037:9;19031:4;19027:20;19023:1;19012:9;19008:17;19001:47;19065:131;19191:4;19065:131;:::i;:::-;19057:139;;18784:419;;;:::o;19209:179::-;19349:31;19345:1;19337:6;19333:14;19326:55;19209:179;:::o;19394:366::-;19536:3;19557:67;19621:2;19616:3;19557:67;:::i;:::-;19550:74;;19633:93;19722:3;19633:93;:::i;:::-;19751:2;19746:3;19742:12;19735:19;;19394:366;;;:::o;19766:419::-;19932:4;19970:2;19959:9;19955:18;19947:26;;20019:9;20013:4;20009:20;20005:1;19994:9;19990:17;19983:47;20047:131;20173:4;20047:131;:::i;:::-;20039:139;;19766:419;;;:::o;20191:553::-;20368:4;20406:3;20395:9;20391:19;20383:27;;20420:71;20488:1;20477:9;20473:17;20464:6;20420:71;:::i;:::-;20501:72;20569:2;20558:9;20554:18;20545:6;20501:72;:::i;:::-;20583;20651:2;20640:9;20636:18;20627:6;20583:72;:::i;:::-;20665;20733:2;20722:9;20718:18;20709:6;20665:72;:::i;:::-;20191:553;;;;;;;:::o;20750:175::-;20890:27;20886:1;20878:6;20874:14;20867:51;20750:175;:::o;20931:366::-;21073:3;21094:67;21158:2;21153:3;21094:67;:::i;:::-;21087:74;;21170:93;21259:3;21170:93;:::i;:::-;21288:2;21283:3;21279:12;21272:19;;20931:366;;;:::o;21303:419::-;21469:4;21507:2;21496:9;21492:18;21484:26;;21556:9;21550:4;21546:20;21542:1;21531:9;21527:17;21520:47;21584:131;21710:4;21584:131;:::i;:::-;21576:139;;21303:419;;;:::o;21728:179::-;21868:31;21864:1;21856:6;21852:14;21845:55;21728:179;:::o;21913:366::-;22055:3;22076:67;22140:2;22135:3;22076:67;:::i;:::-;22069:74;;22152:93;22241:3;22152:93;:::i;:::-;22270:2;22265:3;22261:12;22254:19;;21913:366;;;:::o;22285:419::-;22451:4;22489:2;22478:9;22474:18;22466:26;;22538:9;22532:4;22528:20;22524:1;22513:9;22509:17;22502:47;22566:131;22692:4;22566:131;:::i;:::-;22558:139;;22285:419;;;:::o;22710:775::-;22943:4;22981:3;22970:9;22966:19;22958:27;;22995:71;23063:1;23052:9;23048:17;23039:6;22995:71;:::i;:::-;23076:72;23144:2;23133:9;23129:18;23120:6;23076:72;:::i;:::-;23158;23226:2;23215:9;23211:18;23202:6;23158:72;:::i;:::-;23240;23308:2;23297:9;23293:18;23284:6;23240:72;:::i;:::-;23322:73;23390:3;23379:9;23375:19;23366:6;23322:73;:::i;:::-;23405;23473:3;23462:9;23458:19;23449:6;23405:73;:::i;:::-;22710:775;;;;;;;;;:::o;23491:180::-;23631:32;23627:1;23619:6;23615:14;23608:56;23491:180;:::o;23677:366::-;23819:3;23840:67;23904:2;23899:3;23840:67;:::i;:::-;23833:74;;23916:93;24005:3;23916:93;:::i;:::-;24034:2;24029:3;24025:12;24018:19;;23677:366;;;:::o;24049:419::-;24215:4;24253:2;24242:9;24238:18;24230:26;;24302:9;24296:4;24292:20;24288:1;24277:9;24273:17;24266:47;24330:131;24456:4;24330:131;:::i;:::-;24322:139;;24049:419;;;:::o;24474:223::-;24614:34;24610:1;24602:6;24598:14;24591:58;24683:6;24678:2;24670:6;24666:15;24659:31;24474:223;:::o;24703:366::-;24845:3;24866:67;24930:2;24925:3;24866:67;:::i;:::-;24859:74;;24942:93;25031:3;24942:93;:::i;:::-;25060:2;25055:3;25051:12;25044:19;;24703:366;;;:::o;25075:419::-;25241:4;25279:2;25268:9;25264:18;25256:26;;25328:9;25322:4;25318:20;25314:1;25303:9;25299:17;25292:47;25356:131;25482:4;25356:131;:::i;:::-;25348:139;;25075:419;;;:::o;25500:221::-;25640:34;25636:1;25628:6;25624:14;25617:58;25709:4;25704:2;25696:6;25692:15;25685:29;25500:221;:::o;25727:366::-;25869:3;25890:67;25954:2;25949:3;25890:67;:::i;:::-;25883:74;;25966:93;26055:3;25966:93;:::i;:::-;26084:2;26079:3;26075:12;26068:19;;25727:366;;;:::o;26099:419::-;26265:4;26303:2;26292:9;26288:18;26280:26;;26352:9;26346:4;26342:20;26338:1;26327:9;26323:17;26316:47;26380:131;26506:4;26380:131;:::i;:::-;26372:139;;26099:419;;;:::o;26524:225::-;26664:34;26660:1;26652:6;26648:14;26641:58;26733:8;26728:2;26720:6;26716:15;26709:33;26524:225;:::o;26755:366::-;26897:3;26918:67;26982:2;26977:3;26918:67;:::i;:::-;26911:74;;26994:93;27083:3;26994:93;:::i;:::-;27112:2;27107:3;27103:12;27096:19;;26755:366;;;:::o;27127:419::-;27293:4;27331:2;27320:9;27316:18;27308:26;;27380:9;27374:4;27370:20;27366:1;27355:9;27351:17;27344:47;27408:131;27534:4;27408:131;:::i;:::-;27400:139;;27127:419;;;:::o;27552:182::-;27692:34;27688:1;27680:6;27676:14;27669:58;27552:182;:::o;27740:366::-;27882:3;27903:67;27967:2;27962:3;27903:67;:::i;:::-;27896:74;;27979:93;28068:3;27979:93;:::i;:::-;28097:2;28092:3;28088:12;28081:19;;27740:366;;;:::o;28112:419::-;28278:4;28316:2;28305:9;28301:18;28293:26;;28365:9;28359:4;28355:20;28351:1;28340:9;28336:17;28329:47;28393:131;28519:4;28393:131;:::i;:::-;28385:139;;28112:419;;;:::o;28537:179::-;28677:31;28673:1;28665:6;28661:14;28654:55;28537:179;:::o;28722:366::-;28864:3;28885:67;28949:2;28944:3;28885:67;:::i;:::-;28878:74;;28961:93;29050:3;28961:93;:::i;:::-;29079:2;29074:3;29070:12;29063:19;;28722:366;;;:::o;29094:419::-;29260:4;29298:2;29287:9;29283:18;29275:26;;29347:9;29341:4;29337:20;29333:1;29322:9;29318:17;29311:47;29375:131;29501:4;29375:131;:::i;:::-;29367:139;;29094:419;;;:::o;29519:224::-;29659:34;29655:1;29647:6;29643:14;29636:58;29728:7;29723:2;29715:6;29711:15;29704:32;29519:224;:::o;29749:366::-;29891:3;29912:67;29976:2;29971:3;29912:67;:::i;:::-;29905:74;;29988:93;30077:3;29988:93;:::i;:::-;30106:2;30101:3;30097:12;30090:19;;29749:366;;;:::o;30121:419::-;30287:4;30325:2;30314:9;30310:18;30302:26;;30374:9;30368:4;30364:20;30360:1;30349:9;30345:17;30338:47;30402:131;30528:4;30402:131;:::i;:::-;30394:139;;30121:419;;;:::o;30546:222::-;30686:34;30682:1;30674:6;30670:14;30663:58;30755:5;30750:2;30742:6;30738:15;30731:30;30546:222;:::o;30774:366::-;30916:3;30937:67;31001:2;30996:3;30937:67;:::i;:::-;30930:74;;31013:93;31102:3;31013:93;:::i;:::-;31131:2;31126:3;31122:12;31115:19;;30774:366;;;:::o;31146:419::-;31312:4;31350:2;31339:9;31335:18;31327:26;;31399:9;31393:4;31389:20;31385:1;31374:9;31370:17;31363:47;31427:131;31553:4;31427:131;:::i;:::-;31419:139;;31146:419;;;:::o;31571:225::-;31711:34;31707:1;31699:6;31695:14;31688:58;31780:8;31775:2;31767:6;31763:15;31756:33;31571:225;:::o;31802:366::-;31944:3;31965:67;32029:2;32024:3;31965:67;:::i;:::-;31958:74;;32041:93;32130:3;32041:93;:::i;:::-;32159:2;32154:3;32150:12;32143:19;;31802:366;;;:::o;32174:419::-;32340:4;32378:2;32367:9;32363:18;32355:26;;32427:9;32421:4;32417:20;32413:1;32402:9;32398:17;32391:47;32455:131;32581:4;32455:131;:::i;:::-;32447:139;;32174:419;;;:::o;32599:664::-;32804:4;32842:3;32831:9;32827:19;32819:27;;32856:71;32924:1;32913:9;32909:17;32900:6;32856:71;:::i;:::-;32937:72;33005:2;32994:9;32990:18;32981:6;32937:72;:::i;:::-;33019;33087:2;33076:9;33072:18;33063:6;33019:72;:::i;:::-;33101;33169:2;33158:9;33154:18;33145:6;33101:72;:::i;:::-;33183:73;33251:3;33240:9;33236:19;33227:6;33183:73;:::i;:::-;32599:664;;;;;;;;:::o;33269:180::-;33317:77;33314:1;33307:88;33414:4;33411:1;33404:15;33438:4;33435:1;33428:15;33455:185;33495:1;33512:20;33530:1;33512:20;:::i;:::-;33507:25;;33546:20;33564:1;33546:20;:::i;:::-;33541:25;;33585:1;33575:35;;33590:18;;:::i;:::-;33575:35;33632:1;33629;33625:9;33620:14;;33455:185;;;;:::o;33646:235::-;33786:34;33782:1;33774:6;33770:14;33763:58;33855:18;33850:2;33842:6;33838:15;33831:43;33646:235;:::o;33887:366::-;34029:3;34050:67;34114:2;34109:3;34050:67;:::i;:::-;34043:74;;34126:93;34215:3;34126:93;:::i;:::-;34244:2;34239:3;34235:12;34228:19;;33887:366;;;:::o;34259:419::-;34425:4;34463:2;34452:9;34448:18;34440:26;;34512:9;34506:4;34502:20;34498:1;34487:9;34483:17;34476:47;34540:131;34666:4;34540:131;:::i;:::-;34532:139;;34259:419;;;:::o;34684:332::-;34805:4;34843:2;34832:9;34828:18;34820:26;;34856:71;34924:1;34913:9;34909:17;34900:6;34856:71;:::i;:::-;34937:72;35005:2;34994:9;34990:18;34981:6;34937:72;:::i;:::-;34684:332;;;;;:::o;35022:148::-;35124:11;35161:3;35146:18;;35022:148;;;;:::o;35176:214::-;35316:66;35312:1;35304:6;35300:14;35293:90;35176:214;:::o;35396:400::-;35556:3;35577:84;35659:1;35654:3;35577:84;:::i;:::-;35570:91;;35670:93;35759:3;35670:93;:::i;:::-;35788:1;35783:3;35779:11;35772:18;;35396:400;;;:::o;35802:79::-;35841:7;35870:5;35859:16;;35802:79;;;:::o;35887:157::-;35992:45;36012:24;36030:5;36012:24;:::i;:::-;35992:45;:::i;:::-;35987:3;35980:58;35887:157;;:::o;36050:663::-;36291:3;36313:148;36457:3;36313:148;:::i;:::-;36306:155;;36471:75;36542:3;36533:6;36471:75;:::i;:::-;36571:2;36566:3;36562:12;36555:19;;36584:75;36655:3;36646:6;36584:75;:::i;:::-;36684:2;36679:3;36675:12;36668:19;;36704:3;36697:10;;36050:663;;;;;:::o;36719:545::-;36892:4;36930:3;36919:9;36915:19;36907:27;;36944:71;37012:1;37001:9;36997:17;36988:6;36944:71;:::i;:::-;37025:68;37089:2;37078:9;37074:18;37065:6;37025:68;:::i;:::-;37103:72;37171:2;37160:9;37156:18;37147:6;37103:72;:::i;:::-;37185;37253:2;37242:9;37238:18;37229:6;37185:72;:::i;:::-;36719:545;;;;;;;:::o;37270:180::-;37318:77;37315:1;37308:88;37415:4;37412:1;37405:15;37439:4;37436:1;37429:15;37456:174;37596:26;37592:1;37584:6;37580:14;37573:50;37456:174;:::o;37636:366::-;37778:3;37799:67;37863:2;37858:3;37799:67;:::i;:::-;37792:74;;37875:93;37964:3;37875:93;:::i;:::-;37993:2;37988:3;37984:12;37977:19;;37636:366;;;:::o;38008:419::-;38174:4;38212:2;38201:9;38197:18;38189:26;;38261:9;38255:4;38251:20;38247:1;38236:9;38232:17;38225:47;38289:131;38415:4;38289:131;:::i;:::-;38281:139;;38008:419;;;:::o;38433:181::-;38573:33;38569:1;38561:6;38557:14;38550:57;38433:181;:::o;38620:366::-;38762:3;38783:67;38847:2;38842:3;38783:67;:::i;:::-;38776:74;;38859:93;38948:3;38859:93;:::i;:::-;38977:2;38972:3;38968:12;38961:19;;38620:366;;;:::o;38992:419::-;39158:4;39196:2;39185:9;39181:18;39173:26;;39245:9;39239:4;39235:20;39231:1;39220:9;39216:17;39209:47;39273:131;39399:4;39273:131;:::i;:::-;39265:139;;38992:419;;;:::o;39417:221::-;39557:34;39553:1;39545:6;39541:14;39534:58;39626:4;39621:2;39613:6;39609:15;39602:29;39417:221;:::o;39644:366::-;39786:3;39807:67;39871:2;39866:3;39807:67;:::i;:::-;39800:74;;39883:93;39972:3;39883:93;:::i;:::-;40001:2;39996:3;39992:12;39985:19;;39644:366;;;:::o;40016:419::-;40182:4;40220:2;40209:9;40205:18;40197:26;;40269:9;40263:4;40259:20;40255:1;40244:9;40240:17;40233:47;40297:131;40423:4;40297:131;:::i;:::-;40289:139;;40016:419;;;:::o;40441:181::-;40581:33;40577:1;40569:6;40565:14;40558:57;40441:181;:::o;40628:366::-;40770:3;40791:67;40855:2;40850:3;40791:67;:::i;:::-;40784:74;;40867:93;40956:3;40867:93;:::i;:::-;40985:2;40980:3;40976:12;40969:19;;40628:366;;;:::o;41000:419::-;41166:4;41204:2;41193:9;41189:18;41181:26;;41253:9;41247:4;41243:20;41239:1;41228:9;41224:17;41217:47;41281:131;41407:4;41281:131;:::i;:::-;41273:139;;41000:419;;;:::o;41425:220::-;41565:34;41561:1;41553:6;41549:14;41542:58;41634:3;41629:2;41621:6;41617:15;41610:28;41425:220;:::o;41651:366::-;41793:3;41814:67;41878:2;41873:3;41814:67;:::i;:::-;41807:74;;41890:93;41979:3;41890:93;:::i;:::-;42008:2;42003:3;41999:12;41992:19;;41651:366;;;:::o;42023:419::-;42189:4;42227:2;42216:9;42212:18;42204:26;;42276:9;42270:4;42266:20;42262:1;42251:9;42247:17;42240:47;42304:131;42430:4;42304:131;:::i;:::-;42296:139;;42023:419;;;:::o;42448:221::-;42588:34;42584:1;42576:6;42572:14;42565:58;42657:4;42652:2;42644:6;42640:15;42633:29;42448:221;:::o;42675:366::-;42817:3;42838:67;42902:2;42897:3;42838:67;:::i;:::-;42831:74;;42914:93;43003:3;42914:93;:::i;:::-;43032:2;43027:3;43023:12;43016:19;;42675:366;;;:::o;43047:419::-;43213:4;43251:2;43240:9;43236:18;43228:26;;43300:9;43294:4;43290:20;43286:1;43275:9;43271:17;43264:47;43328:131;43454:4;43328:131;:::i;:::-;43320:139;;43047:419;;;:::o;43472:226::-;43612:34;43608:1;43600:6;43596:14;43589:58;43681:9;43676:2;43668:6;43664:15;43657:34;43472:226;:::o;43704:366::-;43846:3;43867:67;43931:2;43926:3;43867:67;:::i;:::-;43860:74;;43943:93;44032:3;43943:93;:::i;:::-;44061:2;44056:3;44052:12;44045:19;;43704:366;;;:::o;44076:419::-;44242:4;44280:2;44269:9;44265:18;44257:26;;44329:9;44323:4;44319:20;44315:1;44304:9;44300:17;44293:47;44357:131;44483:4;44357:131;:::i;:::-;44349:139;;44076:419;;;:::o
Swarm Source
ipfs://0c6fabc290d08a22c6265f1359f59a00b8d4f9ed6abcf390277026f9507d0e81
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.