Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 154 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 18933098 | 372 days ago | IN | 0 ETH | 0.00138134 | ||||
Approve | 18847775 | 384 days ago | IN | 0 ETH | 0.00084833 | ||||
Transfer | 18480473 | 435 days ago | IN | 0 ETH | 0.00122317 | ||||
Transfer | 18437573 | 441 days ago | IN | 0 ETH | 0.00083007 | ||||
Approve | 18418716 | 444 days ago | IN | 0 ETH | 0.00038034 | ||||
Increase Allowan... | 18418710 | 444 days ago | IN | 0 ETH | 0.00066477 | ||||
Transfer | 18398893 | 446 days ago | IN | 0 ETH | 0.00027324 | ||||
Transfer | 18398552 | 446 days ago | IN | 0 ETH | 0.00026308 | ||||
Transfer | 18396946 | 447 days ago | IN | 0 ETH | 0.00023763 | ||||
Transfer | 18396799 | 447 days ago | IN | 0 ETH | 0.0002108 | ||||
Transfer | 18396707 | 447 days ago | IN | 0 ETH | 0.0002228 | ||||
Transfer | 18396664 | 447 days ago | IN | 0 ETH | 0.00021794 | ||||
Transfer | 18396545 | 447 days ago | IN | 0 ETH | 0.00035605 | ||||
Transfer | 18396475 | 447 days ago | IN | 0 ETH | 0.00037282 | ||||
Transfer | 18178167 | 477 days ago | IN | 0 ETH | 0.00056148 | ||||
Transfer | 18128215 | 484 days ago | IN | 0 ETH | 0.00098934 | ||||
Transfer | 18042869 | 496 days ago | IN | 0 ETH | 0.00190562 | ||||
Transfer | 18026814 | 498 days ago | IN | 0 ETH | 0.00065111 | ||||
Transfer | 18026796 | 498 days ago | IN | 0 ETH | 0.00045254 | ||||
Transfer | 18026796 | 498 days ago | IN | 0 ETH | 0.0005517 | ||||
Transfer | 18026790 | 498 days ago | IN | 0 ETH | 0.00060955 | ||||
Transfer | 18026785 | 498 days ago | IN | 0 ETH | 0.00059902 | ||||
Transfer | 18026780 | 498 days ago | IN | 0 ETH | 0.00064112 | ||||
Transfer | 18026775 | 498 days ago | IN | 0 ETH | 0.00054564 | ||||
Transfer | 18026771 | 498 days ago | IN | 0 ETH | 0.0005433 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
CashFlash
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-04 */ // SPDX-License-Identifier: MIT // ___ _ ___ _ _ // / __|__ _ __| |_ | __| |__ _ __| |_ // | (__/ _` (_-< ' \| _|| / _` (_-< ' \ // \___\__,_/__/_||_|_| |_\__,_/__/_||_| pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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); } 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; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } 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; } 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; } } 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, _msgSender()); _; } /** * @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 override returns (bool) { return _roles[role].members[account]; } /** * @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 { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " 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 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. */ 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. */ 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`. */ 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. * * [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. */ 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. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } 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); } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} } pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } pragma solidity >=0.8.0 <0.9.0; contract CashFlash is ERC20, AccessControl, ERC20Burnable, Pausable { using SafeMath for uint256; uint256 internal _maxAmountMintable = 10000000000e18; constructor() ERC20("CashFlash", "CFT") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } modifier onlyAdminRole() { require( hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "!admin" ); _; } function transferOwnership(address newOwner) public onlyAdminRole { require(msg.sender != newOwner, "!same address"); grantRole(DEFAULT_ADMIN_ROLE, newOwner); revokeRole(DEFAULT_ADMIN_ROLE, msg.sender); } function mint(address _to, uint256 _amount) public onlyAdminRole whenNotPaused { require(ERC20.totalSupply().add(_amount) <= _maxAmountMintable, "Max mintable exceeded"); super._mint(_to, _amount); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { super.transfer(recipient, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { super.transferFrom(sender, recipient, amount); return true; } function pause() external onlyAdminRole { super._pause(); } function unpause() external onlyAdminRole { super._unpause(); } }
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":"account","type":"address"}],"name":"Paused","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":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526b204fce5e3e250261100000006007553480156200002157600080fd5b506040518060400160405280600981526020017f43617368466c61736800000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43465400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a692919062000273565b508060049080519060200190620000bf92919062000273565b5050506000600660006101000a81548160ff021916908315150217905550620000f26000801b33620000f860201b60201c565b62000388565b6200010a82826200010e60201b60201c565b5050565b6200012082826200020060201b60201c565b620001fc5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001a16200026b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002819062000323565b90600052602060002090601f016020900481019282620002a55760008555620002f1565b82601f10620002c057805160ff1916838001178555620002f1565b82800160010185558215620002f1579182015b82811115620002f0578251825591602001919060010190620002d3565b5b50905062000300919062000304565b5090565b5b808211156200031f57600081600090555060010162000305565b5090565b600060028204905060018216806200033c57607f821691505b6020821081141562000353576200035262000359565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612d3f80620003986000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461044c578063d547741f1461047c578063dd62ed3e14610498578063f2fde38b146104c857610173565b806395d89b41146103e0578063a217fddf146103fe578063a457c2d71461041c57610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a57806379cc67901461038a5780638456cb59146103a657806391d14854146103b057610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611f4d565b6104e4565b60405161019f919061274b565b60405180910390f35b6101b061055e565b6040516101bd9190612781565b60405180910390f35b6101e060048036038101906101db9190611eac565b6105f0565b6040516101ed919061274b565b60405180910390f35b6101fe61060e565b60405161020b91906129e3565b60405180910390f35b61022e60048036038101906102299190611e5d565b610618565b60405161023b919061274b565b60405180910390f35b61025e60048036038101906102599190611ee8565b610631565b60405161026b9190612766565b60405180910390f35b61028e60048036038101906102899190611f11565b610651565b005b61029861067a565b6040516102a591906129fe565b60405180910390f35b6102c860048036038101906102c39190611f11565b610683565b005b6102e460048036038101906102df9190611eac565b610706565b6040516102f1919061274b565b60405180910390f35b6103026107b2565b005b61031e60048036038101906103199190611eac565b610808565b005b61033a60048036038101906103359190611f76565b610908565b005b61034461091c565b604051610351919061274b565b60405180910390f35b610374600480360381019061036f9190611df8565b610933565b60405161038191906129e3565b60405180910390f35b6103a4600480360381019061039f9190611eac565b61097b565b005b6103ae6109f6565b005b6103ca60048036038101906103c59190611f11565b610a4c565b6040516103d7919061274b565b60405180910390f35b6103e8610ab7565b6040516103f59190612781565b60405180910390f35b610406610b49565b6040516104139190612766565b60405180910390f35b61043660048036038101906104319190611eac565b610b50565b604051610443919061274b565b60405180910390f35b61046660048036038101906104619190611eac565b610c3b565b604051610473919061274b565b60405180910390f35b61049660048036038101906104919190611f11565b610c52565b005b6104b260048036038101906104ad9190611e21565b610c7b565b6040516104bf91906129e3565b60405180910390f35b6104e260048036038101906104dd9190611df8565b610d02565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610557575061055682610dda565b5b9050919050565b60606003805461056d90612c0c565b80601f016020809104026020016040519081016040528092919081815260200182805461059990612c0c565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b60006106046105fd610e44565b8484610e4c565b6001905092915050565b6000600254905090565b6000610625848484611017565b50600190509392505050565b600060056000838152602001908152602001600020600101549050919050565b61065a82610631565b61066b81610666610e44565b61110f565b61067583836111ac565b505050565b60006012905090565b61068b610e44565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef906129a3565b60405180910390fd5b610702828261128d565b5050565b60006107a8610713610e44565b848460016000610721610e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107a39190612a40565b610e4c565b6001905092915050565b6107bf6000801b33610a4c565b6107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590612883565b60405180910390fd5b61080661136f565b565b6108156000801b33610a4c565b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90612883565b60405180910390fd5b61085c61091c565b1561089c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610893906128a3565b60405180910390fd5b6007546108b9826108ab61060e565b61141190919063ffffffff16565b11156108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612863565b60405180910390fd5b6109048282611427565b5050565b610919610913610e44565b82611587565b50565b6000600660009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061098e83610989610e44565b610c7b565b9050818110156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca906128e3565b60405180910390fd5b6109e7836109df610e44565b848403610e4c565b6109f18383611587565b505050565b610a036000801b33610a4c565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612883565b60405180910390fd5b610a4a61175e565b565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ac690612c0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290612c0c565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000801b81565b60008060016000610b5f610e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390612983565b60405180910390fd5b610c30610c27610e44565b85858403610e4c565b600191505092915050565b6000610c478383611801565b506001905092915050565b610c5b82610631565b610c6c81610c67610e44565b61110f565b610c76838361128d565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d0f6000801b33610a4c565b610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590612883565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490612903565b60405180910390fd5b610dca6000801b82610651565b610dd76000801b33610c52565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390612823565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161100a91906129e3565b60405180910390a3505050565b600061102484848461181f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106f610e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e6906128c3565b60405180910390fd5b611103856110fb610e44565b858403610e4c565b60019150509392505050565b6111198282610a4c565b6111a85761113e8173ffffffffffffffffffffffffffffffffffffffff166014611aa0565b61114c8360001c6020611aa0565b60405160200161115d9291906126f6565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f9190612781565b60405180910390fd5b5050565b6111b68282610a4c565b6112895760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061122e610e44565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112978282610a4c565b1561136b5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611310610e44565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61137761091c565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906127e3565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113fa610e44565b6040516114079190612730565b60405180910390a1565b6000818361141f9190612a40565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906129c3565b60405180910390fd5b6114a360008383611d9a565b80600260008282546114b59190612a40565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150a9190612a40565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161156f91906129e3565b60405180910390a361158360008383611d9f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612923565b60405180910390fd5b61160382600083611d9a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090612803565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116e09190612af0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161174591906129e3565b60405180910390a361175983600084611d9f565b505050565b61176661091c565b156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906128a3565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117ea610e44565b6040516117f79190612730565b60405180910390a1565b600061181561180e610e44565b848461181f565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690612943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906127c3565b60405180910390fd5b61190a838383611d9a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790612843565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a239190612a40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8791906129e3565b60405180910390a3611a9a848484611d9f565b50505050565b606060006002836002611ab39190612a96565b611abd9190612a40565b67ffffffffffffffff811115611afc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b2e5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c569190612a96565b611c609190612a40565b90505b6001811115611d4c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611d05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d4590612be2565b9050611c63565b5060008414611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906127a3565b60405180910390fd5b8091505092915050565b505050565b505050565b600081359050611db381612cad565b92915050565b600081359050611dc881612cc4565b92915050565b600081359050611ddd81612cdb565b92915050565b600081359050611df281612cf2565b92915050565b600060208284031215611e0a57600080fd5b6000611e1884828501611da4565b91505092915050565b60008060408385031215611e3457600080fd5b6000611e4285828601611da4565b9250506020611e5385828601611da4565b9150509250929050565b600080600060608486031215611e7257600080fd5b6000611e8086828701611da4565b9350506020611e9186828701611da4565b9250506040611ea286828701611de3565b9150509250925092565b60008060408385031215611ebf57600080fd5b6000611ecd85828601611da4565b9250506020611ede85828601611de3565b9150509250929050565b600060208284031215611efa57600080fd5b6000611f0884828501611db9565b91505092915050565b60008060408385031215611f2457600080fd5b6000611f3285828601611db9565b9250506020611f4385828601611da4565b9150509250929050565b600060208284031215611f5f57600080fd5b6000611f6d84828501611dce565b91505092915050565b600060208284031215611f8857600080fd5b6000611f9684828501611de3565b91505092915050565b611fa881612b24565b82525050565b611fb781612b36565b82525050565b611fc681612b42565b82525050565b6000611fd782612a19565b611fe18185612a24565b9350611ff1818560208601612baf565b611ffa81612c9c565b840191505092915050565b600061201082612a19565b61201a8185612a35565b935061202a818560208601612baf565b80840191505092915050565b6000612043602083612a24565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000612083602383612a24565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120e9601483612a24565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612129602283612a24565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061218f602283612a24565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121f5602683612a24565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061225b601583612a24565b91507f4d6178206d696e7461626c6520657863656564656400000000000000000000006000830152602082019050919050565b600061229b600683612a24565b91507f2161646d696e00000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006122db601083612a24565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061231b602883612a24565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612381602483612a24565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123e7600d83612a24565b91507f2173616d652061646472657373000000000000000000000000000000000000006000830152602082019050919050565b6000612427602183612a24565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061248d602583612a24565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124f3602483612a24565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612559601783612a35565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000612599602583612a24565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125ff601183612a35565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b600061263f602f83612a24565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b60006126a5601f83612a24565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6126e181612b98565b82525050565b6126f081612ba2565b82525050565b60006127018261254c565b915061270d8285612005565b9150612718826125f2565b91506127248284612005565b91508190509392505050565b60006020820190506127456000830184611f9f565b92915050565b60006020820190506127606000830184611fae565b92915050565b600060208201905061277b6000830184611fbd565b92915050565b6000602082019050818103600083015261279b8184611fcc565b905092915050565b600060208201905081810360008301526127bc81612036565b9050919050565b600060208201905081810360008301526127dc81612076565b9050919050565b600060208201905081810360008301526127fc816120dc565b9050919050565b6000602082019050818103600083015261281c8161211c565b9050919050565b6000602082019050818103600083015261283c81612182565b9050919050565b6000602082019050818103600083015261285c816121e8565b9050919050565b6000602082019050818103600083015261287c8161224e565b9050919050565b6000602082019050818103600083015261289c8161228e565b9050919050565b600060208201905081810360008301526128bc816122ce565b9050919050565b600060208201905081810360008301526128dc8161230e565b9050919050565b600060208201905081810360008301526128fc81612374565b9050919050565b6000602082019050818103600083015261291c816123da565b9050919050565b6000602082019050818103600083015261293c8161241a565b9050919050565b6000602082019050818103600083015261295c81612480565b9050919050565b6000602082019050818103600083015261297c816124e6565b9050919050565b6000602082019050818103600083015261299c8161258c565b9050919050565b600060208201905081810360008301526129bc81612632565b9050919050565b600060208201905081810360008301526129dc81612698565b9050919050565b60006020820190506129f860008301846126d8565b92915050565b6000602082019050612a1360008301846126e7565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612a4b82612b98565b9150612a5683612b98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a8b57612a8a612c3e565b5b828201905092915050565b6000612aa182612b98565b9150612aac83612b98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ae557612ae4612c3e565b5b828202905092915050565b6000612afb82612b98565b9150612b0683612b98565b925082821015612b1957612b18612c3e565b5b828203905092915050565b6000612b2f82612b78565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612bcd578082015181840152602081019050612bb2565b83811115612bdc576000848401525b50505050565b6000612bed82612b98565b91506000821415612c0157612c00612c3e565b5b600182039050919050565b60006002820490506001821680612c2457607f821691505b60208210811415612c3857612c37612c6d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612cb681612b24565b8114612cc157600080fd5b50565b612ccd81612b42565b8114612cd857600080fd5b50565b612ce481612b4c565b8114612cef57600080fd5b50565b612cfb81612b98565b8114612d0657600080fd5b5056fea264697066735822122038ad23b06455dbce0d8f699f4ac8a3c70ef9c382c1994203083593113f13c06664736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461044c578063d547741f1461047c578063dd62ed3e14610498578063f2fde38b146104c857610173565b806395d89b41146103e0578063a217fddf146103fe578063a457c2d71461041c57610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a57806379cc67901461038a5780638456cb59146103a657806391d14854146103b057610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611f4d565b6104e4565b60405161019f919061274b565b60405180910390f35b6101b061055e565b6040516101bd9190612781565b60405180910390f35b6101e060048036038101906101db9190611eac565b6105f0565b6040516101ed919061274b565b60405180910390f35b6101fe61060e565b60405161020b91906129e3565b60405180910390f35b61022e60048036038101906102299190611e5d565b610618565b60405161023b919061274b565b60405180910390f35b61025e60048036038101906102599190611ee8565b610631565b60405161026b9190612766565b60405180910390f35b61028e60048036038101906102899190611f11565b610651565b005b61029861067a565b6040516102a591906129fe565b60405180910390f35b6102c860048036038101906102c39190611f11565b610683565b005b6102e460048036038101906102df9190611eac565b610706565b6040516102f1919061274b565b60405180910390f35b6103026107b2565b005b61031e60048036038101906103199190611eac565b610808565b005b61033a60048036038101906103359190611f76565b610908565b005b61034461091c565b604051610351919061274b565b60405180910390f35b610374600480360381019061036f9190611df8565b610933565b60405161038191906129e3565b60405180910390f35b6103a4600480360381019061039f9190611eac565b61097b565b005b6103ae6109f6565b005b6103ca60048036038101906103c59190611f11565b610a4c565b6040516103d7919061274b565b60405180910390f35b6103e8610ab7565b6040516103f59190612781565b60405180910390f35b610406610b49565b6040516104139190612766565b60405180910390f35b61043660048036038101906104319190611eac565b610b50565b604051610443919061274b565b60405180910390f35b61046660048036038101906104619190611eac565b610c3b565b604051610473919061274b565b60405180910390f35b61049660048036038101906104919190611f11565b610c52565b005b6104b260048036038101906104ad9190611e21565b610c7b565b6040516104bf91906129e3565b60405180910390f35b6104e260048036038101906104dd9190611df8565b610d02565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610557575061055682610dda565b5b9050919050565b60606003805461056d90612c0c565b80601f016020809104026020016040519081016040528092919081815260200182805461059990612c0c565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b60006106046105fd610e44565b8484610e4c565b6001905092915050565b6000600254905090565b6000610625848484611017565b50600190509392505050565b600060056000838152602001908152602001600020600101549050919050565b61065a82610631565b61066b81610666610e44565b61110f565b61067583836111ac565b505050565b60006012905090565b61068b610e44565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef906129a3565b60405180910390fd5b610702828261128d565b5050565b60006107a8610713610e44565b848460016000610721610e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107a39190612a40565b610e4c565b6001905092915050565b6107bf6000801b33610a4c565b6107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590612883565b60405180910390fd5b61080661136f565b565b6108156000801b33610a4c565b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90612883565b60405180910390fd5b61085c61091c565b1561089c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610893906128a3565b60405180910390fd5b6007546108b9826108ab61060e565b61141190919063ffffffff16565b11156108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612863565b60405180910390fd5b6109048282611427565b5050565b610919610913610e44565b82611587565b50565b6000600660009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061098e83610989610e44565b610c7b565b9050818110156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca906128e3565b60405180910390fd5b6109e7836109df610e44565b848403610e4c565b6109f18383611587565b505050565b610a036000801b33610a4c565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612883565b60405180910390fd5b610a4a61175e565b565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ac690612c0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290612c0c565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000801b81565b60008060016000610b5f610e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390612983565b60405180910390fd5b610c30610c27610e44565b85858403610e4c565b600191505092915050565b6000610c478383611801565b506001905092915050565b610c5b82610631565b610c6c81610c67610e44565b61110f565b610c76838361128d565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d0f6000801b33610a4c565b610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590612883565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490612903565b60405180910390fd5b610dca6000801b82610651565b610dd76000801b33610c52565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390612823565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161100a91906129e3565b60405180910390a3505050565b600061102484848461181f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106f610e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e6906128c3565b60405180910390fd5b611103856110fb610e44565b858403610e4c565b60019150509392505050565b6111198282610a4c565b6111a85761113e8173ffffffffffffffffffffffffffffffffffffffff166014611aa0565b61114c8360001c6020611aa0565b60405160200161115d9291906126f6565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f9190612781565b60405180910390fd5b5050565b6111b68282610a4c565b6112895760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061122e610e44565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112978282610a4c565b1561136b5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611310610e44565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61137761091c565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906127e3565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113fa610e44565b6040516114079190612730565b60405180910390a1565b6000818361141f9190612a40565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906129c3565b60405180910390fd5b6114a360008383611d9a565b80600260008282546114b59190612a40565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150a9190612a40565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161156f91906129e3565b60405180910390a361158360008383611d9f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612923565b60405180910390fd5b61160382600083611d9a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090612803565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116e09190612af0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161174591906129e3565b60405180910390a361175983600084611d9f565b505050565b61176661091c565b156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906128a3565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117ea610e44565b6040516117f79190612730565b60405180910390a1565b600061181561180e610e44565b848461181f565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690612943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906127c3565b60405180910390fd5b61190a838383611d9a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790612843565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a239190612a40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8791906129e3565b60405180910390a3611a9a848484611d9f565b50505050565b606060006002836002611ab39190612a96565b611abd9190612a40565b67ffffffffffffffff811115611afc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b2e5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c569190612a96565b611c609190612a40565b90505b6001811115611d4c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611d05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d4590612be2565b9050611c63565b5060008414611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906127a3565b60405180910390fd5b8091505092915050565b505050565b505050565b600081359050611db381612cad565b92915050565b600081359050611dc881612cc4565b92915050565b600081359050611ddd81612cdb565b92915050565b600081359050611df281612cf2565b92915050565b600060208284031215611e0a57600080fd5b6000611e1884828501611da4565b91505092915050565b60008060408385031215611e3457600080fd5b6000611e4285828601611da4565b9250506020611e5385828601611da4565b9150509250929050565b600080600060608486031215611e7257600080fd5b6000611e8086828701611da4565b9350506020611e9186828701611da4565b9250506040611ea286828701611de3565b9150509250925092565b60008060408385031215611ebf57600080fd5b6000611ecd85828601611da4565b9250506020611ede85828601611de3565b9150509250929050565b600060208284031215611efa57600080fd5b6000611f0884828501611db9565b91505092915050565b60008060408385031215611f2457600080fd5b6000611f3285828601611db9565b9250506020611f4385828601611da4565b9150509250929050565b600060208284031215611f5f57600080fd5b6000611f6d84828501611dce565b91505092915050565b600060208284031215611f8857600080fd5b6000611f9684828501611de3565b91505092915050565b611fa881612b24565b82525050565b611fb781612b36565b82525050565b611fc681612b42565b82525050565b6000611fd782612a19565b611fe18185612a24565b9350611ff1818560208601612baf565b611ffa81612c9c565b840191505092915050565b600061201082612a19565b61201a8185612a35565b935061202a818560208601612baf565b80840191505092915050565b6000612043602083612a24565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000612083602383612a24565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120e9601483612a24565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612129602283612a24565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061218f602283612a24565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121f5602683612a24565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061225b601583612a24565b91507f4d6178206d696e7461626c6520657863656564656400000000000000000000006000830152602082019050919050565b600061229b600683612a24565b91507f2161646d696e00000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006122db601083612a24565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061231b602883612a24565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612381602483612a24565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123e7600d83612a24565b91507f2173616d652061646472657373000000000000000000000000000000000000006000830152602082019050919050565b6000612427602183612a24565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061248d602583612a24565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124f3602483612a24565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612559601783612a35565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000612599602583612a24565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125ff601183612a35565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b600061263f602f83612a24565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b60006126a5601f83612a24565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6126e181612b98565b82525050565b6126f081612ba2565b82525050565b60006127018261254c565b915061270d8285612005565b9150612718826125f2565b91506127248284612005565b91508190509392505050565b60006020820190506127456000830184611f9f565b92915050565b60006020820190506127606000830184611fae565b92915050565b600060208201905061277b6000830184611fbd565b92915050565b6000602082019050818103600083015261279b8184611fcc565b905092915050565b600060208201905081810360008301526127bc81612036565b9050919050565b600060208201905081810360008301526127dc81612076565b9050919050565b600060208201905081810360008301526127fc816120dc565b9050919050565b6000602082019050818103600083015261281c8161211c565b9050919050565b6000602082019050818103600083015261283c81612182565b9050919050565b6000602082019050818103600083015261285c816121e8565b9050919050565b6000602082019050818103600083015261287c8161224e565b9050919050565b6000602082019050818103600083015261289c8161228e565b9050919050565b600060208201905081810360008301526128bc816122ce565b9050919050565b600060208201905081810360008301526128dc8161230e565b9050919050565b600060208201905081810360008301526128fc81612374565b9050919050565b6000602082019050818103600083015261291c816123da565b9050919050565b6000602082019050818103600083015261293c8161241a565b9050919050565b6000602082019050818103600083015261295c81612480565b9050919050565b6000602082019050818103600083015261297c816124e6565b9050919050565b6000602082019050818103600083015261299c8161258c565b9050919050565b600060208201905081810360008301526129bc81612632565b9050919050565b600060208201905081810360008301526129dc81612698565b9050919050565b60006020820190506129f860008301846126d8565b92915050565b6000602082019050612a1360008301846126e7565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612a4b82612b98565b9150612a5683612b98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a8b57612a8a612c3e565b5b828201905092915050565b6000612aa182612b98565b9150612aac83612b98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ae557612ae4612c3e565b5b828202905092915050565b6000612afb82612b98565b9150612b0683612b98565b925082821015612b1957612b18612c3e565b5b828203905092915050565b6000612b2f82612b78565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612bcd578082015181840152602081019050612bb2565b83811115612bdc576000848401525b50505050565b6000612bed82612b98565b91506000821415612c0157612c00612c3e565b5b600182039050919050565b60006002820490506001821680612c2457607f821691505b60208210811415612c3857612c37612c6d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612cb681612b24565b8114612cc157600080fd5b50565b612ccd81612b42565b8114612cd857600080fd5b50565b612ce481612b4c565b8114612cef57600080fd5b50565b612cfb81612b98565b8114612d0657600080fd5b5056fea264697066735822122038ad23b06455dbce0d8f699f4ac8a3c70ef9c382c1994203083593113f13c06664736f6c63430008000033
Deployed Bytecode Sourcemap
40509:1532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16809:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29322:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31489:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30442:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41640:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18220:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18605:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30284:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19653:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33041:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41961:77;;;:::i;:::-;;41195:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39689:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22782:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30613:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40099:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41880:73;;;:::i;:::-;;17105:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29541:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16196:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33759:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41425:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18997:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31191:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40951:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16809:204;16894:4;16933:32;16918:47;;;:11;:47;;;;:87;;;;16969:36;16993:11;16969:23;:36::i;:::-;16918:87;16911:94;;16809:204;;;:::o;29322:100::-;29376:13;29409:5;29402:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29322:100;:::o;31489:169::-;31572:4;31589:39;31598:12;:10;:12::i;:::-;31612:7;31621:6;31589:8;:39::i;:::-;31646:4;31639:11;;31489:169;;;;:::o;30442:108::-;30503:7;30530:12;;30523:19;;30442:108;:::o;41640:232::-;41780:4;41797:45;41816:6;41824:9;41835:6;41797:18;:45::i;:::-;;41860:4;41853:11;;41640:232;;;;;:::o;18220:123::-;18286:7;18313:6;:12;18320:4;18313:12;;;;;;;;;;;:22;;;18306:29;;18220:123;;;:::o;18605:147::-;18688:18;18701:4;18688:12;:18::i;:::-;16687:30;16698:4;16704:12;:10;:12::i;:::-;16687:10;:30::i;:::-;18719:25:::1;18730:4;18736:7;18719:10;:25::i;:::-;18605:147:::0;;;:::o;30284:93::-;30342:5;30367:2;30360:9;;30284:93;:::o;19653:218::-;19760:12;:10;:12::i;:::-;19749:23;;:7;:23;;;19741:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;19837:26;19849:4;19855:7;19837:11;:26::i;:::-;19653:218;;:::o;33041:215::-;33129:4;33146:80;33155:12;:10;:12::i;:::-;33169:7;33215:10;33178:11;:25;33190:12;:10;:12::i;:::-;33178:25;;;;;;;;;;;;;;;:34;33204:7;33178:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;33146:8;:80::i;:::-;33244:4;33237:11;;33041:215;;;;:::o;41961:77::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42014:16:::1;:14;:16::i;:::-;41961:77::o:0;41195:222::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;23108:8:::1;:6;:8::i;:::-;23107:9;23099:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;41329:18:::2;;41293:32;41317:7;41293:19;:17;:19::i;:::-;:23;;:32;;;;:::i;:::-;:54;;41285:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;41384:25;41396:3;41401:7;41384:11;:25::i;:::-;41195:222:::0;;:::o;39689:91::-;39745:27;39751:12;:10;:12::i;:::-;39765:6;39745:5;:27::i;:::-;39689:91;:::o;22782:86::-;22829:4;22853:7;;;;;;;;;;;22846:14;;22782:86;:::o;30613:127::-;30687:7;30714:9;:18;30724:7;30714:18;;;;;;;;;;;;;;;;30707:25;;30613:127;;;:::o;40099:368::-;40176:24;40203:32;40213:7;40222:12;:10;:12::i;:::-;40203:9;:32::i;:::-;40176:59;;40274:6;40254:16;:26;;40246:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40357:58;40366:7;40375:12;:10;:12::i;:::-;40408:6;40389:16;:25;40357:8;:58::i;:::-;40437:22;40443:7;40452:6;40437:5;:22::i;:::-;40099:368;;;:::o;41880:73::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41931:14:::1;:12;:14::i;:::-;41880:73::o:0;17105:139::-;17183:4;17207:6;:12;17214:4;17207:12;;;;;;;;;;;:20;;:29;17228:7;17207:29;;;;;;;;;;;;;;;;;;;;;;;;;17200:36;;17105:139;;;;:::o;29541:104::-;29597:13;29630:7;29623:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29541:104;:::o;16196:49::-;16241:4;16196:49;;;:::o;33759:413::-;33852:4;33869:24;33896:11;:25;33908:12;:10;:12::i;:::-;33896:25;;;;;;;;;;;;;;;:34;33922:7;33896:34;;;;;;;;;;;;;;;;33869:61;;33969:15;33949:16;:35;;33941:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34062:67;34071:12;:10;:12::i;:::-;34085:7;34113:15;34094:16;:34;34062:8;:67::i;:::-;34160:4;34153:11;;;33759:413;;;;:::o;41425:207::-;41547:4;41569:33;41584:9;41595:6;41569:14;:33::i;:::-;;41620:4;41613:11;;41425:207;;;;:::o;18997:149::-;19081:18;19094:4;19081:12;:18::i;:::-;16687:30;16698:4;16704:12;:10;:12::i;:::-;16687:10;:30::i;:::-;19112:26:::1;19124:4;19130:7;19112:11;:26::i;:::-;18997:149:::0;;;:::o;31191:151::-;31280:7;31307:11;:18;31319:5;31307:18;;;;;;;;;;;;;;;:27;31326:7;31307:27;;;;;;;;;;;;;;;;31300:34;;31191:151;;;;:::o;40951:236::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41050:8:::1;41036:22;;:10;:22;;;;41028:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;41087:39;16241:4;41097:18:::0;::::1;41117:8;41087:9;:39::i;:::-;41137:42;16241:4;41148:18:::0;::::1;41168:10;41137;:42::i;:::-;40951:236:::0;:::o;8497:157::-;8582:4;8621:25;8606:40;;;:11;:40;;;;8599:47;;8497:157;;;:::o;14153:98::-;14206:7;14233:10;14226:17;;14153:98;:::o;37443:380::-;37596:1;37579:19;;:5;:19;;;;37571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37677:1;37658:21;;:7;:21;;;;37650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37761:6;37731:11;:18;37743:5;37731:18;;;;;;;;;;;;;;;:27;37750:7;37731:27;;;;;;;;;;;;;;;:36;;;;37799:7;37783:32;;37792:5;37783:32;;;37808:6;37783:32;;;;;;:::i;:::-;;;;;;;;37443:380;;;:::o;32140:492::-;32280:4;32297:36;32307:6;32315:9;32326:6;32297:9;:36::i;:::-;32346:24;32373:11;:19;32385:6;32373:19;;;;;;;;;;;;;;;:33;32393:12;:10;:12::i;:::-;32373:33;;;;;;;;;;;;;;;;32346:60;;32445:6;32425:16;:26;;32417:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;32532:57;32541:6;32549:12;:10;:12::i;:::-;32582:6;32563:16;:25;32532:8;:57::i;:::-;32620:4;32613:11;;;32140:492;;;;;:::o;17534:497::-;17615:22;17623:4;17629:7;17615;:22::i;:::-;17610:414;;17803:41;17831:7;17803:41;;17841:2;17803:19;:41::i;:::-;17917:38;17945:4;17937:13;;17952:2;17917:19;:38::i;:::-;17708:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17654:358;;;;;;;;;;;:::i;:::-;;;;;;;;17610:414;17534:497;;:::o;21154:238::-;21238:22;21246:4;21252:7;21238;:22::i;:::-;21233:152;;21309:4;21277:6;:12;21284:4;21277:12;;;;;;;;;;;:20;;:29;21298:7;21277:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;21360:12;:10;:12::i;:::-;21333:40;;21351:7;21333:40;;21345:4;21333:40;;;;;;;;;;21233:152;21154:238;;:::o;21524:239::-;21608:22;21616:4;21622:7;21608;:22::i;:::-;21604:152;;;21679:5;21647:6;:12;21654:4;21647:12;;;;;;;;;;;:20;;:29;21668:7;21647:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;21731:12;:10;:12::i;:::-;21704:40;;21722:7;21704:40;;21716:4;21704:40;;;;;;;;;;21604:152;21524:239;;:::o;23841:120::-;23385:8;:6;:8::i;:::-;23377:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23910:5:::1;23900:7;;:15;;;;;;;;;;;;;;;;;;23931:22;23940:12;:10;:12::i;:::-;23931:22;;;;;;:::i;:::-;;;;;;;;23841:120::o:0;2828:98::-;2886:7;2917:1;2913;:5;;;;:::i;:::-;2906:12;;2828:98;;;;:::o;35682:399::-;35785:1;35766:21;;:7;:21;;;;35758:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35836:49;35865:1;35869:7;35878:6;35836:20;:49::i;:::-;35914:6;35898:12;;:22;;;;;;;:::i;:::-;;;;;;;;35953:6;35931:9;:18;35941:7;35931:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;35996:7;35975:37;;35992:1;35975:37;;;36005:6;35975:37;;;;;;:::i;:::-;;;;;;;;36025:48;36053:1;36057:7;36066:6;36025:19;:48::i;:::-;35682:399;;:::o;36414:591::-;36517:1;36498:21;;:7;:21;;;;36490:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36570:49;36591:7;36608:1;36612:6;36570:20;:49::i;:::-;36632:22;36657:9;:18;36667:7;36657:18;;;;;;;;;;;;;;;;36632:43;;36712:6;36694:14;:24;;36686:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36831:6;36814:14;:23;36793:9;:18;36803:7;36793:18;;;;;;;;;;;;;;;:44;;;;36875:6;36859:12;;:22;;;;;;;:::i;:::-;;;;;;;;36925:1;36899:37;;36908:7;36899:37;;;36929:6;36899:37;;;;;;:::i;:::-;;;;;;;;36949:48;36969:7;36986:1;36990:6;36949:19;:48::i;:::-;36414:591;;;:::o;23582:118::-;23108:8;:6;:8::i;:::-;23107:9;23099:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23652:4:::1;23642:7;;:14;;;;;;;;;;;;;;;;;;23672:20;23679:12;:10;:12::i;:::-;23672:20;;;;;;:::i;:::-;;;;;;;;23582:118::o:0;30953:175::-;31039:4;31056:42;31066:12;:10;:12::i;:::-;31080:9;31091:6;31056:9;:42::i;:::-;31116:4;31109:11;;30953:175;;;;:::o;34662:733::-;34820:1;34802:20;;:6;:20;;;;34794:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;34904:1;34883:23;;:9;:23;;;;34875:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34959:47;34980:6;34988:9;34999:6;34959:20;:47::i;:::-;35019:21;35043:9;:17;35053:6;35043:17;;;;;;;;;;;;;;;;35019:41;;35096:6;35079:13;:23;;35071:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35217:6;35201:13;:22;35181:9;:17;35191:6;35181:17;;;;;;;;;;;;;;;:42;;;;35269:6;35245:9;:20;35255:9;35245:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;35310:9;35293:35;;35302:6;35293:35;;;35321:6;35293:35;;;;;;:::i;:::-;;;;;;;;35341:46;35361:6;35369:9;35380:6;35341:19;:46::i;:::-;34662:733;;;;:::o;10215:451::-;10290:13;10316:19;10361:1;10352:6;10348:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10338:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10316:47;;10374:15;:6;10381:1;10374:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;10400;:6;10407:1;10400:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;10431:9;10456:1;10447:6;10443:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10431:26;;10426:135;10463:1;10459;:5;10426:135;;;10498:12;10519:3;10511:5;:11;10498:25;;;;;;;;;;;;;;;;;;10486:6;10493:1;10486:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;10548:1;10538:11;;;;;10466:3;;;;:::i;:::-;;;10426:135;;;;10588:1;10579:5;:10;10571:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;10651:6;10637:21;;;10215:451;;;;:::o;38423:125::-;;;;:::o;39152:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;;;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;;;;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;;;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;;;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:260::-;;3025:2;3013:9;3004:7;3000:23;2996:32;2993:2;;;3041:1;3038;3031:12;2993:2;3084:1;3109:52;3153:7;3144:6;3133:9;3129:22;3109:52;:::i;:::-;3099:62;;3055:116;2983:195;;;;:::o;3184:262::-;;3292:2;3280:9;3271:7;3267:23;3263:32;3260:2;;;3308:1;3305;3298:12;3260:2;3351:1;3376:53;3421:7;3412:6;3401:9;3397:22;3376:53;:::i;:::-;3366:63;;3322:117;3250:196;;;;:::o;3452:118::-;3539:24;3557:5;3539:24;:::i;:::-;3534:3;3527:37;3517:53;;:::o;3576:109::-;3657:21;3672:5;3657:21;:::i;:::-;3652:3;3645:34;3635:50;;:::o;3691:118::-;3778:24;3796:5;3778:24;:::i;:::-;3773:3;3766:37;3756:53;;:::o;3815:364::-;;3931:39;3964:5;3931:39;:::i;:::-;3986:71;4050:6;4045:3;3986:71;:::i;:::-;3979:78;;4066:52;4111:6;4106:3;4099:4;4092:5;4088:16;4066:52;:::i;:::-;4143:29;4165:6;4143:29;:::i;:::-;4138:3;4134:39;4127:46;;3907:272;;;;;:::o;4185:377::-;;4319:39;4352:5;4319:39;:::i;:::-;4374:89;4456:6;4451:3;4374:89;:::i;:::-;4367:96;;4472:52;4517:6;4512:3;4505:4;4498:5;4494:16;4472:52;:::i;:::-;4549:6;4544:3;4540:16;4533:23;;4295:267;;;;;:::o;4568:330::-;;4731:67;4795:2;4790:3;4731:67;:::i;:::-;4724:74;;4828:34;4824:1;4819:3;4815:11;4808:55;4889:2;4884:3;4880:12;4873:19;;4714:184;;;:::o;4904:367::-;;5067:67;5131:2;5126:3;5067:67;:::i;:::-;5060:74;;5164:34;5160:1;5155:3;5151:11;5144:55;5230:5;5225:2;5220:3;5216:12;5209:27;5262:2;5257:3;5253:12;5246:19;;5050:221;;;:::o;5277:318::-;;5440:67;5504:2;5499:3;5440:67;:::i;:::-;5433:74;;5537:22;5533:1;5528:3;5524:11;5517:43;5586:2;5581:3;5577:12;5570:19;;5423:172;;;:::o;5601:366::-;;5764:67;5828:2;5823:3;5764:67;:::i;:::-;5757:74;;5861:34;5857:1;5852:3;5848:11;5841:55;5927:4;5922:2;5917:3;5913:12;5906:26;5958:2;5953:3;5949:12;5942:19;;5747:220;;;:::o;5973:366::-;;6136:67;6200:2;6195:3;6136:67;:::i;:::-;6129:74;;6233:34;6229:1;6224:3;6220:11;6213:55;6299:4;6294:2;6289:3;6285:12;6278:26;6330:2;6325:3;6321:12;6314:19;;6119:220;;;:::o;6345:370::-;;6508:67;6572:2;6567:3;6508:67;:::i;:::-;6501:74;;6605:34;6601:1;6596:3;6592:11;6585:55;6671:8;6666:2;6661:3;6657:12;6650:30;6706:2;6701:3;6697:12;6690:19;;6491:224;;;:::o;6721:319::-;;6884:67;6948:2;6943:3;6884:67;:::i;:::-;6877:74;;6981:23;6977:1;6972:3;6968:11;6961:44;7031:2;7026:3;7022:12;7015:19;;6867:173;;;:::o;7046:303::-;;7209:66;7273:1;7268:3;7209:66;:::i;:::-;7202:73;;7305:8;7301:1;7296:3;7292:11;7285:29;7340:2;7335:3;7331:12;7324:19;;7192:157;;;:::o;7355:314::-;;7518:67;7582:2;7577:3;7518:67;:::i;:::-;7511:74;;7615:18;7611:1;7606:3;7602:11;7595:39;7660:2;7655:3;7651:12;7644:19;;7501:168;;;:::o;7675:372::-;;7838:67;7902:2;7897:3;7838:67;:::i;:::-;7831:74;;7935:34;7931:1;7926:3;7922:11;7915:55;8001:10;7996:2;7991:3;7987:12;7980:32;8038:2;8033:3;8029:12;8022:19;;7821:226;;;:::o;8053:368::-;;8216:67;8280:2;8275:3;8216:67;:::i;:::-;8209:74;;8313:34;8309:1;8304:3;8300:11;8293:55;8379:6;8374:2;8369:3;8365:12;8358:28;8412:2;8407:3;8403:12;8396:19;;8199:222;;;:::o;8427:311::-;;8590:67;8654:2;8649:3;8590:67;:::i;:::-;8583:74;;8687:15;8683:1;8678:3;8674:11;8667:36;8729:2;8724:3;8720:12;8713:19;;8573:165;;;:::o;8744:365::-;;8907:67;8971:2;8966:3;8907:67;:::i;:::-;8900:74;;9004:34;9000:1;8995:3;8991:11;8984:55;9070:3;9065:2;9060:3;9056:12;9049:25;9100:2;9095:3;9091:12;9084:19;;8890:219;;;:::o;9115:369::-;;9278:67;9342:2;9337:3;9278:67;:::i;:::-;9271:74;;9375:34;9371:1;9366:3;9362:11;9355:55;9441:7;9436:2;9431:3;9427:12;9420:29;9475:2;9470:3;9466:12;9459:19;;9261:223;;;:::o;9490:368::-;;9653:67;9717:2;9712:3;9653:67;:::i;:::-;9646:74;;9750:34;9746:1;9741:3;9737:11;9730:55;9816:6;9811:2;9806:3;9802:12;9795:28;9849:2;9844:3;9840:12;9833:19;;9636:222;;;:::o;9864:357::-;;10045:85;10127:2;10122:3;10045:85;:::i;:::-;10038:92;;10160:25;10156:1;10151:3;10147:11;10140:46;10212:2;10207:3;10203:12;10196:19;;10028:193;;;:::o;10227:369::-;;10390:67;10454:2;10449:3;10390:67;:::i;:::-;10383:74;;10487:34;10483:1;10478:3;10474:11;10467:55;10553:7;10548:2;10543:3;10539:12;10532:29;10587:2;10582:3;10578:12;10571:19;;10373:223;;;:::o;10602:351::-;;10783:85;10865:2;10860:3;10783:85;:::i;:::-;10776:92;;10898:19;10894:1;10889:3;10885:11;10878:40;10944:2;10939:3;10935:12;10928:19;;10766:187;;;:::o;10959:379::-;;11122:67;11186:2;11181:3;11122:67;:::i;:::-;11115:74;;11219:34;11215:1;11210:3;11206:11;11199:55;11285:17;11280:2;11275:3;11271:12;11264:39;11329:2;11324:3;11320:12;11313:19;;11105:233;;;:::o;11344:329::-;;11507:67;11571:2;11566:3;11507:67;:::i;:::-;11500:74;;11604:33;11600:1;11595:3;11591:11;11584:54;11664:2;11659:3;11655:12;11648:19;;11490:183;;;:::o;11679:118::-;11766:24;11784:5;11766:24;:::i;:::-;11761:3;11754:37;11744:53;;:::o;11803:112::-;11886:22;11902:5;11886:22;:::i;:::-;11881:3;11874:35;11864:51;;:::o;11921:967::-;;12325:148;12469:3;12325:148;:::i;:::-;12318:155;;12490:95;12581:3;12572:6;12490:95;:::i;:::-;12483:102;;12602:148;12746:3;12602:148;:::i;:::-;12595:155;;12767:95;12858:3;12849:6;12767:95;:::i;:::-;12760:102;;12879:3;12872:10;;12307:581;;;;;:::o;12894:222::-;;13025:2;13014:9;13010:18;13002:26;;13038:71;13106:1;13095:9;13091:17;13082:6;13038:71;:::i;:::-;12992:124;;;;:::o;13122:210::-;;13247:2;13236:9;13232:18;13224:26;;13260:65;13322:1;13311:9;13307:17;13298:6;13260:65;:::i;:::-;13214:118;;;;:::o;13338:222::-;;13469:2;13458:9;13454:18;13446:26;;13482:71;13550:1;13539:9;13535:17;13526:6;13482:71;:::i;:::-;13436:124;;;;:::o;13566:313::-;;13717:2;13706:9;13702:18;13694:26;;13766:9;13760:4;13756:20;13752:1;13741:9;13737:17;13730:47;13794:78;13867:4;13858:6;13794:78;:::i;:::-;13786:86;;13684:195;;;;:::o;13885:419::-;;14089:2;14078:9;14074:18;14066:26;;14138:9;14132:4;14128:20;14124:1;14113:9;14109:17;14102:47;14166:131;14292:4;14166:131;:::i;:::-;14158:139;;14056:248;;;:::o;14310:419::-;;14514:2;14503:9;14499:18;14491:26;;14563:9;14557:4;14553:20;14549:1;14538:9;14534:17;14527:47;14591:131;14717:4;14591:131;:::i;:::-;14583:139;;14481:248;;;:::o;14735:419::-;;14939:2;14928:9;14924:18;14916:26;;14988:9;14982:4;14978:20;14974:1;14963:9;14959:17;14952:47;15016:131;15142:4;15016:131;:::i;:::-;15008:139;;14906:248;;;:::o;15160:419::-;;15364:2;15353:9;15349:18;15341:26;;15413:9;15407:4;15403:20;15399:1;15388:9;15384:17;15377:47;15441:131;15567:4;15441:131;:::i;:::-;15433:139;;15331:248;;;:::o;15585:419::-;;15789:2;15778:9;15774:18;15766:26;;15838:9;15832:4;15828:20;15824:1;15813:9;15809:17;15802:47;15866:131;15992:4;15866:131;:::i;:::-;15858:139;;15756:248;;;:::o;16010:419::-;;16214:2;16203:9;16199:18;16191:26;;16263:9;16257:4;16253:20;16249:1;16238:9;16234:17;16227:47;16291:131;16417:4;16291:131;:::i;:::-;16283:139;;16181:248;;;:::o;16435:419::-;;16639:2;16628:9;16624:18;16616:26;;16688:9;16682:4;16678:20;16674:1;16663:9;16659:17;16652:47;16716:131;16842:4;16716:131;:::i;:::-;16708:139;;16606:248;;;:::o;16860:419::-;;17064:2;17053:9;17049:18;17041:26;;17113:9;17107:4;17103:20;17099:1;17088:9;17084:17;17077:47;17141:131;17267:4;17141:131;:::i;:::-;17133:139;;17031:248;;;:::o;17285:419::-;;17489:2;17478:9;17474:18;17466:26;;17538:9;17532:4;17528:20;17524:1;17513:9;17509:17;17502:47;17566:131;17692:4;17566:131;:::i;:::-;17558:139;;17456:248;;;:::o;17710:419::-;;17914:2;17903:9;17899:18;17891:26;;17963:9;17957:4;17953:20;17949:1;17938:9;17934:17;17927:47;17991:131;18117:4;17991:131;:::i;:::-;17983:139;;17881:248;;;:::o;18135:419::-;;18339:2;18328:9;18324:18;18316:26;;18388:9;18382:4;18378:20;18374:1;18363:9;18359:17;18352:47;18416:131;18542:4;18416:131;:::i;:::-;18408:139;;18306:248;;;:::o;18560:419::-;;18764:2;18753:9;18749:18;18741:26;;18813:9;18807:4;18803:20;18799:1;18788:9;18784:17;18777:47;18841:131;18967:4;18841:131;:::i;:::-;18833:139;;18731:248;;;:::o;18985:419::-;;19189:2;19178:9;19174:18;19166:26;;19238:9;19232:4;19228:20;19224:1;19213:9;19209:17;19202:47;19266:131;19392:4;19266:131;:::i;:::-;19258:139;;19156:248;;;:::o;19410:419::-;;19614:2;19603:9;19599:18;19591:26;;19663:9;19657:4;19653:20;19649:1;19638:9;19634:17;19627:47;19691:131;19817:4;19691:131;:::i;:::-;19683:139;;19581:248;;;:::o;19835:419::-;;20039:2;20028:9;20024:18;20016:26;;20088:9;20082:4;20078:20;20074:1;20063:9;20059:17;20052:47;20116:131;20242:4;20116:131;:::i;:::-;20108:139;;20006:248;;;:::o;20260:419::-;;20464:2;20453:9;20449:18;20441:26;;20513:9;20507:4;20503:20;20499:1;20488:9;20484:17;20477:47;20541:131;20667:4;20541:131;:::i;:::-;20533:139;;20431:248;;;:::o;20685:419::-;;20889:2;20878:9;20874:18;20866:26;;20938:9;20932:4;20928:20;20924:1;20913:9;20909:17;20902:47;20966:131;21092:4;20966:131;:::i;:::-;20958:139;;20856:248;;;:::o;21110:419::-;;21314:2;21303:9;21299:18;21291:26;;21363:9;21357:4;21353:20;21349:1;21338:9;21334:17;21327:47;21391:131;21517:4;21391:131;:::i;:::-;21383:139;;21281:248;;;:::o;21535:222::-;;21666:2;21655:9;21651:18;21643:26;;21679:71;21747:1;21736:9;21732:17;21723:6;21679:71;:::i;:::-;21633:124;;;;:::o;21763:214::-;;21890:2;21879:9;21875:18;21867:26;;21903:67;21967:1;21956:9;21952:17;21943:6;21903:67;:::i;:::-;21857:120;;;;:::o;21983:99::-;;22069:5;22063:12;22053:22;;22042:40;;;:::o;22088:169::-;;22206:6;22201:3;22194:19;22246:4;22241:3;22237:14;22222:29;;22184:73;;;;:::o;22263:148::-;;22402:3;22387:18;;22377:34;;;;:::o;22417:305::-;;22476:20;22494:1;22476:20;:::i;:::-;22471:25;;22510:20;22528:1;22510:20;:::i;:::-;22505:25;;22664:1;22596:66;22592:74;22589:1;22586:81;22583:2;;;22670:18;;:::i;:::-;22583:2;22714:1;22711;22707:9;22700:16;;22461:261;;;;:::o;22728:348::-;;22791:20;22809:1;22791:20;:::i;:::-;22786:25;;22825:20;22843:1;22825:20;:::i;:::-;22820:25;;23013:1;22945:66;22941:74;22938:1;22935:81;22930:1;22923:9;22916:17;22912:105;22909:2;;;23020:18;;:::i;:::-;22909:2;23068:1;23065;23061:9;23050:20;;22776:300;;;;:::o;23082:191::-;;23142:20;23160:1;23142:20;:::i;:::-;23137:25;;23176:20;23194:1;23176:20;:::i;:::-;23171:25;;23215:1;23212;23209:8;23206:2;;;23220:18;;:::i;:::-;23206:2;23265:1;23262;23258:9;23250:17;;23127:146;;;;:::o;23279:96::-;;23345:24;23363:5;23345:24;:::i;:::-;23334:35;;23324:51;;;:::o;23381:90::-;;23458:5;23451:13;23444:21;23433:32;;23423:48;;;:::o;23477:77::-;;23543:5;23532:16;;23522:32;;;:::o;23560:149::-;;23636:66;23629:5;23625:78;23614:89;;23604:105;;;:::o;23715:126::-;;23792:42;23785:5;23781:54;23770:65;;23760:81;;;:::o;23847:77::-;;23913:5;23902:16;;23892:32;;;:::o;23930:86::-;;24005:4;23998:5;23994:16;23983:27;;23973:43;;;:::o;24022:307::-;24090:1;24100:113;24114:6;24111:1;24108:13;24100:113;;;24199:1;24194:3;24190:11;24184:18;24180:1;24175:3;24171:11;24164:39;24136:2;24133:1;24129:10;24124:15;;24100:113;;;24231:6;24228:1;24225:13;24222:2;;;24311:1;24302:6;24297:3;24293:16;24286:27;24222:2;24071:258;;;;:::o;24335:171::-;;24397:24;24415:5;24397:24;:::i;:::-;24388:33;;24443:4;24436:5;24433:15;24430:2;;;24451:18;;:::i;:::-;24430:2;24498:1;24491:5;24487:13;24480:20;;24378:128;;;:::o;24512:320::-;;24593:1;24587:4;24583:12;24573:22;;24640:1;24634:4;24630:12;24661:18;24651:2;;24717:4;24709:6;24705:17;24695:27;;24651:2;24779;24771:6;24768:14;24748:18;24745:38;24742:2;;;24798:18;;:::i;:::-;24742:2;24563:269;;;;:::o;24838:180::-;24886:77;24883:1;24876:88;24983:4;24980:1;24973:15;25007:4;25004:1;24997:15;25024:180;25072:77;25069:1;25062:88;25169:4;25166:1;25159:15;25193:4;25190:1;25183:15;25210:102;;25302:2;25298:7;25293:2;25286:5;25282:14;25278:28;25268:38;;25258:54;;;:::o;25318:122::-;25391:24;25409:5;25391:24;:::i;:::-;25384:5;25381:35;25371:2;;25430:1;25427;25420:12;25371:2;25361:79;:::o;25446:122::-;25519:24;25537:5;25519:24;:::i;:::-;25512:5;25509:35;25499:2;;25558:1;25555;25548:12;25499:2;25489:79;:::o;25574:120::-;25646:23;25663:5;25646:23;:::i;:::-;25639:5;25636:34;25626:2;;25684:1;25681;25674:12;25626:2;25616:78;:::o;25700:122::-;25773:24;25791:5;25773:24;:::i;:::-;25766:5;25763:35;25753:2;;25812:1;25809;25802:12;25753:2;25743:79;:::o
Swarm Source
ipfs://38ad23b06455dbce0d8f699f4ac8a3c70ef9c382c1994203083593113f13c066
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.