Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 BET
Holders
1
Total Transfers
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Betted
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-02 */ // Sources flattened with hardhat v2.12.7 https://hardhat.org // File @openzeppelin/contracts/access/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/utils/[email protected] // 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/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/utils/math/[email protected] // 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/[email protected] // 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/access/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/token/ERC20/[email protected] // 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/[email protected] // 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/[email protected] // 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 @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File contracts/TaxableToken.sol pragma solidity ^0.8.9; abstract contract TaxableToken is AccessControl { event TaxEnabled(); event TaxDisabled(); event TaxRateUpdated(uint newMarketingTaxRate, uint newDevTaxRate); event MarketingAddressChanged(address marketingAddress); event DevAddressChanged(address devAddress); bool internal _isTaxEnabled; uint internal _balanceToSwapAt; uint internal _marketingTaxRate; uint internal _devTaxRate; address internal _marketingAddress; address internal _devAddress; address internal _baseTradingPair; mapping(address => bool) public tradingPairs; bytes32 public constant EXCLUDED_FROM_TAX_ROLE = keccak256("EXCLUDED_FROM_TAX_ROLE"); constructor(bool isTaxEnabled_, uint marketingTaxRate_, uint devTaxRate_, address marketingAddress_, address devAddress_) { _isTaxEnabled = isTaxEnabled_; _balanceToSwapAt = 0; _marketingTaxRate = marketingTaxRate_; _devTaxRate = devTaxRate_; _marketingAddress = marketingAddress_; _devAddress = devAddress_; _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(EXCLUDED_FROM_TAX_ROLE, msg.sender); _grantRole(EXCLUDED_FROM_TAX_ROLE, address(this)); _grantRole(EXCLUDED_FROM_TAX_ROLE, address(0)); _grantRole(EXCLUDED_FROM_TAX_ROLE, _marketingAddress); _grantRole(EXCLUDED_FROM_TAX_ROLE, _devAddress); } modifier whenTaxDisabled() { _requireTaxDisabled(); _; } modifier whenTaxEnabled() { _requireTaxEnabled(); _; } function enableTax() public virtual onlyRole(DEFAULT_ADMIN_ROLE) whenTaxDisabled { _enableTax(); } function disableTax() public virtual onlyRole(DEFAULT_ADMIN_ROLE) whenTaxEnabled { _disableTax(); } function isTaxEnabled() public view virtual returns (bool) { return _isTaxEnabled; } function getTotalTaxRate() public view virtual returns (uint) { return _marketingTaxRate + _devTaxRate; } function getMarketingTaxRate() public view virtual returns (uint) { return _marketingTaxRate; } function getDevTaxRate() public view virtual returns (uint) { return _devTaxRate; } function getMarketingAddress() public view virtual returns (address) { return _marketingAddress; } function getDevAddress() public view virtual returns (address) { return _devAddress; } function updateMarketingAddress(address newMarketingAddress) public virtual onlyRole(DEFAULT_ADMIN_ROLE) { require(newMarketingAddress != address(0), "TaxableToken: Cannot set marketing address to 0"); require(newMarketingAddress != address(0xdead), "TaxableToken: Cannot set marketing address to dead address"); require(newMarketingAddress != _devAddress, "TaxableToken: Marketing and dev address cannot be the same"); _marketingAddress = newMarketingAddress; } function updateDevAddress(address newDevAddress) public virtual onlyRole(DEFAULT_ADMIN_ROLE) { require(newDevAddress != address(0), "TaxableToken: Cannot set dev address to 0"); require(newDevAddress != address(0xdead), "TaxableToken: Cannot set dev address to dead address"); require(newDevAddress != _marketingAddress, "TaxableToken: Marketing and dev address cannot be the same"); _devAddress = newDevAddress; } function updateTradingPairStatus(address pair, bool status) public virtual onlyRole(DEFAULT_ADMIN_ROLE) { require(pair != _baseTradingPair, "TaxableToken: Cannot change status of base trading pair"); tradingPairs[pair] = status; } function _requireTaxDisabled() internal view virtual { require(!isTaxEnabled(), "TaxableToken: Tax must be disabled"); } function _requireTaxEnabled() internal view virtual { require(isTaxEnabled(), "TaxableToken: Tax must be enabled"); } function _enableTax() internal virtual whenTaxDisabled { _isTaxEnabled = true; emit TaxEnabled(); } function _disableTax() internal virtual whenTaxEnabled { _isTaxEnabled = false; emit TaxDisabled(); } function _setSwapAtBalance(uint balanceToSwapAt) internal virtual { require(balanceToSwapAt > 0, "TaxableToken: Balance to swap at must be more than zero"); _balanceToSwapAt = balanceToSwapAt; } function _isBalanceEnoughToSwap(uint contractBalance) internal view virtual returns (bool) { return contractBalance > _balanceToSwapAt; } function _updateTaxRate(uint newMarketingTaxRate, uint newDevTaxRate) internal virtual { _marketingTaxRate = newMarketingTaxRate; _devTaxRate = newDevTaxRate; emit TaxRateUpdated(_marketingTaxRate, _devTaxRate); } function _updateMarketingTaxRate(uint newMarketingTaxRate) internal virtual { _marketingTaxRate = newMarketingTaxRate; emit TaxRateUpdated(_marketingTaxRate, _devTaxRate); } function _updateDevTaxRate(uint newDevTaxRate) internal virtual { _devTaxRate = newDevTaxRate; emit TaxRateUpdated(_marketingTaxRate, _devTaxRate); } function _updateMarketingAddress(address newMarketingAddress) internal virtual { _marketingAddress = newMarketingAddress; emit MarketingAddressChanged(newMarketingAddress); } function _updateDevAddress(address newDevAddress) internal virtual { _devAddress = newDevAddress; emit DevAddressChanged(_devAddress); } function _getMarketingTaxFee(uint amount) internal view virtual returns (uint) { if (isTaxEnabled()) { return (amount * _marketingTaxRate) / 1000; } return 0; } function _getDevTaxFee(uint amount) internal view virtual returns (uint) { if (isTaxEnabled()) { return (amount * _devTaxRate) / 1000; } return 0; } function _getMarketingTaxSplit(uint tokensToSplit) internal view virtual returns (uint) { uint taxSplitParts = getTotalTaxRate(); return (tokensToSplit * _marketingTaxRate) / taxSplitParts; } function _getDevTaxSplit(uint tokensToSplit) internal view virtual returns (uint) { uint taxSplitParts = getTotalTaxRate(); return (tokensToSplit * _devTaxRate) / taxSplitParts; } function _sendEthToTaxRecipients() internal virtual { uint contractBalance = address(this).balance; bool success; if (contractBalance > 0) { uint ethForMarketing = _getMarketingTaxSplit(contractBalance); uint ethForDev = contractBalance - ethForMarketing; (success, ) = address(_marketingAddress).call{value: ethForMarketing}(""); (success, ) = address(_devAddress).call{value: ethForDev}(""); } } } // File contracts/Betted.sol pragma solidity ^0.8.9; contract Betted is ERC20, TaxableToken { IUniswapV2Router02 private _uniswapV2Router; IUniswapV2Factory private _uniswapV2Factory; IUniswapV2Pair private immutable _uniswapV2WethPair; bool private _isTransferringTax; constructor() ERC20("Betted", "BET") TaxableToken(true, 20, 5, 0x61E87D52d5a358eE83043a6d918A2E867e44bD2f, 0x5d7379995772b2eb7f617A524C49D170De4632DB) { _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _uniswapV2Factory = IUniswapV2Factory(_uniswapV2Router.factory()); _uniswapV2WethPair = IUniswapV2Pair(_uniswapV2Factory.createPair(address(this), _uniswapV2Router.WETH())); _baseTradingPair = address(_uniswapV2WethPair); tradingPairs[_baseTradingPair] = true; _mint(msg.sender, 1000000000 * (10 ** decimals())); _setSwapAtBalance(500000 * (10 ** decimals())); } function claimTaxes() public onlyRole(DEFAULT_ADMIN_ROLE) { _isTransferringTax = true; _swapAndClaimTaxes(); _isTransferringTax = false; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: Cannot transfer from the zero address"); require(amount > 0, "ERC20: Must transfer more than zero"); if (!_isTransferringTax && _isBalanceEnoughToSwap(balanceOf(address(this))) && tradingPairs[to]) { _isTransferringTax = true; _swapAndClaimTaxes(); _isTransferringTax = false; } uint amountToTransfer = amount; if (!_isTransferringTax) { if (tradingPairs[from] || tradingPairs[to]) { if (isTaxEnabled() && !hasRole(EXCLUDED_FROM_TAX_ROLE, from) && !hasRole(EXCLUDED_FROM_TAX_ROLE, to)) { uint marketingTaxFee = _getMarketingTaxFee(amountToTransfer); uint devTaxFee = _getDevTaxFee(amountToTransfer); amountToTransfer = amount - marketingTaxFee - devTaxFee; if ((marketingTaxFee + devTaxFee) > 0) { super._transfer(from, address(this), marketingTaxFee + devTaxFee); } } } } super._transfer(from, to, amountToTransfer); } function _swapAndClaimTaxes() private { uint tokensToSwap = balanceOf(address(this)); if (tokensToSwap > _balanceToSwapAt * 5) { tokensToSwap = _balanceToSwapAt * 5; } _swapTokensForEth(tokensToSwap); _sendEthToTaxRecipients(); } function _swapTokensForEth(uint256 amount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), amount); _uniswapV2Router.swapExactTokensForETH( amount, 0, path, address(this), block.timestamp ); } receive() external payable {} fallback() external payable {} }
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":false,"internalType":"address","name":"devAddress","type":"address"}],"name":"DevAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingAddress","type":"address"}],"name":"MarketingAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[],"name":"TaxDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"TaxEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMarketingTaxRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDevTaxRate","type":"uint256"}],"name":"TaxRateUpdated","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCLUDED_FROM_TAX_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTaxes","outputs":[],"stateMutability":"nonpayable","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":[],"name":"disableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getDevAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDevTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMarketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMarketingTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tradingPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevAddress","type":"address"}],"name":"updateDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingAddress","type":"address"}],"name":"updateMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateTradingPairStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506001601460057361e87d52d5a358ee83043a6d918a2e867e44bd2f735d7379995772b2eb7f617a524c49d170de4632db6040518060400160405280600681526020017f42657474656400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42455400000000000000000000000000000000000000000000000000000000008152508160039081620000bf919062000c63565b508060049081620000d1919062000c63565b50505084600660006101000a81548160ff0219169083151502179055506000600781905550836008819055508260098190555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019b6000801b33620006b460201b60201c565b620001cd7fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e433620006b460201b60201c565b620001ff7fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e430620006b460201b60201c565b620002327fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e46000620006b460201b60201c565b620002867fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e4600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006b460201b60201c565b620002da7fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006b460201b60201c565b5050505050737a250d5630b4cf539739df2c5dacb4c659f2488d600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c8919062000db4565b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004db919062000db4565b6040518363ffffffff1660e01b8152600401620004fa92919062000df7565b6020604051808303816000875af11580156200051a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000540919062000db4565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050608051600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006703362000645620007a660201b60201c565b600a62000653919062000fb4565b633b9aca0062000664919062001005565b620007af60201b60201c565b620006ae62000684620007a660201b60201c565b600a62000692919062000fb4565b6207a120620006a2919062001005565b6200091c60201b60201c565b620011d4565b620006c682826200096c60201b60201c565b620007a25760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000747620009d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000821576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200081890620010b1565b60405180910390fd5b6200083560008383620009df60201b60201c565b8060026000828254620008499190620010d3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008fc91906200111f565b60405180910390a36200091860008383620009e460201b60201c565b5050565b6000811162000962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095990620011b2565b60405180910390fd5b8060078190555050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6b57607f821691505b60208210810362000a815762000a8062000a23565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000aeb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aac565b62000af7868362000aac565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b4462000b3e62000b388462000b0f565b62000b19565b62000b0f565b9050919050565b6000819050919050565b62000b608362000b23565b62000b7862000b6f8262000b4b565b84845462000ab9565b825550505050565b600090565b62000b8f62000b80565b62000b9c81848462000b55565b505050565b5b8181101562000bc45762000bb860008262000b85565b60018101905062000ba2565b5050565b601f82111562000c135762000bdd8162000a87565b62000be88462000a9c565b8101602085101562000bf8578190505b62000c1062000c078562000a9c565b83018262000ba1565b50505b505050565b600082821c905092915050565b600062000c386000198460080262000c18565b1980831691505092915050565b600062000c53838362000c25565b9150826002028217905092915050565b62000c6e82620009e9565b67ffffffffffffffff81111562000c8a5762000c89620009f4565b5b62000c96825462000a52565b62000ca382828562000bc8565b600060209050601f83116001811462000cdb576000841562000cc6578287015190505b62000cd2858262000c45565b86555062000d42565b601f19841662000ceb8662000a87565b60005b8281101562000d155784890151825560018201915060208501945060208101905062000cee565b8683101562000d35578489015162000d31601f89168262000c25565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d7c8262000d4f565b9050919050565b62000d8e8162000d6f565b811462000d9a57600080fd5b50565b60008151905062000dae8162000d83565b92915050565b60006020828403121562000dcd5762000dcc62000d4a565b5b600062000ddd8482850162000d9d565b91505092915050565b62000df18162000d6f565b82525050565b600060408201905062000e0e600083018562000de6565b62000e1d602083018462000de6565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000eb25780860481111562000e8a5762000e8962000e24565b5b600185161562000e9a5780820291505b808102905062000eaa8562000e53565b945062000e6a565b94509492505050565b60008262000ecd576001905062000fa0565b8162000edd576000905062000fa0565b816001811462000ef6576002811462000f015762000f37565b600191505062000fa0565b60ff84111562000f165762000f1562000e24565b5b8360020a91508482111562000f305762000f2f62000e24565b5b5062000fa0565b5060208310610133831016604e8410600b841016171562000f715782820a90508381111562000f6b5762000f6a62000e24565b5b62000fa0565b62000f80848484600162000e60565b9250905081840481111562000f9a5762000f9962000e24565b5b81810290505b9392505050565b600060ff82169050919050565b600062000fc18262000b0f565b915062000fce8362000fa7565b925062000ffd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ebb565b905092915050565b6000620010128262000b0f565b91506200101f8362000b0f565b92508282026200102f8162000b0f565b9150828204841483151762001049576200104862000e24565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001099601f8362001050565b9150620010a68262001061565b602082019050919050565b60006020820190508181036000830152620010cc816200108a565b9050919050565b6000620010e08262000b0f565b9150620010ed8362000b0f565b925082820190508082111562001108576200110762000e24565b5b92915050565b620011198162000b0f565b82525050565b60006020820190506200113660008301846200110e565b92915050565b7f54617861626c65546f6b656e3a2042616c616e636520746f207377617020617460008201527f206d757374206265206d6f7265207468616e207a65726f000000000000000000602082015250565b60006200119a60378362001050565b9150620011a7826200113c565b604082019050919050565b60006020820190508181036000830152620011cd816200118b565b9050919050565b608051613bcd620011ed60003960005050613bcd6000f3fe6080604052600436106101e65760003560e01c80638503376211610102578063aa8b788611610095578063d547741f11610064578063d547741f14610711578063dd62ed3e1461073a578063e34d99bf14610777578063e6c1909b146107a2576101ed565b8063aa8b78861461067b578063ae6753fd146106b8578063b374df5c146106e3578063ced695a4146106fa576101ed565b806395d89b41116100d157806395d89b41146105ab578063a217fddf146105d6578063a457c2d714610601578063a9059cbb1461063e576101ed565b806385033762146104ef5780638e8ac41b146105185780639183faaa1461054357806391d148541461056e576101ed565b8063248a9ca31161017a5780633950935111610149578063395093511461043557806353eb3bcf1461047257806370a08231146104895780637b9bae54146104c6576101ed565b8063248a9ca31461037b5780632f2ff15d146103b8578063313ce567146103e157806336568abe1461040c576101ed565b806318160ddd116101b657806318160ddd146102bf578063235d1734146102ea5780632369bf831461031557806323b872dd1461033e576101ed565b8062c26a3e146101ef57806301ffc9a71461021a57806306fdde0314610257578063095ea7b314610282576101ed565b366101ed57005b005b3480156101fb57600080fd5b506102046107cd565b60405161021191906125c3565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061264a565b6107f1565b60405161024e9190612692565b60405180910390f35b34801561026357600080fd5b5061026c61086b565b604051610279919061273d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906127f3565b6108fd565b6040516102b69190612692565b60405180910390f35b3480156102cb57600080fd5b506102d4610920565b6040516102e19190612842565b60405180910390f35b3480156102f657600080fd5b506102ff61092a565b60405161030c9190612842565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061285d565b610934565b005b34801561034a57600080fd5b506103656004803603810190610360919061288a565b610af5565b6040516103729190612692565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190612909565b610b24565b6040516103af91906125c3565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190612936565b610b44565b005b3480156103ed57600080fd5b506103f6610b65565b6040516104039190612992565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612936565b610b6e565b005b34801561044157600080fd5b5061045c600480360381019061045791906127f3565b610bf1565b6040516104699190612692565b60405180910390f35b34801561047e57600080fd5b50610487610c28565b005b34801561049557600080fd5b506104b060048036038101906104ab919061285d565b610c48565b6040516104bd9190612842565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906129d9565b610c90565b005b3480156104fb57600080fd5b506105166004803603810190610511919061285d565b610d89565b005b34801561052457600080fd5b5061052d610f4a565b60405161053a9190612842565b60405180910390f35b34801561054f57600080fd5b50610558610f54565b6040516105659190612a28565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190612936565b610f7e565b6040516105a29190612692565b60405180910390f35b3480156105b757600080fd5b506105c0610fe9565b6040516105cd919061273d565b60405180910390f35b3480156105e257600080fd5b506105eb61107b565b6040516105f891906125c3565b60405180910390f35b34801561060d57600080fd5b50610628600480360381019061062391906127f3565b611082565b6040516106359190612692565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906127f3565b6110f9565b6040516106729190612692565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061285d565b61111c565b6040516106af9190612692565b60405180910390f35b3480156106c457600080fd5b506106cd61113c565b6040516106da9190612842565b60405180910390f35b3480156106ef57600080fd5b506106f8611153565b005b34801561070657600080fd5b5061070f6111a1565b005b34801561071d57600080fd5b5061073860048036038101906107339190612936565b6111c1565b005b34801561074657600080fd5b50610761600480360381019061075c9190612a43565b6111e2565b60405161076e9190612842565b60405180910390f35b34801561078357600080fd5b5061078c611269565b6040516107999190612a28565b60405180910390f35b3480156107ae57600080fd5b506107b7611293565b6040516107c49190612692565b60405180910390f35b7fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e481565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108645750610863826112aa565b5b9050919050565b60606003805461087a90612ab2565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690612ab2565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b600080610908611314565b905061091581858561131c565b600191505092915050565b6000600254905090565b6000600854905090565b6000801b610941816114e5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790612b55565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790612be7565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790612c79565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600080610b00611314565b9050610b0d8582856114f9565b610b18858585611585565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b610b4d82610b24565b610b56816114e5565b610b6083836118a0565b505050565b60006012905090565b610b76611314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90612d0b565b60405180910390fd5b610bed8282611981565b5050565b600080610bfc611314565b9050610c1d818585610c0e85896111e2565b610c189190612d5a565b61131c565b600191505092915050565b6000801b610c35816114e5565b610c3d611a63565b610c45611aad565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b610c9d816114e5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490612e00565b60405180910390fd5b81600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6000801b610d96816114e5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90612e92565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90612f24565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90612c79565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600954905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ff890612ab2565b80601f016020809104026020016040519081016040528092919081815260200182805461102490612ab2565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b5050505050905090565b6000801b81565b60008061108d611314565b9050600061109b82866111e2565b9050838110156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612fb6565b60405180910390fd5b6110ed828686840361131c565b60019250505092915050565b600080611104611314565b9050611111818585611585565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600060095460085461114e9190612d5a565b905090565b6000801b611160816114e5565b6001600f60146101000a81548160ff021916908315150217905550611183611afe565b6000600f60146101000a81548160ff02191690831515021790555050565b6000801b6111ae816114e5565b6111b6611b47565b6111be611b90565b50565b6111ca82610b24565b6111d3816114e5565b6111dd8383611981565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900460ff16905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f1906130da565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114d89190612842565b60405180910390a3505050565b6114f6816114f1611314565b611be1565b50565b600061150584846111e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461157f5781811015611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890613146565b60405180910390fd5b61157e848484840361131c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb906131d8565b60405180910390fd5b60008111611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061326a565b60405180910390fd5b600f60149054906101000a900460ff16158015611661575061166061165b30610c48565b611c66565b5b80156116b65750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156116fa576001600f60146101000a81548160ff0219169083151502179055506116de611afe565b6000600f60146101000a81548160ff0219169083151502179055505b6000819050600f60149054906101000a900460ff1661188f57600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117b45750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561188e576117c1611293565b80156117f457506117f27fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e485610f7e565b155b801561182757506118257fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e484610f7e565b155b1561188d57600061183782611c74565b9050600061184483611caf565b9050808285611853919061328a565b61185d919061328a565b92506000818361186d9190612d5a565b111561188a57611889863083856118849190612d5a565b611cea565b5b50505b5b5b61189a848483611cea565b50505050565b6118aa8282610f7e565b61197d5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611922611314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61198b8282610f7e565b15611a5f5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a04611314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611a6b611293565b15611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613330565b60405180910390fd5b565b611ab5611a63565b6001600660006101000a81548160ff0219169083151502179055507fd2e80fb3f28dfb650beb9c059dadd2a8936a8bdc1abd1563608cd49227a0902160405160405180910390a1565b6000611b0930610c48565b90506005600754611b1a9190613350565b811115611b33576005600754611b309190613350565b90505b611b3c81611f60565b611b446121ba565b50565b611b4f611293565b611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613404565b60405180910390fd5b565b611b98611b47565b6000600660006101000a81548160ff0219169083151502179055507f7a14a3188411c2f406ce4721233750b4b11e612569f9fa80a35b1cb91bb2e49e60405160405180910390a1565b611beb8282610f7e565b611c6257611bf881612309565b611c068360001c6020612336565b604051602001611c179291906134f8565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59919061273d565b60405180910390fd5b5050565b600060075482119050919050565b6000611c7e611293565b15611ca5576103e860085483611c949190613350565b611c9e9190613561565b9050611caa565b600090505b919050565b6000611cb9611293565b15611ce0576103e860095483611ccf9190613350565b611cd99190613561565b9050611ce5565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613696565b60405180910390fd5b611dd3838383612572565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613728565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f479190612842565b60405180910390a3611f5a848484612577565b50505050565b6000600267ffffffffffffffff811115611f7d57611f7c613748565b5b604051908082528060200260200182016040528015611fab5781602001602082028036833780820191505090505b5090503081600081518110611fc357611fc2613777565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561206a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208e91906137bb565b816001815181106120a2576120a1613777565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061210930600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461131c565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58360008430426040518663ffffffff1660e01b815260040161216d9594939291906138eb565b6000604051808303816000875af115801561218c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906121b59190613a73565b505050565b60004790506000808211156123055760006121d48361257c565b9050600081846121e4919061328a565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161222c90613aed565b60006040518083038185875af1925050503d8060008114612269576040519150601f19603f3d011682016040523d82523d6000602084013e61226e565b606091505b505080935050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516122ba90613aed565b60006040518083038185875af1925050503d80600081146122f7576040519150601f19603f3d011682016040523d82523d6000602084013e6122fc565b606091505b50508093505050505b5050565b606061232f8273ffffffffffffffffffffffffffffffffffffffff16601460ff16612336565b9050919050565b6060600060028360026123499190613350565b6123539190612d5a565b67ffffffffffffffff81111561236c5761236b613748565b5b6040519080825280601f01601f19166020018201604052801561239e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123d6576123d5613777565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061243a57612439613777565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261247a9190613350565b6124849190612d5a565b90505b6001811115612524577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124c6576124c5613777565b5b1a60f81b8282815181106124dd576124dc613777565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061251d90613b02565b9050612487565b5060008414612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90613b77565b60405180910390fd5b8091505092915050565b505050565b505050565b60008061258761113c565b905080600854846125989190613350565b6125a29190613561565b915050919050565b6000819050919050565b6125bd816125aa565b82525050565b60006020820190506125d860008301846125b4565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612627816125f2565b811461263257600080fd5b50565b6000813590506126448161261e565b92915050565b6000602082840312156126605761265f6125e8565b5b600061266e84828501612635565b91505092915050565b60008115159050919050565b61268c81612677565b82525050565b60006020820190506126a76000830184612683565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126e75780820151818401526020810190506126cc565b60008484015250505050565b6000601f19601f8301169050919050565b600061270f826126ad565b61271981856126b8565b93506127298185602086016126c9565b612732816126f3565b840191505092915050565b600060208201905081810360008301526127578184612704565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278a8261275f565b9050919050565b61279a8161277f565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000819050919050565b6127d0816127bd565b81146127db57600080fd5b50565b6000813590506127ed816127c7565b92915050565b6000806040838503121561280a576128096125e8565b5b6000612818858286016127a8565b9250506020612829858286016127de565b9150509250929050565b61283c816127bd565b82525050565b60006020820190506128576000830184612833565b92915050565b600060208284031215612873576128726125e8565b5b6000612881848285016127a8565b91505092915050565b6000806000606084860312156128a3576128a26125e8565b5b60006128b1868287016127a8565b93505060206128c2868287016127a8565b92505060406128d3868287016127de565b9150509250925092565b6128e6816125aa565b81146128f157600080fd5b50565b600081359050612903816128dd565b92915050565b60006020828403121561291f5761291e6125e8565b5b600061292d848285016128f4565b91505092915050565b6000806040838503121561294d5761294c6125e8565b5b600061295b858286016128f4565b925050602061296c858286016127a8565b9150509250929050565b600060ff82169050919050565b61298c81612976565b82525050565b60006020820190506129a76000830184612983565b92915050565b6129b681612677565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b600080604083850312156129f0576129ef6125e8565b5b60006129fe858286016127a8565b9250506020612a0f858286016129c4565b9150509250929050565b612a228161277f565b82525050565b6000602082019050612a3d6000830184612a19565b92915050565b60008060408385031215612a5a57612a596125e8565b5b6000612a68858286016127a8565b9250506020612a79858286016127a8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aca57607f821691505b602082108103612add57612adc612a83565b5b50919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206d61726b65746960008201527f6e67206164647265737320746f20300000000000000000000000000000000000602082015250565b6000612b3f602f836126b8565b9150612b4a82612ae3565b604082019050919050565b60006020820190508181036000830152612b6e81612b32565b9050919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206d61726b65746960008201527f6e67206164647265737320746f20646561642061646472657373000000000000602082015250565b6000612bd1603a836126b8565b9150612bdc82612b75565b604082019050919050565b60006020820190508181036000830152612c0081612bc4565b9050919050565b7f54617861626c65546f6b656e3a204d61726b6574696e6720616e64206465762060008201527f616464726573732063616e6e6f74206265207468652073616d65000000000000602082015250565b6000612c63603a836126b8565b9150612c6e82612c07565b604082019050919050565b60006020820190508181036000830152612c9281612c56565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612cf5602f836126b8565b9150612d0082612c99565b604082019050919050565b60006020820190508181036000830152612d2481612ce8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d65826127bd565b9150612d70836127bd565b9250828201905080821115612d8857612d87612d2b565b5b92915050565b7f54617861626c65546f6b656e3a2043616e6e6f74206368616e6765207374617460008201527f7573206f6620626173652074726164696e672070616972000000000000000000602082015250565b6000612dea6037836126b8565b9150612df582612d8e565b604082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206465762061646460008201527f7265737320746f20300000000000000000000000000000000000000000000000602082015250565b6000612e7c6029836126b8565b9150612e8782612e20565b604082019050919050565b60006020820190508181036000830152612eab81612e6f565b9050919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206465762061646460008201527f7265737320746f20646561642061646472657373000000000000000000000000602082015250565b6000612f0e6034836126b8565b9150612f1982612eb2565b604082019050919050565b60006020820190508181036000830152612f3d81612f01565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612fa06025836126b8565b9150612fab82612f44565b604082019050919050565b60006020820190508181036000830152612fcf81612f93565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130326024836126b8565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c46022836126b8565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613130601d836126b8565b915061313b826130fa565b602082019050919050565b6000602082019050818103600083015261315f81613123565b9050919050565b7f45524332303a2043616e6e6f74207472616e736665722066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b60006131c2602c836126b8565b91506131cd82613166565b604082019050919050565b600060208201905081810360008301526131f1816131b5565b9050919050565b7f45524332303a204d757374207472616e73666572206d6f7265207468616e207a60008201527f65726f0000000000000000000000000000000000000000000000000000000000602082015250565b60006132546023836126b8565b915061325f826131f8565b604082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b6000613295826127bd565b91506132a0836127bd565b92508282039050818111156132b8576132b7612d2b565b5b92915050565b7f54617861626c65546f6b656e3a20546178206d7573742062652064697361626c60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061331a6022836126b8565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b600061335b826127bd565b9150613366836127bd565b9250828202613374816127bd565b9150828204841483151761338b5761338a612d2b565b5b5092915050565b7f54617861626c65546f6b656e3a20546178206d75737420626520656e61626c6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ee6021836126b8565b91506133f982613392565b604082019050919050565b6000602082019050818103600083015261341d816133e1565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613465601783613424565b91506134708261342f565b601782019050919050565b6000613486826126ad565b6134908185613424565b93506134a08185602086016126c9565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006134e2601183613424565b91506134ed826134ac565b601182019050919050565b600061350382613458565b915061350f828561347b565b915061351a826134d5565b9150613526828461347b565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061356c826127bd565b9150613577836127bd565b92508261358757613586613532565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135ee6025836126b8565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136806023836126b8565b915061368b82613624565b604082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137126026836126b8565b915061371d826136b6565b604082019050919050565b6000602082019050818103600083015261374181613705565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506137b581612791565b92915050565b6000602082840312156137d1576137d06125e8565b5b60006137df848285016137a6565b91505092915050565b6000819050919050565b6000819050919050565b600061381761381261380d846137e8565b6137f2565b6127bd565b9050919050565b613827816137fc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138628161277f565b82525050565b60006138748383613859565b60208301905092915050565b6000602082019050919050565b60006138988261382d565b6138a28185613838565b93506138ad83613849565b8060005b838110156138de5781516138c58882613868565b97506138d083613880565b9250506001810190506138b1565b5085935050505092915050565b600060a0820190506139006000830188612833565b61390d602083018761381e565b818103604083015261391f818661388d565b905061392e6060830185612a19565b61393b6080830184612833565b9695505050505050565b600080fd5b613953826126f3565b810181811067ffffffffffffffff8211171561397257613971613748565b5b80604052505050565b60006139856125de565b9050613991828261394a565b919050565b600067ffffffffffffffff8211156139b1576139b0613748565b5b602082029050602081019050919050565b600080fd5b6000815190506139d6816127c7565b92915050565b60006139ef6139ea84613996565b61397b565b90508083825260208201905060208402830185811115613a1257613a116139c2565b5b835b81811015613a3b5780613a2788826139c7565b845260208401935050602081019050613a14565b5050509392505050565b600082601f830112613a5a57613a59613945565b5b8151613a6a8482602086016139dc565b91505092915050565b600060208284031215613a8957613a886125e8565b5b600082015167ffffffffffffffff811115613aa757613aa66125ed565b5b613ab384828501613a45565b91505092915050565b600081905092915050565b50565b6000613ad7600083613abc565b9150613ae282613ac7565b600082019050919050565b6000613af882613aca565b9150819050919050565b6000613b0d826127bd565b915060008203613b2057613b1f612d2b565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613b616020836126b8565b9150613b6c82613b2b565b602082019050919050565b60006020820190508181036000830152613b9081613b54565b905091905056fea26469706673582212200d1d4a29819195b973e9bdb7597c875100f573b68597197d2b7269a25ad04a2164736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101e65760003560e01c80638503376211610102578063aa8b788611610095578063d547741f11610064578063d547741f14610711578063dd62ed3e1461073a578063e34d99bf14610777578063e6c1909b146107a2576101ed565b8063aa8b78861461067b578063ae6753fd146106b8578063b374df5c146106e3578063ced695a4146106fa576101ed565b806395d89b41116100d157806395d89b41146105ab578063a217fddf146105d6578063a457c2d714610601578063a9059cbb1461063e576101ed565b806385033762146104ef5780638e8ac41b146105185780639183faaa1461054357806391d148541461056e576101ed565b8063248a9ca31161017a5780633950935111610149578063395093511461043557806353eb3bcf1461047257806370a08231146104895780637b9bae54146104c6576101ed565b8063248a9ca31461037b5780632f2ff15d146103b8578063313ce567146103e157806336568abe1461040c576101ed565b806318160ddd116101b657806318160ddd146102bf578063235d1734146102ea5780632369bf831461031557806323b872dd1461033e576101ed565b8062c26a3e146101ef57806301ffc9a71461021a57806306fdde0314610257578063095ea7b314610282576101ed565b366101ed57005b005b3480156101fb57600080fd5b506102046107cd565b60405161021191906125c3565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061264a565b6107f1565b60405161024e9190612692565b60405180910390f35b34801561026357600080fd5b5061026c61086b565b604051610279919061273d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906127f3565b6108fd565b6040516102b69190612692565b60405180910390f35b3480156102cb57600080fd5b506102d4610920565b6040516102e19190612842565b60405180910390f35b3480156102f657600080fd5b506102ff61092a565b60405161030c9190612842565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061285d565b610934565b005b34801561034a57600080fd5b506103656004803603810190610360919061288a565b610af5565b6040516103729190612692565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190612909565b610b24565b6040516103af91906125c3565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190612936565b610b44565b005b3480156103ed57600080fd5b506103f6610b65565b6040516104039190612992565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612936565b610b6e565b005b34801561044157600080fd5b5061045c600480360381019061045791906127f3565b610bf1565b6040516104699190612692565b60405180910390f35b34801561047e57600080fd5b50610487610c28565b005b34801561049557600080fd5b506104b060048036038101906104ab919061285d565b610c48565b6040516104bd9190612842565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906129d9565b610c90565b005b3480156104fb57600080fd5b506105166004803603810190610511919061285d565b610d89565b005b34801561052457600080fd5b5061052d610f4a565b60405161053a9190612842565b60405180910390f35b34801561054f57600080fd5b50610558610f54565b6040516105659190612a28565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190612936565b610f7e565b6040516105a29190612692565b60405180910390f35b3480156105b757600080fd5b506105c0610fe9565b6040516105cd919061273d565b60405180910390f35b3480156105e257600080fd5b506105eb61107b565b6040516105f891906125c3565b60405180910390f35b34801561060d57600080fd5b50610628600480360381019061062391906127f3565b611082565b6040516106359190612692565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906127f3565b6110f9565b6040516106729190612692565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061285d565b61111c565b6040516106af9190612692565b60405180910390f35b3480156106c457600080fd5b506106cd61113c565b6040516106da9190612842565b60405180910390f35b3480156106ef57600080fd5b506106f8611153565b005b34801561070657600080fd5b5061070f6111a1565b005b34801561071d57600080fd5b5061073860048036038101906107339190612936565b6111c1565b005b34801561074657600080fd5b50610761600480360381019061075c9190612a43565b6111e2565b60405161076e9190612842565b60405180910390f35b34801561078357600080fd5b5061078c611269565b6040516107999190612a28565b60405180910390f35b3480156107ae57600080fd5b506107b7611293565b6040516107c49190612692565b60405180910390f35b7fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e481565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108645750610863826112aa565b5b9050919050565b60606003805461087a90612ab2565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690612ab2565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b600080610908611314565b905061091581858561131c565b600191505092915050565b6000600254905090565b6000600854905090565b6000801b610941816114e5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790612b55565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790612be7565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790612c79565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600080610b00611314565b9050610b0d8582856114f9565b610b18858585611585565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b610b4d82610b24565b610b56816114e5565b610b6083836118a0565b505050565b60006012905090565b610b76611314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90612d0b565b60405180910390fd5b610bed8282611981565b5050565b600080610bfc611314565b9050610c1d818585610c0e85896111e2565b610c189190612d5a565b61131c565b600191505092915050565b6000801b610c35816114e5565b610c3d611a63565b610c45611aad565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b610c9d816114e5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490612e00565b60405180910390fd5b81600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6000801b610d96816114e5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90612e92565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90612f24565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90612c79565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600954905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ff890612ab2565b80601f016020809104026020016040519081016040528092919081815260200182805461102490612ab2565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b5050505050905090565b6000801b81565b60008061108d611314565b9050600061109b82866111e2565b9050838110156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612fb6565b60405180910390fd5b6110ed828686840361131c565b60019250505092915050565b600080611104611314565b9050611111818585611585565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600060095460085461114e9190612d5a565b905090565b6000801b611160816114e5565b6001600f60146101000a81548160ff021916908315150217905550611183611afe565b6000600f60146101000a81548160ff02191690831515021790555050565b6000801b6111ae816114e5565b6111b6611b47565b6111be611b90565b50565b6111ca82610b24565b6111d3816114e5565b6111dd8383611981565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900460ff16905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f1906130da565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114d89190612842565b60405180910390a3505050565b6114f6816114f1611314565b611be1565b50565b600061150584846111e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461157f5781811015611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890613146565b60405180910390fd5b61157e848484840361131c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb906131d8565b60405180910390fd5b60008111611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061326a565b60405180910390fd5b600f60149054906101000a900460ff16158015611661575061166061165b30610c48565b611c66565b5b80156116b65750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156116fa576001600f60146101000a81548160ff0219169083151502179055506116de611afe565b6000600f60146101000a81548160ff0219169083151502179055505b6000819050600f60149054906101000a900460ff1661188f57600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117b45750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561188e576117c1611293565b80156117f457506117f27fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e485610f7e565b155b801561182757506118257fb3fda211b9a175e5f527b4c4581e19a0debf2a1b720144ddfc97b1b580bf06e484610f7e565b155b1561188d57600061183782611c74565b9050600061184483611caf565b9050808285611853919061328a565b61185d919061328a565b92506000818361186d9190612d5a565b111561188a57611889863083856118849190612d5a565b611cea565b5b50505b5b5b61189a848483611cea565b50505050565b6118aa8282610f7e565b61197d5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611922611314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61198b8282610f7e565b15611a5f5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a04611314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611a6b611293565b15611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613330565b60405180910390fd5b565b611ab5611a63565b6001600660006101000a81548160ff0219169083151502179055507fd2e80fb3f28dfb650beb9c059dadd2a8936a8bdc1abd1563608cd49227a0902160405160405180910390a1565b6000611b0930610c48565b90506005600754611b1a9190613350565b811115611b33576005600754611b309190613350565b90505b611b3c81611f60565b611b446121ba565b50565b611b4f611293565b611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613404565b60405180910390fd5b565b611b98611b47565b6000600660006101000a81548160ff0219169083151502179055507f7a14a3188411c2f406ce4721233750b4b11e612569f9fa80a35b1cb91bb2e49e60405160405180910390a1565b611beb8282610f7e565b611c6257611bf881612309565b611c068360001c6020612336565b604051602001611c179291906134f8565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59919061273d565b60405180910390fd5b5050565b600060075482119050919050565b6000611c7e611293565b15611ca5576103e860085483611c949190613350565b611c9e9190613561565b9050611caa565b600090505b919050565b6000611cb9611293565b15611ce0576103e860095483611ccf9190613350565b611cd99190613561565b9050611ce5565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613696565b60405180910390fd5b611dd3838383612572565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613728565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f479190612842565b60405180910390a3611f5a848484612577565b50505050565b6000600267ffffffffffffffff811115611f7d57611f7c613748565b5b604051908082528060200260200182016040528015611fab5781602001602082028036833780820191505090505b5090503081600081518110611fc357611fc2613777565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561206a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208e91906137bb565b816001815181106120a2576120a1613777565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061210930600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461131c565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58360008430426040518663ffffffff1660e01b815260040161216d9594939291906138eb565b6000604051808303816000875af115801561218c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906121b59190613a73565b505050565b60004790506000808211156123055760006121d48361257c565b9050600081846121e4919061328a565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161222c90613aed565b60006040518083038185875af1925050503d8060008114612269576040519150601f19603f3d011682016040523d82523d6000602084013e61226e565b606091505b505080935050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516122ba90613aed565b60006040518083038185875af1925050503d80600081146122f7576040519150601f19603f3d011682016040523d82523d6000602084013e6122fc565b606091505b50508093505050505b5050565b606061232f8273ffffffffffffffffffffffffffffffffffffffff16601460ff16612336565b9050919050565b6060600060028360026123499190613350565b6123539190612d5a565b67ffffffffffffffff81111561236c5761236b613748565b5b6040519080825280601f01601f19166020018201604052801561239e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123d6576123d5613777565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061243a57612439613777565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261247a9190613350565b6124849190612d5a565b90505b6001811115612524577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124c6576124c5613777565b5b1a60f81b8282815181106124dd576124dc613777565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061251d90613b02565b9050612487565b5060008414612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90613b77565b60405180910390fd5b8091505092915050565b505050565b505050565b60008061258761113c565b905080600854846125989190613350565b6125a29190613561565b915050919050565b6000819050919050565b6125bd816125aa565b82525050565b60006020820190506125d860008301846125b4565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612627816125f2565b811461263257600080fd5b50565b6000813590506126448161261e565b92915050565b6000602082840312156126605761265f6125e8565b5b600061266e84828501612635565b91505092915050565b60008115159050919050565b61268c81612677565b82525050565b60006020820190506126a76000830184612683565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126e75780820151818401526020810190506126cc565b60008484015250505050565b6000601f19601f8301169050919050565b600061270f826126ad565b61271981856126b8565b93506127298185602086016126c9565b612732816126f3565b840191505092915050565b600060208201905081810360008301526127578184612704565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278a8261275f565b9050919050565b61279a8161277f565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000819050919050565b6127d0816127bd565b81146127db57600080fd5b50565b6000813590506127ed816127c7565b92915050565b6000806040838503121561280a576128096125e8565b5b6000612818858286016127a8565b9250506020612829858286016127de565b9150509250929050565b61283c816127bd565b82525050565b60006020820190506128576000830184612833565b92915050565b600060208284031215612873576128726125e8565b5b6000612881848285016127a8565b91505092915050565b6000806000606084860312156128a3576128a26125e8565b5b60006128b1868287016127a8565b93505060206128c2868287016127a8565b92505060406128d3868287016127de565b9150509250925092565b6128e6816125aa565b81146128f157600080fd5b50565b600081359050612903816128dd565b92915050565b60006020828403121561291f5761291e6125e8565b5b600061292d848285016128f4565b91505092915050565b6000806040838503121561294d5761294c6125e8565b5b600061295b858286016128f4565b925050602061296c858286016127a8565b9150509250929050565b600060ff82169050919050565b61298c81612976565b82525050565b60006020820190506129a76000830184612983565b92915050565b6129b681612677565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b600080604083850312156129f0576129ef6125e8565b5b60006129fe858286016127a8565b9250506020612a0f858286016129c4565b9150509250929050565b612a228161277f565b82525050565b6000602082019050612a3d6000830184612a19565b92915050565b60008060408385031215612a5a57612a596125e8565b5b6000612a68858286016127a8565b9250506020612a79858286016127a8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aca57607f821691505b602082108103612add57612adc612a83565b5b50919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206d61726b65746960008201527f6e67206164647265737320746f20300000000000000000000000000000000000602082015250565b6000612b3f602f836126b8565b9150612b4a82612ae3565b604082019050919050565b60006020820190508181036000830152612b6e81612b32565b9050919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206d61726b65746960008201527f6e67206164647265737320746f20646561642061646472657373000000000000602082015250565b6000612bd1603a836126b8565b9150612bdc82612b75565b604082019050919050565b60006020820190508181036000830152612c0081612bc4565b9050919050565b7f54617861626c65546f6b656e3a204d61726b6574696e6720616e64206465762060008201527f616464726573732063616e6e6f74206265207468652073616d65000000000000602082015250565b6000612c63603a836126b8565b9150612c6e82612c07565b604082019050919050565b60006020820190508181036000830152612c9281612c56565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612cf5602f836126b8565b9150612d0082612c99565b604082019050919050565b60006020820190508181036000830152612d2481612ce8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d65826127bd565b9150612d70836127bd565b9250828201905080821115612d8857612d87612d2b565b5b92915050565b7f54617861626c65546f6b656e3a2043616e6e6f74206368616e6765207374617460008201527f7573206f6620626173652074726164696e672070616972000000000000000000602082015250565b6000612dea6037836126b8565b9150612df582612d8e565b604082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206465762061646460008201527f7265737320746f20300000000000000000000000000000000000000000000000602082015250565b6000612e7c6029836126b8565b9150612e8782612e20565b604082019050919050565b60006020820190508181036000830152612eab81612e6f565b9050919050565b7f54617861626c65546f6b656e3a2043616e6e6f7420736574206465762061646460008201527f7265737320746f20646561642061646472657373000000000000000000000000602082015250565b6000612f0e6034836126b8565b9150612f1982612eb2565b604082019050919050565b60006020820190508181036000830152612f3d81612f01565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612fa06025836126b8565b9150612fab82612f44565b604082019050919050565b60006020820190508181036000830152612fcf81612f93565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130326024836126b8565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c46022836126b8565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613130601d836126b8565b915061313b826130fa565b602082019050919050565b6000602082019050818103600083015261315f81613123565b9050919050565b7f45524332303a2043616e6e6f74207472616e736665722066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b60006131c2602c836126b8565b91506131cd82613166565b604082019050919050565b600060208201905081810360008301526131f1816131b5565b9050919050565b7f45524332303a204d757374207472616e73666572206d6f7265207468616e207a60008201527f65726f0000000000000000000000000000000000000000000000000000000000602082015250565b60006132546023836126b8565b915061325f826131f8565b604082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b6000613295826127bd565b91506132a0836127bd565b92508282039050818111156132b8576132b7612d2b565b5b92915050565b7f54617861626c65546f6b656e3a20546178206d7573742062652064697361626c60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061331a6022836126b8565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b600061335b826127bd565b9150613366836127bd565b9250828202613374816127bd565b9150828204841483151761338b5761338a612d2b565b5b5092915050565b7f54617861626c65546f6b656e3a20546178206d75737420626520656e61626c6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ee6021836126b8565b91506133f982613392565b604082019050919050565b6000602082019050818103600083015261341d816133e1565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613465601783613424565b91506134708261342f565b601782019050919050565b6000613486826126ad565b6134908185613424565b93506134a08185602086016126c9565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006134e2601183613424565b91506134ed826134ac565b601182019050919050565b600061350382613458565b915061350f828561347b565b915061351a826134d5565b9150613526828461347b565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061356c826127bd565b9150613577836127bd565b92508261358757613586613532565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135ee6025836126b8565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136806023836126b8565b915061368b82613624565b604082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137126026836126b8565b915061371d826136b6565b604082019050919050565b6000602082019050818103600083015261374181613705565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506137b581612791565b92915050565b6000602082840312156137d1576137d06125e8565b5b60006137df848285016137a6565b91505092915050565b6000819050919050565b6000819050919050565b600061381761381261380d846137e8565b6137f2565b6127bd565b9050919050565b613827816137fc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138628161277f565b82525050565b60006138748383613859565b60208301905092915050565b6000602082019050919050565b60006138988261382d565b6138a28185613838565b93506138ad83613849565b8060005b838110156138de5781516138c58882613868565b97506138d083613880565b9250506001810190506138b1565b5085935050505092915050565b600060a0820190506139006000830188612833565b61390d602083018761381e565b818103604083015261391f818661388d565b905061392e6060830185612a19565b61393b6080830184612833565b9695505050505050565b600080fd5b613953826126f3565b810181811067ffffffffffffffff8211171561397257613971613748565b5b80604052505050565b60006139856125de565b9050613991828261394a565b919050565b600067ffffffffffffffff8211156139b1576139b0613748565b5b602082029050602081019050919050565b600080fd5b6000815190506139d6816127c7565b92915050565b60006139ef6139ea84613996565b61397b565b90508083825260208201905060208402830185811115613a1257613a116139c2565b5b835b81811015613a3b5780613a2788826139c7565b845260208401935050602081019050613a14565b5050509392505050565b600082601f830112613a5a57613a59613945565b5b8151613a6a8482602086016139dc565b91505092915050565b600060208284031215613a8957613a886125e8565b5b600082015167ffffffffffffffff811115613aa757613aa66125ed565b5b613ab384828501613a45565b91505092915050565b600081905092915050565b50565b6000613ad7600083613abc565b9150613ae282613ac7565b600082019050919050565b6000613af882613aca565b9150819050919050565b6000613b0d826127bd565b915060008203613b2057613b1f612d2b565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613b616020836126b8565b9150613b6c82613b2b565b602082019050919050565b60006020820190508181036000830152613b9081613b54565b905091905056fea26469706673582212200d1d4a29819195b973e9bdb7597c875100f573b68597197d2b7269a25ad04a2164736f6c63430008120033
Deployed Bytecode Sourcemap
61983:3145:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55501:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23794:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35235:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37586:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36355:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56958:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57408:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38367:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25617:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26058:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36197:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27202:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39071:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56487:112;;;;;;;;;;;;;:::i;:::-;;36526:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58386:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57921:457;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57075:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57180:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24090:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35454:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23195:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39812:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36859:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55448:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56831:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62931:170;;;;;;;;;;;;;:::i;:::-;;56607:113;;;;;;;;;;;;;:::i;:::-;;26498:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37115:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57300:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56725:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55501:84;55550:35;55501:84;:::o;23794:204::-;23879:4;23918:32;23903:47;;;:11;:47;;;;:87;;;;23954:36;23978:11;23954:23;:36::i;:::-;23903:87;23896:94;;23794:204;;;:::o;35235:100::-;35289:13;35322:5;35315:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35235:100;:::o;37586:201::-;37669:4;37686:13;37702:12;:10;:12::i;:::-;37686:28;;37725:32;37734:5;37741:7;37750:6;37725:8;:32::i;:::-;37775:4;37768:11;;;37586:201;;;;:::o;36355:108::-;36416:7;36443:12;;36436:19;;36355:108;:::o;56958:109::-;57018:4;57042:17;;57035:24;;56958:109;:::o;57408:505::-;23240:4;57493:18;;23686:16;23697:4;23686:10;:16::i;:::-;57563:1:::1;57532:33;;:19;:33;;::::0;57524:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57667:6;57636:38;;:19;:38;;::::0;57628:109:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57779:11;;;;;;;;;;;57756:34;;:19;:34;;::::0;57748:105:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57886:19;57866:17;;:39;;;;;;;;;;;;;;;;;;57408:505:::0;;:::o;38367:295::-;38498:4;38515:15;38533:12;:10;:12::i;:::-;38515:30;;38556:38;38572:4;38578:7;38587:6;38556:15;:38::i;:::-;38605:27;38615:4;38621:2;38625:6;38605:9;:27::i;:::-;38650:4;38643:11;;;38367:295;;;;;:::o;25617:131::-;25691:7;25718:6;:12;25725:4;25718:12;;;;;;;;;;;:22;;;25711:29;;25617:131;;;:::o;26058:147::-;26141:18;26154:4;26141:12;:18::i;:::-;23686:16;23697:4;23686:10;:16::i;:::-;26172:25:::1;26183:4;26189:7;26172:10;:25::i;:::-;26058:147:::0;;;:::o;36197:93::-;36255:5;36280:2;36273:9;;36197:93;:::o;27202:218::-;27309:12;:10;:12::i;:::-;27298:23;;:7;:23;;;27290:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;27386:26;27398:4;27404:7;27386:11;:26::i;:::-;27202:218;;:::o;39071:238::-;39159:4;39176:13;39192:12;:10;:12::i;:::-;39176:28;;39215:64;39224:5;39231:7;39268:10;39240:25;39250:5;39257:7;39240:9;:25::i;:::-;:38;;;;:::i;:::-;39215:8;:64::i;:::-;39297:4;39290:11;;;39071:238;;;;:::o;56487:112::-;23240:4;56532:18;;23686:16;23697:4;23686:10;:16::i;:::-;56356:21:::1;:19;:21::i;:::-;56579:12:::2;:10;:12::i;:::-;56487:112:::0;:::o;36526:127::-;36600:7;36627:9;:18;36637:7;36627:18;;;;;;;;;;;;;;;;36620:25;;36526:127;;;:::o;58386:255::-;23240:4;58470:18;;23686:16;23697:4;23686:10;:16::i;:::-;58517::::1;;;;;;;;;;;58509:24;;:4;:24;;::::0;58501:92:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58627:6;58606:12;:18;58619:4;58606:18;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;58386:255:::0;;;:::o;57921:457::-;23240:4;57994:18;;23686:16;23697:4;23686:10;:16::i;:::-;58058:1:::1;58033:27;;:13;:27;;::::0;58025:81:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58150:6;58125:32;;:13;:32;;::::0;58117:97:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58250:17;;;;;;;;;;;58233:34;;:13;:34;;::::0;58225:105:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58357:13;58343:11;;:27;;;;;;;;;;;;;;;;;;57921:457:::0;;:::o;57075:97::-;57129:4;57153:11;;57146:18;;57075:97;:::o;57180:112::-;57240:7;57267:17;;;;;;;;;;;57260:24;;57180:112;:::o;24090:147::-;24176:4;24200:6;:12;24207:4;24200:12;;;;;;;;;;;:20;;:29;24221:7;24200:29;;;;;;;;;;;;;;;;;;;;;;;;;24193:36;;24090:147;;;;:::o;35454:104::-;35510:13;35543:7;35536:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35454:104;:::o;23195:49::-;23240:4;23195:49;;;:::o;39812:436::-;39905:4;39922:13;39938:12;:10;:12::i;:::-;39922:28;;39961:24;39988:25;39998:5;40005:7;39988:9;:25::i;:::-;39961:52;;40052:15;40032:16;:35;;40024:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40145:60;40154:5;40161:7;40189:15;40170:16;:34;40145:8;:60::i;:::-;40236:4;40229:11;;;;39812:436;;;;:::o;36859:193::-;36938:4;36955:13;36971:12;:10;:12::i;:::-;36955:28;;36994;37004:5;37011:2;37015:6;36994:9;:28::i;:::-;37040:4;37033:11;;;36859:193;;;;:::o;55448:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;56831:119::-;56887:4;56931:11;;56911:17;;:31;;;;:::i;:::-;56904:38;;56831:119;:::o;62931:170::-;23240:4;62969:18;;23686:16;23697:4;23686:10;:16::i;:::-;63021:4:::1;63000:18;;:25;;;;;;;;;;;;;;;;;;63036:20;:18;:20::i;:::-;63088:5;63067:18;;:26;;;;;;;;;;;;;;;;;;62931:170:::0;:::o;56607:113::-;23240:4;56653:18;;23686:16;23697:4;23686:10;:16::i;:::-;56439:20:::1;:18;:20::i;:::-;56699:13:::2;:11;:13::i;:::-;56607:113:::0;:::o;26498:149::-;26582:18;26595:4;26582:12;:18::i;:::-;23686:16;23697:4;23686:10;:16::i;:::-;26613:26:::1;26625:4;26631:7;26613:11;:26::i;:::-;26498:149:::0;;;:::o;37115:151::-;37204:7;37231:11;:18;37243:5;37231:18;;;;;;;;;;;;;;;:27;37250:7;37231:27;;;;;;;;;;;;;;;;37224:34;;37115:151;;;;:::o;57300:100::-;57354:7;57381:11;;;;;;;;;;;57374:18;;57300:100;:::o;56725:98::-;56778:4;56802:13;;;;;;;;;;;56795:20;;56725:98;:::o;5834:157::-;5919:4;5958:25;5943:40;;;:11;:40;;;;5936:47;;5834:157;;;:::o;3828:98::-;3881:7;3908:10;3901:17;;3828:98;:::o;43839:380::-;43992:1;43975:19;;:5;:19;;;43967:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44073:1;44054:21;;:7;:21;;;44046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44157:6;44127:11;:18;44139:5;44127:18;;;;;;;;;;;;;;;:27;44146:7;44127:27;;;;;;;;;;;;;;;:36;;;;44195:7;44179:32;;44188:5;44179:32;;;44204:6;44179:32;;;;;;:::i;:::-;;;;;;;;43839:380;;;:::o;24541:105::-;24608:30;24619:4;24625:12;:10;:12::i;:::-;24608:10;:30::i;:::-;24541:105;:::o;44510:453::-;44645:24;44672:25;44682:5;44689:7;44672:9;:25::i;:::-;44645:52;;44732:17;44712:16;:37;44708:248;;44794:6;44774:16;:26;;44766:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44878:51;44887:5;44894:7;44922:6;44903:16;:25;44878:8;:51::i;:::-;44708:248;44634:329;44510:453;;;:::o;63109:1252::-;63223:1;63207:18;;:4;:18;;;63199:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;63302:1;63293:6;:10;63285:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63361:18;;;;;;;;;;;63360:19;:71;;;;;63383:48;63406:24;63424:4;63406:9;:24::i;:::-;63383:22;:48::i;:::-;63360:71;:91;;;;;63435:12;:16;63448:2;63435:16;;;;;;;;;;;;;;;;;;;;;;;;;63360:91;63356:225;;;63489:4;63468:18;;:25;;;;;;;;;;;;;;;;;;63508:20;:18;:20::i;:::-;63564:5;63543:18;;:26;;;;;;;;;;;;;;;;;;63356:225;63593:21;63617:6;63593:30;;63641:18;;;;;;;;;;;63636:662;;63680:12;:18;63693:4;63680:18;;;;;;;;;;;;;;;;;;;;;;;;;:38;;;;63702:12;:16;63715:2;63702:16;;;;;;;;;;;;;;;;;;;;;;;;;63680:38;63676:611;;;63743:14;:12;:14::i;:::-;:56;;;;;63762:37;55550:35;63794:4;63762:7;:37::i;:::-;63761:38;63743:56;:96;;;;;63804:35;55550;63836:2;63804:7;:35::i;:::-;63803:36;63743:96;63739:533;;;63864:20;63887:37;63907:16;63887:19;:37::i;:::-;63864:60;;63947:14;63964:31;63978:16;63964:13;:31::i;:::-;63947:48;;64064:9;64046:15;64037:6;:24;;;;:::i;:::-;:36;;;;:::i;:::-;64018:55;;64134:1;64121:9;64103:15;:27;;;;:::i;:::-;64102:33;64098:155;;;64164:65;64180:4;64194;64219:9;64201:15;:27;;;;:::i;:::-;64164:15;:65::i;:::-;64098:155;63841:431;;63739:533;63676:611;63636:662;64310:43;64326:4;64332:2;64336:16;64310:15;:43::i;:::-;63188:1173;63109:1252;;;:::o;28799:238::-;28883:22;28891:4;28897:7;28883;:22::i;:::-;28878:152;;28954:4;28922:6;:12;28929:4;28922:12;;;;;;;;;;;:20;;:29;28943:7;28922:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;29005:12;:10;:12::i;:::-;28978:40;;28996:7;28978:40;;28990:4;28978:40;;;;;;;;;;28878:152;28799:238;;:::o;29217:239::-;29301:22;29309:4;29315:7;29301;:22::i;:::-;29297:152;;;29372:5;29340:6;:12;29347:4;29340:12;;;;;;;;;;;:20;;:29;29361:7;29340:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29424:12;:10;:12::i;:::-;29397:40;;29415:7;29397:40;;29409:4;29397:40;;;;;;;;;;29297:152;29217:239;;:::o;58646:134::-;58719:14;:12;:14::i;:::-;58718:15;58710:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58646:134::o;58921:122::-;56356:21;:19;:21::i;:::-;59003:4:::1;58987:13;;:20;;;;;;;;;;;;;;;;;;59023:12;;;;;;;;;;58921:122::o:0;64369:294::-;64418:17;64438:24;64456:4;64438:9;:24::i;:::-;64418:44;;64511:1;64492:16;;:20;;;;:::i;:::-;64477:12;:35;64473:103;;;64563:1;64544:16;;:20;;;;:::i;:::-;64529:35;;64473:103;64588:31;64606:12;64588:17;:31::i;:::-;64630:25;:23;:25::i;:::-;64407:256;64369:294::o;58785:131::-;58856:14;:12;:14::i;:::-;58848:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58785:131::o;59048:124::-;56439:20;:18;:20::i;:::-;59130:5:::1;59114:13;;:21;;;;;;;;;;;;;;;;;;59151:13;;;;;;;;;;59048:124::o:0;24936:492::-;25025:22;25033:4;25039:7;25025;:22::i;:::-;25020:401;;25213:28;25233:7;25213:19;:28::i;:::-;25314:38;25342:4;25334:13;;25349:2;25314:19;:38::i;:::-;25118:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25064:345;;;;;;;;;;;:::i;:::-;;;;;;;;25020:401;24936:492;;:::o;59405:151::-;59490:4;59532:16;;59514:15;:34;59507:41;;59405:151;;;:::o;60573:207::-;60646:4;60667:14;:12;:14::i;:::-;60663:89;;;60736:4;60715:17;;60706:6;:26;;;;:::i;:::-;60705:35;;;;:::i;:::-;60698:42;;;;60663:89;60771:1;60764:8;;60573:207;;;;:::o;60788:195::-;60855:4;60876:14;:12;:14::i;:::-;60872:83;;;60939:4;60924:11;;60915:6;:20;;;;:::i;:::-;60914:29;;;;:::i;:::-;60907:36;;;;60872:83;60974:1;60967:8;;60788:195;;;;:::o;40718:840::-;40865:1;40849:18;;:4;:18;;;40841:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40942:1;40928:16;;:2;:16;;;40920:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40997:38;41018:4;41024:2;41028:6;40997:20;:38::i;:::-;41048:19;41070:9;:15;41080:4;41070:15;;;;;;;;;;;;;;;;41048:37;;41119:6;41104:11;:21;;41096:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;41236:6;41222:11;:20;41204:9;:15;41214:4;41204:15;;;;;;;;;;;;;;;:38;;;;41439:6;41422:9;:13;41432:2;41422:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;41489:2;41474:26;;41483:4;41474:26;;;41493:6;41474:26;;;;;;:::i;:::-;;;;;;;;41513:37;41533:4;41539:2;41543:6;41513:19;:37::i;:::-;40830:728;40718:840;;;:::o;64671:381::-;64733:21;64771:1;64757:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64733:40;;64802:4;64784;64789:1;64784:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;64828:16;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64818:4;64823:1;64818:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;64864:58;64881:4;64896:16;;;;;;;;;;;64915:6;64864:8;:58::i;:::-;64933:16;;;;;;;;;;;:38;;;64986:6;64994:1;64997:4;65011;65018:15;64933:111;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64722:330;64671:381;:::o;61423:494::-;61486:20;61509:21;61486:44;;61541:12;61588:1;61570:15;:19;61566:344;;;61606:20;61629:38;61651:15;61629:21;:38::i;:::-;61606:61;;61682:14;61717:15;61699;:33;;;;:::i;:::-;61682:50;;61771:17;;;;;;;;;;;61763:31;;61802:15;61763:59;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61749:73;;;;;61859:11;;;;;;;;;;;61851:25;;61884:9;61851:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61837:61;;;;;61591:319;;61566:344;61475:442;;61423:494::o;21055:151::-;21113:13;21146:52;21174:4;21158:22;;19210:2;21146:52;;:11;:52::i;:::-;21139:59;;21055:151;;;:::o;20451:447::-;20526:13;20552:19;20597:1;20588:6;20584:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20574:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20552:47;;20610:15;:6;20617:1;20610:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20636;:6;20643:1;20636:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20667:9;20692:1;20683:6;20679:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20667:26;;20662:131;20699:1;20695;:5;20662:131;;;20734:8;20751:3;20743:5;:11;20734:21;;;;;;;:::i;:::-;;;;;20722:6;20729:1;20722:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;20780:1;20770:11;;;;;20702:3;;;;:::i;:::-;;;20662:131;;;;20820:1;20811:5;:10;20803:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20883:6;20869:21;;;20451:447;;;;:::o;45563:125::-;;;;:::o;46292:124::-;;;;:::o;60991:214::-;61073:4;61090:18;61111:17;:15;:17::i;:::-;61090:38;;61184:13;61163:17;;61147:13;:33;;;;:::i;:::-;61146:51;;;;:::i;:::-;61139:58;;;60991:214;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:126::-;3332:7;3372:42;3365:5;3361:54;3350:65;;3295:126;;;:::o;3427:96::-;3464:7;3493:24;3511:5;3493:24;:::i;:::-;3482:35;;3427:96;;;:::o;3529:122::-;3602:24;3620:5;3602:24;:::i;:::-;3595:5;3592:35;3582:63;;3641:1;3638;3631:12;3582:63;3529:122;:::o;3657:139::-;3703:5;3741:6;3728:20;3719:29;;3757:33;3784:5;3757:33;:::i;:::-;3657:139;;;;:::o;3802:77::-;3839:7;3868:5;3857:16;;3802:77;;;:::o;3885:122::-;3958:24;3976:5;3958:24;:::i;:::-;3951:5;3948:35;3938:63;;3997:1;3994;3987:12;3938:63;3885:122;:::o;4013:139::-;4059:5;4097:6;4084:20;4075:29;;4113:33;4140:5;4113:33;:::i;:::-;4013:139;;;;:::o;4158:474::-;4226:6;4234;4283:2;4271:9;4262:7;4258:23;4254:32;4251:119;;;4289:79;;:::i;:::-;4251:119;4409:1;4434:53;4479:7;4470:6;4459:9;4455:22;4434:53;:::i;:::-;4424:63;;4380:117;4536:2;4562:53;4607:7;4598:6;4587:9;4583:22;4562:53;:::i;:::-;4552:63;;4507:118;4158:474;;;;;:::o;4638:118::-;4725:24;4743:5;4725:24;:::i;:::-;4720:3;4713:37;4638:118;;:::o;4762:222::-;4855:4;4893:2;4882:9;4878:18;4870:26;;4906:71;4974:1;4963:9;4959:17;4950:6;4906:71;:::i;:::-;4762:222;;;;:::o;4990:329::-;5049:6;5098:2;5086:9;5077:7;5073:23;5069:32;5066:119;;;5104:79;;:::i;:::-;5066:119;5224:1;5249:53;5294:7;5285:6;5274:9;5270:22;5249:53;:::i;:::-;5239:63;;5195:117;4990:329;;;;:::o;5325:619::-;5402:6;5410;5418;5467:2;5455:9;5446:7;5442:23;5438:32;5435:119;;;5473:79;;:::i;:::-;5435:119;5593:1;5618:53;5663:7;5654:6;5643:9;5639:22;5618:53;:::i;:::-;5608:63;;5564:117;5720:2;5746:53;5791:7;5782:6;5771:9;5767:22;5746:53;:::i;:::-;5736:63;;5691:118;5848:2;5874:53;5919:7;5910:6;5899:9;5895:22;5874:53;:::i;:::-;5864:63;;5819:118;5325:619;;;;;:::o;5950:122::-;6023:24;6041:5;6023:24;:::i;:::-;6016:5;6013:35;6003:63;;6062:1;6059;6052:12;6003:63;5950:122;:::o;6078:139::-;6124:5;6162:6;6149:20;6140:29;;6178:33;6205:5;6178:33;:::i;:::-;6078:139;;;;:::o;6223:329::-;6282:6;6331:2;6319:9;6310:7;6306:23;6302:32;6299:119;;;6337:79;;:::i;:::-;6299:119;6457:1;6482:53;6527:7;6518:6;6507:9;6503:22;6482:53;:::i;:::-;6472:63;;6428:117;6223:329;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:86::-;7073:7;7113:4;7106:5;7102:16;7091:27;;7038:86;;;:::o;7130:112::-;7213:22;7229:5;7213:22;:::i;:::-;7208:3;7201:35;7130:112;;:::o;7248:214::-;7337:4;7375:2;7364:9;7360:18;7352:26;;7388:67;7452:1;7441:9;7437:17;7428:6;7388:67;:::i;:::-;7248:214;;;;:::o;7468:116::-;7538:21;7553:5;7538:21;:::i;:::-;7531:5;7528:32;7518:60;;7574:1;7571;7564:12;7518:60;7468:116;:::o;7590:133::-;7633:5;7671:6;7658:20;7649:29;;7687:30;7711:5;7687:30;:::i;:::-;7590:133;;;;:::o;7729:468::-;7794:6;7802;7851:2;7839:9;7830:7;7826:23;7822:32;7819:119;;;7857:79;;:::i;:::-;7819:119;7977:1;8002:53;8047:7;8038:6;8027:9;8023:22;8002:53;:::i;:::-;7992:63;;7948:117;8104:2;8130:50;8172:7;8163:6;8152:9;8148:22;8130:50;:::i;:::-;8120:60;;8075:115;7729:468;;;;;:::o;8203:118::-;8290:24;8308:5;8290:24;:::i;:::-;8285:3;8278:37;8203:118;;:::o;8327:222::-;8420:4;8458:2;8447:9;8443:18;8435:26;;8471:71;8539:1;8528:9;8524:17;8515:6;8471:71;:::i;:::-;8327:222;;;;:::o;8555:474::-;8623:6;8631;8680:2;8668:9;8659:7;8655:23;8651:32;8648:119;;;8686:79;;:::i;:::-;8648:119;8806:1;8831:53;8876:7;8867:6;8856:9;8852:22;8831:53;:::i;:::-;8821:63;;8777:117;8933:2;8959:53;9004:7;8995:6;8984:9;8980:22;8959:53;:::i;:::-;8949:63;;8904:118;8555:474;;;;;:::o;9035:180::-;9083:77;9080:1;9073:88;9180:4;9177:1;9170:15;9204:4;9201:1;9194:15;9221:320;9265:6;9302:1;9296:4;9292:12;9282:22;;9349:1;9343:4;9339:12;9370:18;9360:81;;9426:4;9418:6;9414:17;9404:27;;9360:81;9488:2;9480:6;9477:14;9457:18;9454:38;9451:84;;9507:18;;:::i;:::-;9451:84;9272:269;9221:320;;;:::o;9547:234::-;9687:34;9683:1;9675:6;9671:14;9664:58;9756:17;9751:2;9743:6;9739:15;9732:42;9547:234;:::o;9787:366::-;9929:3;9950:67;10014:2;10009:3;9950:67;:::i;:::-;9943:74;;10026:93;10115:3;10026:93;:::i;:::-;10144:2;10139:3;10135:12;10128:19;;9787:366;;;:::o;10159:419::-;10325:4;10363:2;10352:9;10348:18;10340:26;;10412:9;10406:4;10402:20;10398:1;10387:9;10383:17;10376:47;10440:131;10566:4;10440:131;:::i;:::-;10432:139;;10159:419;;;:::o;10584:245::-;10724:34;10720:1;10712:6;10708:14;10701:58;10793:28;10788:2;10780:6;10776:15;10769:53;10584:245;:::o;10835:366::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:419::-;11373:4;11411:2;11400:9;11396:18;11388:26;;11460:9;11454:4;11450:20;11446:1;11435:9;11431:17;11424:47;11488:131;11614:4;11488:131;:::i;:::-;11480:139;;11207:419;;;:::o;11632:245::-;11772:34;11768:1;11760:6;11756:14;11749:58;11841:28;11836:2;11828:6;11824:15;11817:53;11632:245;:::o;11883:366::-;12025:3;12046:67;12110:2;12105:3;12046:67;:::i;:::-;12039:74;;12122:93;12211:3;12122:93;:::i;:::-;12240:2;12235:3;12231:12;12224:19;;11883:366;;;:::o;12255:419::-;12421:4;12459:2;12448:9;12444:18;12436:26;;12508:9;12502:4;12498:20;12494:1;12483:9;12479:17;12472:47;12536:131;12662:4;12536:131;:::i;:::-;12528:139;;12255:419;;;:::o;12680:234::-;12820:34;12816:1;12808:6;12804:14;12797:58;12889:17;12884:2;12876:6;12872:15;12865:42;12680:234;:::o;12920:366::-;13062:3;13083:67;13147:2;13142:3;13083:67;:::i;:::-;13076:74;;13159:93;13248:3;13159:93;:::i;:::-;13277:2;13272:3;13268:12;13261:19;;12920:366;;;:::o;13292:419::-;13458:4;13496:2;13485:9;13481:18;13473:26;;13545:9;13539:4;13535:20;13531:1;13520:9;13516:17;13509:47;13573:131;13699:4;13573:131;:::i;:::-;13565:139;;13292:419;;;:::o;13717:180::-;13765:77;13762:1;13755:88;13862:4;13859:1;13852:15;13886:4;13883:1;13876:15;13903:191;13943:3;13962:20;13980:1;13962:20;:::i;:::-;13957:25;;13996:20;14014:1;13996:20;:::i;:::-;13991:25;;14039:1;14036;14032:9;14025:16;;14060:3;14057:1;14054:10;14051:36;;;14067:18;;:::i;:::-;14051:36;13903:191;;;;:::o;14100:242::-;14240:34;14236:1;14228:6;14224:14;14217:58;14309:25;14304:2;14296:6;14292:15;14285:50;14100:242;:::o;14348:366::-;14490:3;14511:67;14575:2;14570:3;14511:67;:::i;:::-;14504:74;;14587:93;14676:3;14587:93;:::i;:::-;14705:2;14700:3;14696:12;14689:19;;14348:366;;;:::o;14720:419::-;14886:4;14924:2;14913:9;14909:18;14901:26;;14973:9;14967:4;14963:20;14959:1;14948:9;14944:17;14937:47;15001:131;15127:4;15001:131;:::i;:::-;14993:139;;14720:419;;;:::o;15145:228::-;15285:34;15281:1;15273:6;15269:14;15262:58;15354:11;15349:2;15341:6;15337:15;15330:36;15145:228;:::o;15379:366::-;15521:3;15542:67;15606:2;15601:3;15542:67;:::i;:::-;15535:74;;15618:93;15707:3;15618:93;:::i;:::-;15736:2;15731:3;15727:12;15720:19;;15379:366;;;:::o;15751:419::-;15917:4;15955:2;15944:9;15940:18;15932:26;;16004:9;15998:4;15994:20;15990:1;15979:9;15975:17;15968:47;16032:131;16158:4;16032:131;:::i;:::-;16024:139;;15751:419;;;:::o;16176:239::-;16316:34;16312:1;16304:6;16300:14;16293:58;16385:22;16380:2;16372:6;16368:15;16361:47;16176:239;:::o;16421:366::-;16563:3;16584:67;16648:2;16643:3;16584:67;:::i;:::-;16577:74;;16660:93;16749:3;16660:93;:::i;:::-;16778:2;16773:3;16769:12;16762:19;;16421:366;;;:::o;16793:419::-;16959:4;16997:2;16986:9;16982:18;16974:26;;17046:9;17040:4;17036:20;17032:1;17021:9;17017:17;17010:47;17074:131;17200:4;17074:131;:::i;:::-;17066:139;;16793:419;;;:::o;17218:224::-;17358:34;17354:1;17346:6;17342:14;17335:58;17427:7;17422:2;17414:6;17410:15;17403:32;17218:224;:::o;17448:366::-;17590:3;17611:67;17675:2;17670:3;17611:67;:::i;:::-;17604:74;;17687:93;17776:3;17687:93;:::i;:::-;17805:2;17800:3;17796:12;17789:19;;17448:366;;;:::o;17820:419::-;17986:4;18024:2;18013:9;18009:18;18001:26;;18073:9;18067:4;18063:20;18059:1;18048:9;18044:17;18037:47;18101:131;18227:4;18101:131;:::i;:::-;18093:139;;17820:419;;;:::o;18245:223::-;18385:34;18381:1;18373:6;18369:14;18362:58;18454:6;18449:2;18441:6;18437:15;18430:31;18245:223;:::o;18474:366::-;18616:3;18637:67;18701:2;18696:3;18637:67;:::i;:::-;18630:74;;18713:93;18802:3;18713:93;:::i;:::-;18831:2;18826:3;18822:12;18815:19;;18474:366;;;:::o;18846:419::-;19012:4;19050:2;19039:9;19035:18;19027:26;;19099:9;19093:4;19089:20;19085:1;19074:9;19070:17;19063:47;19127:131;19253:4;19127:131;:::i;:::-;19119:139;;18846:419;;;:::o;19271:221::-;19411:34;19407:1;19399:6;19395:14;19388:58;19480:4;19475:2;19467:6;19463:15;19456:29;19271:221;:::o;19498:366::-;19640:3;19661:67;19725:2;19720:3;19661:67;:::i;:::-;19654:74;;19737:93;19826:3;19737:93;:::i;:::-;19855:2;19850:3;19846:12;19839:19;;19498:366;;;:::o;19870:419::-;20036:4;20074:2;20063:9;20059:18;20051:26;;20123:9;20117:4;20113:20;20109:1;20098:9;20094:17;20087:47;20151:131;20277:4;20151:131;:::i;:::-;20143:139;;19870:419;;;:::o;20295:179::-;20435:31;20431:1;20423:6;20419:14;20412:55;20295:179;:::o;20480:366::-;20622:3;20643:67;20707:2;20702:3;20643:67;:::i;:::-;20636:74;;20719:93;20808:3;20719:93;:::i;:::-;20837:2;20832:3;20828:12;20821:19;;20480:366;;;:::o;20852:419::-;21018:4;21056:2;21045:9;21041:18;21033:26;;21105:9;21099:4;21095:20;21091:1;21080:9;21076:17;21069:47;21133:131;21259:4;21133:131;:::i;:::-;21125:139;;20852:419;;;:::o;21277:231::-;21417:34;21413:1;21405:6;21401:14;21394:58;21486:14;21481:2;21473:6;21469:15;21462:39;21277:231;:::o;21514:366::-;21656:3;21677:67;21741:2;21736:3;21677:67;:::i;:::-;21670:74;;21753:93;21842:3;21753:93;:::i;:::-;21871:2;21866:3;21862:12;21855:19;;21514:366;;;:::o;21886:419::-;22052:4;22090:2;22079:9;22075:18;22067:26;;22139:9;22133:4;22129:20;22125:1;22114:9;22110:17;22103:47;22167:131;22293:4;22167:131;:::i;:::-;22159:139;;21886:419;;;:::o;22311:222::-;22451:34;22447:1;22439:6;22435:14;22428:58;22520:5;22515:2;22507:6;22503:15;22496:30;22311:222;:::o;22539:366::-;22681:3;22702:67;22766:2;22761:3;22702:67;:::i;:::-;22695:74;;22778:93;22867:3;22778:93;:::i;:::-;22896:2;22891:3;22887:12;22880:19;;22539:366;;;:::o;22911:419::-;23077:4;23115:2;23104:9;23100:18;23092:26;;23164:9;23158:4;23154:20;23150:1;23139:9;23135:17;23128:47;23192:131;23318:4;23192:131;:::i;:::-;23184:139;;22911:419;;;:::o;23336:194::-;23376:4;23396:20;23414:1;23396:20;:::i;:::-;23391:25;;23430:20;23448:1;23430:20;:::i;:::-;23425:25;;23474:1;23471;23467:9;23459:17;;23498:1;23492:4;23489:11;23486:37;;;23503:18;;:::i;:::-;23486:37;23336:194;;;;:::o;23536:221::-;23676:34;23672:1;23664:6;23660:14;23653:58;23745:4;23740:2;23732:6;23728:15;23721:29;23536:221;:::o;23763:366::-;23905:3;23926:67;23990:2;23985:3;23926:67;:::i;:::-;23919:74;;24002:93;24091:3;24002:93;:::i;:::-;24120:2;24115:3;24111:12;24104:19;;23763:366;;;:::o;24135:419::-;24301:4;24339:2;24328:9;24324:18;24316:26;;24388:9;24382:4;24378:20;24374:1;24363:9;24359:17;24352:47;24416:131;24542:4;24416:131;:::i;:::-;24408:139;;24135:419;;;:::o;24560:410::-;24600:7;24623:20;24641:1;24623:20;:::i;:::-;24618:25;;24657:20;24675:1;24657:20;:::i;:::-;24652:25;;24712:1;24709;24705:9;24734:30;24752:11;24734:30;:::i;:::-;24723:41;;24913:1;24904:7;24900:15;24897:1;24894:22;24874:1;24867:9;24847:83;24824:139;;24943:18;;:::i;:::-;24824:139;24608:362;24560:410;;;;:::o;24976:220::-;25116:34;25112:1;25104:6;25100:14;25093:58;25185:3;25180:2;25172:6;25168:15;25161:28;24976:220;:::o;25202:366::-;25344:3;25365:67;25429:2;25424:3;25365:67;:::i;:::-;25358:74;;25441:93;25530:3;25441:93;:::i;:::-;25559:2;25554:3;25550:12;25543:19;;25202:366;;;:::o;25574:419::-;25740:4;25778:2;25767:9;25763:18;25755:26;;25827:9;25821:4;25817:20;25813:1;25802:9;25798:17;25791:47;25855:131;25981:4;25855:131;:::i;:::-;25847:139;;25574:419;;;:::o;25999:148::-;26101:11;26138:3;26123:18;;25999:148;;;;:::o;26153:173::-;26293:25;26289:1;26281:6;26277:14;26270:49;26153:173;:::o;26332:402::-;26492:3;26513:85;26595:2;26590:3;26513:85;:::i;:::-;26506:92;;26607:93;26696:3;26607:93;:::i;:::-;26725:2;26720:3;26716:12;26709:19;;26332:402;;;:::o;26740:390::-;26846:3;26874:39;26907:5;26874:39;:::i;:::-;26929:89;27011:6;27006:3;26929:89;:::i;:::-;26922:96;;27027:65;27085:6;27080:3;27073:4;27066:5;27062:16;27027:65;:::i;:::-;27117:6;27112:3;27108:16;27101:23;;26850:280;26740:390;;;;:::o;27136:167::-;27276:19;27272:1;27264:6;27260:14;27253:43;27136:167;:::o;27309:402::-;27469:3;27490:85;27572:2;27567:3;27490:85;:::i;:::-;27483:92;;27584:93;27673:3;27584:93;:::i;:::-;27702:2;27697:3;27693:12;27686:19;;27309:402;;;:::o;27717:967::-;28099:3;28121:148;28265:3;28121:148;:::i;:::-;28114:155;;28286:95;28377:3;28368:6;28286:95;:::i;:::-;28279:102;;28398:148;28542:3;28398:148;:::i;:::-;28391:155;;28563:95;28654:3;28645:6;28563:95;:::i;:::-;28556:102;;28675:3;28668:10;;27717:967;;;;;:::o;28690:180::-;28738:77;28735:1;28728:88;28835:4;28832:1;28825:15;28859:4;28856:1;28849:15;28876:185;28916:1;28933:20;28951:1;28933:20;:::i;:::-;28928:25;;28967:20;28985:1;28967:20;:::i;:::-;28962:25;;29006:1;28996:35;;29011:18;;:::i;:::-;28996:35;29053:1;29050;29046:9;29041:14;;28876:185;;;;:::o;29067:224::-;29207:34;29203:1;29195:6;29191:14;29184:58;29276:7;29271:2;29263:6;29259:15;29252:32;29067:224;:::o;29297:366::-;29439:3;29460:67;29524:2;29519:3;29460:67;:::i;:::-;29453:74;;29536:93;29625:3;29536:93;:::i;:::-;29654:2;29649:3;29645:12;29638:19;;29297:366;;;:::o;29669:419::-;29835:4;29873:2;29862:9;29858:18;29850:26;;29922:9;29916:4;29912:20;29908:1;29897:9;29893:17;29886:47;29950:131;30076:4;29950:131;:::i;:::-;29942:139;;29669:419;;;:::o;30094:222::-;30234:34;30230:1;30222:6;30218:14;30211:58;30303:5;30298:2;30290:6;30286:15;30279:30;30094:222;:::o;30322:366::-;30464:3;30485:67;30549:2;30544:3;30485:67;:::i;:::-;30478:74;;30561:93;30650:3;30561:93;:::i;:::-;30679:2;30674:3;30670:12;30663:19;;30322:366;;;:::o;30694:419::-;30860:4;30898:2;30887:9;30883:18;30875:26;;30947:9;30941:4;30937:20;30933:1;30922:9;30918:17;30911:47;30975:131;31101:4;30975:131;:::i;:::-;30967:139;;30694:419;;;:::o;31119:225::-;31259:34;31255:1;31247:6;31243:14;31236:58;31328:8;31323:2;31315:6;31311:15;31304:33;31119:225;:::o;31350:366::-;31492:3;31513:67;31577:2;31572:3;31513:67;:::i;:::-;31506:74;;31589:93;31678:3;31589:93;:::i;:::-;31707:2;31702:3;31698:12;31691:19;;31350:366;;;:::o;31722:419::-;31888:4;31926:2;31915:9;31911:18;31903:26;;31975:9;31969:4;31965:20;31961:1;31950:9;31946:17;31939:47;32003:131;32129:4;32003:131;:::i;:::-;31995:139;;31722:419;;;:::o;32147:180::-;32195:77;32192:1;32185:88;32292:4;32289:1;32282:15;32316:4;32313:1;32306:15;32333:180;32381:77;32378:1;32371:88;32478:4;32475:1;32468:15;32502:4;32499:1;32492:15;32519:143;32576:5;32607:6;32601:13;32592:22;;32623:33;32650:5;32623:33;:::i;:::-;32519:143;;;;:::o;32668:351::-;32738:6;32787:2;32775:9;32766:7;32762:23;32758:32;32755:119;;;32793:79;;:::i;:::-;32755:119;32913:1;32938:64;32994:7;32985:6;32974:9;32970:22;32938:64;:::i;:::-;32928:74;;32884:128;32668:351;;;;:::o;33025:85::-;33070:7;33099:5;33088:16;;33025:85;;;:::o;33116:60::-;33144:3;33165:5;33158:12;;33116:60;;;:::o;33182:158::-;33240:9;33273:61;33291:42;33300:32;33326:5;33300:32;:::i;:::-;33291:42;:::i;:::-;33273:61;:::i;:::-;33260:74;;33182:158;;;:::o;33346:147::-;33441:45;33480:5;33441:45;:::i;:::-;33436:3;33429:58;33346:147;;:::o;33499:114::-;33566:6;33600:5;33594:12;33584:22;;33499:114;;;:::o;33619:184::-;33718:11;33752:6;33747:3;33740:19;33792:4;33787:3;33783:14;33768:29;;33619:184;;;;:::o;33809:132::-;33876:4;33899:3;33891:11;;33929:4;33924:3;33920:14;33912:22;;33809:132;;;:::o;33947:108::-;34024:24;34042:5;34024:24;:::i;:::-;34019:3;34012:37;33947:108;;:::o;34061:179::-;34130:10;34151:46;34193:3;34185:6;34151:46;:::i;:::-;34229:4;34224:3;34220:14;34206:28;;34061:179;;;;:::o;34246:113::-;34316:4;34348;34343:3;34339:14;34331:22;;34246:113;;;:::o;34395:732::-;34514:3;34543:54;34591:5;34543:54;:::i;:::-;34613:86;34692:6;34687:3;34613:86;:::i;:::-;34606:93;;34723:56;34773:5;34723:56;:::i;:::-;34802:7;34833:1;34818:284;34843:6;34840:1;34837:13;34818:284;;;34919:6;34913:13;34946:63;35005:3;34990:13;34946:63;:::i;:::-;34939:70;;35032:60;35085:6;35032:60;:::i;:::-;35022:70;;34878:224;34865:1;34862;34858:9;34853:14;;34818:284;;;34822:14;35118:3;35111:10;;34519:608;;;34395:732;;;;:::o;35133:831::-;35396:4;35434:3;35423:9;35419:19;35411:27;;35448:71;35516:1;35505:9;35501:17;35492:6;35448:71;:::i;:::-;35529:80;35605:2;35594:9;35590:18;35581:6;35529:80;:::i;:::-;35656:9;35650:4;35646:20;35641:2;35630:9;35626:18;35619:48;35684:108;35787:4;35778:6;35684:108;:::i;:::-;35676:116;;35802:72;35870:2;35859:9;35855:18;35846:6;35802:72;:::i;:::-;35884:73;35952:3;35941:9;35937:19;35928:6;35884:73;:::i;:::-;35133:831;;;;;;;;:::o;35970:117::-;36079:1;36076;36069:12;36093:281;36176:27;36198:4;36176:27;:::i;:::-;36168:6;36164:40;36306:6;36294:10;36291:22;36270:18;36258:10;36255:34;36252:62;36249:88;;;36317:18;;:::i;:::-;36249:88;36357:10;36353:2;36346:22;36136:238;36093:281;;:::o;36380:129::-;36414:6;36441:20;;:::i;:::-;36431:30;;36470:33;36498:4;36490:6;36470:33;:::i;:::-;36380:129;;;:::o;36515:311::-;36592:4;36682:18;36674:6;36671:30;36668:56;;;36704:18;;:::i;:::-;36668:56;36754:4;36746:6;36742:17;36734:25;;36814:4;36808;36804:15;36796:23;;36515:311;;;:::o;36832:117::-;36941:1;36938;36931:12;36955:143;37012:5;37043:6;37037:13;37028:22;;37059:33;37086:5;37059:33;:::i;:::-;36955:143;;;;:::o;37121:732::-;37228:5;37253:81;37269:64;37326:6;37269:64;:::i;:::-;37253:81;:::i;:::-;37244:90;;37354:5;37383:6;37376:5;37369:21;37417:4;37410:5;37406:16;37399:23;;37470:4;37462:6;37458:17;37450:6;37446:30;37499:3;37491:6;37488:15;37485:122;;;37518:79;;:::i;:::-;37485:122;37633:6;37616:231;37650:6;37645:3;37642:15;37616:231;;;37725:3;37754:48;37798:3;37786:10;37754:48;:::i;:::-;37749:3;37742:61;37832:4;37827:3;37823:14;37816:21;;37692:155;37676:4;37671:3;37667:14;37660:21;;37616:231;;;37620:21;37234:619;;37121:732;;;;;:::o;37876:385::-;37958:5;38007:3;38000:4;37992:6;37988:17;37984:27;37974:122;;38015:79;;:::i;:::-;37974:122;38125:6;38119:13;38150:105;38251:3;38243:6;38236:4;38228:6;38224:17;38150:105;:::i;:::-;38141:114;;37964:297;37876:385;;;;:::o;38267:554::-;38362:6;38411:2;38399:9;38390:7;38386:23;38382:32;38379:119;;;38417:79;;:::i;:::-;38379:119;38558:1;38547:9;38543:17;38537:24;38588:18;38580:6;38577:30;38574:117;;;38610:79;;:::i;:::-;38574:117;38715:89;38796:7;38787:6;38776:9;38772:22;38715:89;:::i;:::-;38705:99;;38508:306;38267:554;;;;:::o;38827:147::-;38928:11;38965:3;38950:18;;38827:147;;;;:::o;38980:114::-;;:::o;39100:398::-;39259:3;39280:83;39361:1;39356:3;39280:83;:::i;:::-;39273:90;;39372:93;39461:3;39372:93;:::i;:::-;39490:1;39485:3;39481:11;39474:18;;39100:398;;;:::o;39504:379::-;39688:3;39710:147;39853:3;39710:147;:::i;:::-;39703:154;;39874:3;39867:10;;39504:379;;;:::o;39889:171::-;39928:3;39951:24;39969:5;39951:24;:::i;:::-;39942:33;;39997:4;39990:5;39987:15;39984:41;;40005:18;;:::i;:::-;39984:41;40052:1;40045:5;40041:13;40034:20;;39889:171;;;:::o;40066:182::-;40206:34;40202:1;40194:6;40190:14;40183:58;40066:182;:::o;40254:366::-;40396:3;40417:67;40481:2;40476:3;40417:67;:::i;:::-;40410:74;;40493:93;40582:3;40493:93;:::i;:::-;40611:2;40606:3;40602:12;40595:19;;40254:366;;;:::o;40626:419::-;40792:4;40830:2;40819:9;40815:18;40807:26;;40879:9;40873:4;40869:20;40865:1;40854:9;40850:17;40843:47;40907:131;41033:4;40907:131;:::i;:::-;40899:139;;40626:419;;;:::o
Swarm Source
ipfs://0d1d4a29819195b973e9bdb7597c875100f573b68597197d2b7269a25ad04a21
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.