Overview
MOVR Balance
MOVR Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 237 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 9831321 | 103 days ago | IN | 0 MOVR | 0.00005746 | ||||
Approve | 9831318 | 103 days ago | IN | 0 MOVR | 0.00005746 | ||||
Approve | 9761179 | 108 days ago | IN | 0 MOVR | 0.00022984 | ||||
Approve | 9331079 | 138 days ago | IN | 0 MOVR | 0.00022984 | ||||
Approve | 8911062 | 168 days ago | IN | 0 MOVR | 0.00022984 | ||||
Approve | 8065311 | 229 days ago | IN | 0 MOVR | 0.00022984 | ||||
Approve | 7648101 | 260 days ago | IN | 0 MOVR | 0.00011492 | ||||
Approve | 7061745 | 301 days ago | IN | 0 MOVR | 0.00011492 | ||||
Approve | 6917261 | 320 days ago | IN | 0 MOVR | 0.00012908 | ||||
Approve | 6856680 | 329 days ago | IN | 0 MOVR | 0.00014886 | ||||
Approve | 6849281 | 330 days ago | IN | 0 MOVR | 0.00012911 | ||||
Approve | 6848965 | 330 days ago | IN | 0 MOVR | 0.00012918 | ||||
Approve | 6701357 | 351 days ago | IN | 0 MOVR | 0.00015201 | ||||
Approve | 6509652 | 379 days ago | IN | 0 MOVR | 0.00015297 | ||||
Approve | 6466728 | 385 days ago | IN | 0 MOVR | 0.00015201 | ||||
Approve | 6265009 | 415 days ago | IN | 0 MOVR | 0.00015201 | ||||
Approve | 6236554 | 420 days ago | IN | 0 MOVR | 0.00012812 | ||||
Approve | 6126293 | 437 days ago | IN | 0 MOVR | 0.00014921 | ||||
Approve | 5889555 | 473 days ago | IN | 0 MOVR | 0.00015298 | ||||
Approve | 5790807 | 488 days ago | IN | 0 MOVR | 0.00014647 | ||||
Approve | 5790806 | 488 days ago | IN | 0 MOVR | 0.00014644 | ||||
Approve | 5762946 | 492 days ago | IN | 0 MOVR | 0.00013311 | ||||
Approve | 5762936 | 492 days ago | IN | 0 MOVR | 0.00013842 | ||||
Approve | 5762906 | 492 days ago | IN | 0 MOVR | 0.00012918 | ||||
Transfer | 5759810 | 492 days ago | IN | 0 MOVR | 0.00012857 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Roar
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at moonriver.moonscan.io on 2022-04-14 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/math/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @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; } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev 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()); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged( bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole ); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) 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); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _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 virtual 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 virtual { 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 virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ 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()); } } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File contracts/Roar/roar.sol pragma solidity ^0.8.0; contract Roar is ERC20Burnable, Pausable, AccessControl { using SafeMath for uint256; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() ERC20("Baby Roar", "BBROAR") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(to, amount); } function pause() public onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } function unpause() public onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override whenNotPaused { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[],"name":"MINTER_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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4261627920526f617200000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4242524f4152000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000263565b508060049080519060200190620000af92919062000263565b5050506000600560006101000a81548160ff021916908315150217905550620000e26000801b33620000e860201b60201c565b62000378565b620000fa8282620000fe60201b60201c565b5050565b620001108282620001f060201b60201c565b620001ec5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001916200025b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002719062000313565b90600052602060002090601f016020900481019282620002955760008555620002e1565b82601f10620002b057805160ff1916838001178555620002e1565b82800160010185558215620002e1579182015b82811115620002e0578251825591602001919060010190620002c3565b5b509050620002f09190620002f4565b5090565b5b808211156200030f576000816000905550600101620002f5565b5090565b600060028204905060018216806200032c57607f821691505b6020821081141562000343576200034262000349565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61299c80620003886000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461044c578063d53913931461047c578063d547741f1461049a578063dd62ed3e146104b657610173565b806395d89b41146103e0578063a217fddf146103fe578063a457c2d71461041c57610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a57806379cc67901461038a5780638456cb59146103a657806391d14854146103b057610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611c4b565b6104e6565b60405161019f9190611fdf565b60405180910390f35b6101b0610560565b6040516101bd9190612015565b60405180910390f35b6101e060048036038101906101db9190611b9e565b6105f2565b6040516101ed9190611fdf565b60405180910390f35b6101fe610615565b60405161020b91906121f7565b60405180910390f35b61022e60048036038101906102299190611b4b565b61061f565b60405161023b9190611fdf565b60405180910390f35b61025e60048036038101906102599190611bde565b61064e565b60405161026b9190611ffa565b60405180910390f35b61028e60048036038101906102899190611c0b565b61066e565b005b610298610697565b6040516102a59190612212565b60405180910390f35b6102c860048036038101906102c39190611c0b565b6106a0565b005b6102e460048036038101906102df9190611b9e565b610723565b6040516102f19190611fdf565b60405180910390f35b6103026107cd565b005b61031e60048036038101906103199190611b9e565b6107ed565b005b61033a60048036038101906103359190611c78565b61082e565b005b610344610842565b6040516103519190611fdf565b60405180910390f35b610374600480360381019061036f9190611ade565b610859565b60405161038191906121f7565b60405180910390f35b6103a4600480360381019061039f9190611b9e565b6108a1565b005b6103ae6108c1565b005b6103ca60048036038101906103c59190611c0b565b6108e1565b6040516103d79190611fdf565b60405180910390f35b6103e861094c565b6040516103f59190612015565b60405180910390f35b6104066109de565b6040516104139190611ffa565b60405180910390f35b61043660048036038101906104319190611b9e565b6109e5565b6040516104439190611fdf565b60405180910390f35b61046660048036038101906104619190611b9e565b610acf565b6040516104739190611fdf565b60405180910390f35b610484610af2565b6040516104919190611ffa565b60405180910390f35b6104b460048036038101906104af9190611c0b565b610b16565b005b6104d060048036038101906104cb9190611b0b565b610b3f565b6040516104dd91906121f7565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610559575061055882610bc6565b5b9050919050565b60606003805461056f90612420565b80601f016020809104026020016040519081016040528092919081815260200182805461059b90612420565b80156105e85780601f106105bd576101008083540402835291602001916105e8565b820191906000526020600020905b8154815290600101906020018083116105cb57829003601f168201915b5050505050905090565b6000806105fd610c30565b905061060a818585610c38565b600191505092915050565b6000600254905090565b60008061062a610c30565b9050610637858285610e03565b610642858585610e8f565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106778261064e565b61068881610683610c30565b611110565b61069283836111ad565b505050565b60006012905090565b6106a8610c30565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906121b7565b60405180910390fd5b61071f828261128e565b5050565b60008061072e610c30565b90506107c2818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107bd9190612254565b610c38565b600191505092915050565b6000801b6107e2816107dd610c30565b611110565b6107ea611370565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081f8161081a610c30565b611110565b6108298383611412565b505050565b61083f610839610c30565b82611572565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b3826108ad610c30565b83610e03565b6108bd8282611572565b5050565b6000801b6108d6816108d1610c30565b611110565b6108de611749565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461095b90612420565b80601f016020809104026020016040519081016040528092919081815260200182805461098790612420565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b6000801b81565b6000806109f0610c30565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad90612197565b60405180910390fd5b610ac38286868403610c38565b60019250505092915050565b600080610ada610c30565b9050610ae7818585610e8f565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b1f8261064e565b610b3081610b2b610c30565b611110565b610b3a838361128e565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612177565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f906120b7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df691906121f7565b60405180910390a3505050565b6000610e0f8484610b3f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e895781811015610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906120d7565b60405180910390fd5b610e888484848403610c38565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612157565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690612057565b60405180910390fd5b610f7a8383836117ec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906120f7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110939190612254565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f791906121f7565b60405180910390a361110a848484611844565b50505050565b61111a82826108e1565b6111a95761113f8173ffffffffffffffffffffffffffffffffffffffff166014611849565b61114d8360001c6020611849565b60405160200161115e929190611f8a565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a09190612015565b60405180910390fd5b5050565b6111b782826108e1565b61128a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061122f610c30565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61129882826108e1565b1561136c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611311610c30565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611378610842565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90612077565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113fb610c30565b6040516114089190611fc4565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906121d7565b60405180910390fd5b61148e600083836117ec565b80600260008282546114a09190612254565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f59190612254565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161155a91906121f7565b60405180910390a361156e60008383611844565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990612137565b60405180910390fd5b6115ee826000836117ec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90612097565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116cb9190612304565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161173091906121f7565b60405180910390a361174483600084611844565b505050565b611751610842565b15611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890612117565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117d5610c30565b6040516117e29190611fc4565b60405180910390a1565b6117f4610842565b15611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612117565b60405180910390fd5b61183f838383611a85565b505050565b505050565b60606000600283600261185c91906122aa565b6118669190612254565b67ffffffffffffffff81111561187f5761187e6124df565b5b6040519080825280601f01601f1916602001820160405280156118b15781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106118e9576118e86124b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061194d5761194c6124b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261198d91906122aa565b6119979190612254565b90505b6001811115611a37577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106119d9576119d86124b0565b5b1a60f81b8282815181106119f0576119ef6124b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611a30906123f6565b905061199a565b5060008414611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290612037565b60405180910390fd5b8091505092915050565b505050565b600081359050611a998161290a565b92915050565b600081359050611aae81612921565b92915050565b600081359050611ac381612938565b92915050565b600081359050611ad88161294f565b92915050565b600060208284031215611af457611af361250e565b5b6000611b0284828501611a8a565b91505092915050565b60008060408385031215611b2257611b2161250e565b5b6000611b3085828601611a8a565b9250506020611b4185828601611a8a565b9150509250929050565b600080600060608486031215611b6457611b6361250e565b5b6000611b7286828701611a8a565b9350506020611b8386828701611a8a565b9250506040611b9486828701611ac9565b9150509250925092565b60008060408385031215611bb557611bb461250e565b5b6000611bc385828601611a8a565b9250506020611bd485828601611ac9565b9150509250929050565b600060208284031215611bf457611bf361250e565b5b6000611c0284828501611a9f565b91505092915050565b60008060408385031215611c2257611c2161250e565b5b6000611c3085828601611a9f565b9250506020611c4185828601611a8a565b9150509250929050565b600060208284031215611c6157611c6061250e565b5b6000611c6f84828501611ab4565b91505092915050565b600060208284031215611c8e57611c8d61250e565b5b6000611c9c84828501611ac9565b91505092915050565b611cae81612338565b82525050565b611cbd8161234a565b82525050565b611ccc81612356565b82525050565b6000611cdd8261222d565b611ce78185612238565b9350611cf78185602086016123c3565b611d0081612513565b840191505092915050565b6000611d168261222d565b611d208185612249565b9350611d308185602086016123c3565b80840191505092915050565b6000611d49602083612238565b9150611d5482612524565b602082019050919050565b6000611d6c602383612238565b9150611d778261254d565b604082019050919050565b6000611d8f601483612238565b9150611d9a8261259c565b602082019050919050565b6000611db2602283612238565b9150611dbd826125c5565b604082019050919050565b6000611dd5602283612238565b9150611de082612614565b604082019050919050565b6000611df8601d83612238565b9150611e0382612663565b602082019050919050565b6000611e1b602683612238565b9150611e268261268c565b604082019050919050565b6000611e3e601083612238565b9150611e49826126db565b602082019050919050565b6000611e61602183612238565b9150611e6c82612704565b604082019050919050565b6000611e84602583612238565b9150611e8f82612753565b604082019050919050565b6000611ea7602483612238565b9150611eb2826127a2565b604082019050919050565b6000611eca601783612249565b9150611ed5826127f1565b601782019050919050565b6000611eed602583612238565b9150611ef88261281a565b604082019050919050565b6000611f10601183612249565b9150611f1b82612869565b601182019050919050565b6000611f33602f83612238565b9150611f3e82612892565b604082019050919050565b6000611f56601f83612238565b9150611f61826128e1565b602082019050919050565b611f75816123ac565b82525050565b611f84816123b6565b82525050565b6000611f9582611ebd565b9150611fa18285611d0b565b9150611fac82611f03565b9150611fb88284611d0b565b91508190509392505050565b6000602082019050611fd96000830184611ca5565b92915050565b6000602082019050611ff46000830184611cb4565b92915050565b600060208201905061200f6000830184611cc3565b92915050565b6000602082019050818103600083015261202f8184611cd2565b905092915050565b6000602082019050818103600083015261205081611d3c565b9050919050565b6000602082019050818103600083015261207081611d5f565b9050919050565b6000602082019050818103600083015261209081611d82565b9050919050565b600060208201905081810360008301526120b081611da5565b9050919050565b600060208201905081810360008301526120d081611dc8565b9050919050565b600060208201905081810360008301526120f081611deb565b9050919050565b6000602082019050818103600083015261211081611e0e565b9050919050565b6000602082019050818103600083015261213081611e31565b9050919050565b6000602082019050818103600083015261215081611e54565b9050919050565b6000602082019050818103600083015261217081611e77565b9050919050565b6000602082019050818103600083015261219081611e9a565b9050919050565b600060208201905081810360008301526121b081611ee0565b9050919050565b600060208201905081810360008301526121d081611f26565b9050919050565b600060208201905081810360008301526121f081611f49565b9050919050565b600060208201905061220c6000830184611f6c565b92915050565b60006020820190506122276000830184611f7b565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061225f826123ac565b915061226a836123ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561229f5761229e612452565b5b828201905092915050565b60006122b5826123ac565b91506122c0836123ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156122f9576122f8612452565b5b828202905092915050565b600061230f826123ac565b915061231a836123ac565b92508282101561232d5761232c612452565b5b828203905092915050565b60006123438261238c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156123e15780820151818401526020810190506123c6565b838111156123f0576000848401525b50505050565b6000612401826123ac565b9150600082141561241557612414612452565b5b600182039050919050565b6000600282049050600182168061243857607f821691505b6020821081141561244c5761244b612481565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61291381612338565b811461291e57600080fd5b50565b61292a81612356565b811461293557600080fd5b50565b61294181612360565b811461294c57600080fd5b50565b612958816123ac565b811461296357600080fd5b5056fea2646970667358221220da6e8dd1e2f827b099e2f641a4b845e488b668b6661405c35980f7b9d2ad260364736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461044c578063d53913931461047c578063d547741f1461049a578063dd62ed3e146104b657610173565b806395d89b41146103e0578063a217fddf146103fe578063a457c2d71461041c57610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a57806379cc67901461038a5780638456cb59146103a657806391d14854146103b057610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611c4b565b6104e6565b60405161019f9190611fdf565b60405180910390f35b6101b0610560565b6040516101bd9190612015565b60405180910390f35b6101e060048036038101906101db9190611b9e565b6105f2565b6040516101ed9190611fdf565b60405180910390f35b6101fe610615565b60405161020b91906121f7565b60405180910390f35b61022e60048036038101906102299190611b4b565b61061f565b60405161023b9190611fdf565b60405180910390f35b61025e60048036038101906102599190611bde565b61064e565b60405161026b9190611ffa565b60405180910390f35b61028e60048036038101906102899190611c0b565b61066e565b005b610298610697565b6040516102a59190612212565b60405180910390f35b6102c860048036038101906102c39190611c0b565b6106a0565b005b6102e460048036038101906102df9190611b9e565b610723565b6040516102f19190611fdf565b60405180910390f35b6103026107cd565b005b61031e60048036038101906103199190611b9e565b6107ed565b005b61033a60048036038101906103359190611c78565b61082e565b005b610344610842565b6040516103519190611fdf565b60405180910390f35b610374600480360381019061036f9190611ade565b610859565b60405161038191906121f7565b60405180910390f35b6103a4600480360381019061039f9190611b9e565b6108a1565b005b6103ae6108c1565b005b6103ca60048036038101906103c59190611c0b565b6108e1565b6040516103d79190611fdf565b60405180910390f35b6103e861094c565b6040516103f59190612015565b60405180910390f35b6104066109de565b6040516104139190611ffa565b60405180910390f35b61043660048036038101906104319190611b9e565b6109e5565b6040516104439190611fdf565b60405180910390f35b61046660048036038101906104619190611b9e565b610acf565b6040516104739190611fdf565b60405180910390f35b610484610af2565b6040516104919190611ffa565b60405180910390f35b6104b460048036038101906104af9190611c0b565b610b16565b005b6104d060048036038101906104cb9190611b0b565b610b3f565b6040516104dd91906121f7565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610559575061055882610bc6565b5b9050919050565b60606003805461056f90612420565b80601f016020809104026020016040519081016040528092919081815260200182805461059b90612420565b80156105e85780601f106105bd576101008083540402835291602001916105e8565b820191906000526020600020905b8154815290600101906020018083116105cb57829003601f168201915b5050505050905090565b6000806105fd610c30565b905061060a818585610c38565b600191505092915050565b6000600254905090565b60008061062a610c30565b9050610637858285610e03565b610642858585610e8f565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106778261064e565b61068881610683610c30565b611110565b61069283836111ad565b505050565b60006012905090565b6106a8610c30565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906121b7565b60405180910390fd5b61071f828261128e565b5050565b60008061072e610c30565b90506107c2818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107bd9190612254565b610c38565b600191505092915050565b6000801b6107e2816107dd610c30565b611110565b6107ea611370565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081f8161081a610c30565b611110565b6108298383611412565b505050565b61083f610839610c30565b82611572565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b3826108ad610c30565b83610e03565b6108bd8282611572565b5050565b6000801b6108d6816108d1610c30565b611110565b6108de611749565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461095b90612420565b80601f016020809104026020016040519081016040528092919081815260200182805461098790612420565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b6000801b81565b6000806109f0610c30565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad90612197565b60405180910390fd5b610ac38286868403610c38565b60019250505092915050565b600080610ada610c30565b9050610ae7818585610e8f565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b1f8261064e565b610b3081610b2b610c30565b611110565b610b3a838361128e565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612177565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f906120b7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df691906121f7565b60405180910390a3505050565b6000610e0f8484610b3f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e895781811015610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906120d7565b60405180910390fd5b610e888484848403610c38565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612157565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690612057565b60405180910390fd5b610f7a8383836117ec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906120f7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110939190612254565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f791906121f7565b60405180910390a361110a848484611844565b50505050565b61111a82826108e1565b6111a95761113f8173ffffffffffffffffffffffffffffffffffffffff166014611849565b61114d8360001c6020611849565b60405160200161115e929190611f8a565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a09190612015565b60405180910390fd5b5050565b6111b782826108e1565b61128a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061122f610c30565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61129882826108e1565b1561136c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611311610c30565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611378610842565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90612077565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113fb610c30565b6040516114089190611fc4565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906121d7565b60405180910390fd5b61148e600083836117ec565b80600260008282546114a09190612254565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f59190612254565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161155a91906121f7565b60405180910390a361156e60008383611844565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990612137565b60405180910390fd5b6115ee826000836117ec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90612097565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116cb9190612304565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161173091906121f7565b60405180910390a361174483600084611844565b505050565b611751610842565b15611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890612117565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117d5610c30565b6040516117e29190611fc4565b60405180910390a1565b6117f4610842565b15611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612117565b60405180910390fd5b61183f838383611a85565b505050565b505050565b60606000600283600261185c91906122aa565b6118669190612254565b67ffffffffffffffff81111561187f5761187e6124df565b5b6040519080825280601f01601f1916602001820160405280156118b15781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106118e9576118e86124b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061194d5761194c6124b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261198d91906122aa565b6119979190612254565b90505b6001811115611a37577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106119d9576119d86124b0565b5b1a60f81b8282815181106119f0576119ef6124b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611a30906123f6565b905061199a565b5060008414611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290612037565b60405180910390fd5b8091505092915050565b505050565b600081359050611a998161290a565b92915050565b600081359050611aae81612921565b92915050565b600081359050611ac381612938565b92915050565b600081359050611ad88161294f565b92915050565b600060208284031215611af457611af361250e565b5b6000611b0284828501611a8a565b91505092915050565b60008060408385031215611b2257611b2161250e565b5b6000611b3085828601611a8a565b9250506020611b4185828601611a8a565b9150509250929050565b600080600060608486031215611b6457611b6361250e565b5b6000611b7286828701611a8a565b9350506020611b8386828701611a8a565b9250506040611b9486828701611ac9565b9150509250925092565b60008060408385031215611bb557611bb461250e565b5b6000611bc385828601611a8a565b9250506020611bd485828601611ac9565b9150509250929050565b600060208284031215611bf457611bf361250e565b5b6000611c0284828501611a9f565b91505092915050565b60008060408385031215611c2257611c2161250e565b5b6000611c3085828601611a9f565b9250506020611c4185828601611a8a565b9150509250929050565b600060208284031215611c6157611c6061250e565b5b6000611c6f84828501611ab4565b91505092915050565b600060208284031215611c8e57611c8d61250e565b5b6000611c9c84828501611ac9565b91505092915050565b611cae81612338565b82525050565b611cbd8161234a565b82525050565b611ccc81612356565b82525050565b6000611cdd8261222d565b611ce78185612238565b9350611cf78185602086016123c3565b611d0081612513565b840191505092915050565b6000611d168261222d565b611d208185612249565b9350611d308185602086016123c3565b80840191505092915050565b6000611d49602083612238565b9150611d5482612524565b602082019050919050565b6000611d6c602383612238565b9150611d778261254d565b604082019050919050565b6000611d8f601483612238565b9150611d9a8261259c565b602082019050919050565b6000611db2602283612238565b9150611dbd826125c5565b604082019050919050565b6000611dd5602283612238565b9150611de082612614565b604082019050919050565b6000611df8601d83612238565b9150611e0382612663565b602082019050919050565b6000611e1b602683612238565b9150611e268261268c565b604082019050919050565b6000611e3e601083612238565b9150611e49826126db565b602082019050919050565b6000611e61602183612238565b9150611e6c82612704565b604082019050919050565b6000611e84602583612238565b9150611e8f82612753565b604082019050919050565b6000611ea7602483612238565b9150611eb2826127a2565b604082019050919050565b6000611eca601783612249565b9150611ed5826127f1565b601782019050919050565b6000611eed602583612238565b9150611ef88261281a565b604082019050919050565b6000611f10601183612249565b9150611f1b82612869565b601182019050919050565b6000611f33602f83612238565b9150611f3e82612892565b604082019050919050565b6000611f56601f83612238565b9150611f61826128e1565b602082019050919050565b611f75816123ac565b82525050565b611f84816123b6565b82525050565b6000611f9582611ebd565b9150611fa18285611d0b565b9150611fac82611f03565b9150611fb88284611d0b565b91508190509392505050565b6000602082019050611fd96000830184611ca5565b92915050565b6000602082019050611ff46000830184611cb4565b92915050565b600060208201905061200f6000830184611cc3565b92915050565b6000602082019050818103600083015261202f8184611cd2565b905092915050565b6000602082019050818103600083015261205081611d3c565b9050919050565b6000602082019050818103600083015261207081611d5f565b9050919050565b6000602082019050818103600083015261209081611d82565b9050919050565b600060208201905081810360008301526120b081611da5565b9050919050565b600060208201905081810360008301526120d081611dc8565b9050919050565b600060208201905081810360008301526120f081611deb565b9050919050565b6000602082019050818103600083015261211081611e0e565b9050919050565b6000602082019050818103600083015261213081611e31565b9050919050565b6000602082019050818103600083015261215081611e54565b9050919050565b6000602082019050818103600083015261217081611e77565b9050919050565b6000602082019050818103600083015261219081611e9a565b9050919050565b600060208201905081810360008301526121b081611ee0565b9050919050565b600060208201905081810360008301526121d081611f26565b9050919050565b600060208201905081810360008301526121f081611f49565b9050919050565b600060208201905061220c6000830184611f6c565b92915050565b60006020820190506122276000830184611f7b565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061225f826123ac565b915061226a836123ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561229f5761229e612452565b5b828201905092915050565b60006122b5826123ac565b91506122c0836123ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156122f9576122f8612452565b5b828202905092915050565b600061230f826123ac565b915061231a836123ac565b92508282101561232d5761232c612452565b5b828203905092915050565b60006123438261238c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156123e15780820151818401526020810190506123c6565b838111156123f0576000848401525b50505050565b6000612401826123ac565b9150600082141561241557612414612452565b5b600182039050919050565b6000600282049050600182168061243857607f821691505b6020821081141561244c5761244b612481565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61291381612338565b811461291e57600080fd5b50565b61292a81612356565b811461293557600080fd5b50565b61294181612360565b811461294c57600080fd5b50565b612958816123ac565b811461296357600080fd5b5056fea2646970667358221220da6e8dd1e2f827b099e2f641a4b845e488b668b6661405c35980f7b9d2ad260364736f6c63430008070033
Deployed Bytecode Sourcemap
43955:778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20428:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31565:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34057:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32685:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34879:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21981:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22424:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32527:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23554:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35583:272;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44437:84;;;:::i;:::-;;44234:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43312:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9319:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32856:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43722:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44349:80;;;:::i;:::-;;20800:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31784:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19815:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36358:507;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33239:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44051:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22857:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33536:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20428:280;20558:4;20615:32;20600:47;;;:11;:47;;;;:100;;;;20664:36;20688:11;20664:23;:36::i;:::-;20600:100;20580:120;;20428:280;;;:::o;31565:100::-;31619:13;31652:5;31645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31565:100;:::o;34057:242::-;34176:4;34198:13;34214:12;:10;:12::i;:::-;34198:28;;34237:32;34246:5;34253:7;34262:6;34237:8;:32::i;:::-;34287:4;34280:11;;;34057:242;;;;:::o;32685:108::-;32746:7;32773:12;;32766:19;;32685:108;:::o;34879:295::-;35010:4;35027:15;35045:12;:10;:12::i;:::-;35027:30;;35068:38;35084:4;35090:7;35099:6;35068:15;:38::i;:::-;35117:27;35127:4;35133:2;35137:6;35117:9;:27::i;:::-;35162:4;35155:11;;;34879:295;;;;;:::o;21981:181::-;22100:7;22132:6;:12;22139:4;22132:12;;;;;;;;;;;:22;;;22125:29;;21981:181;;;:::o;22424:188::-;22543:18;22556:4;22543:12;:18::i;:::-;20306:30;20317:4;20323:12;:10;:12::i;:::-;20306:10;:30::i;:::-;22579:25:::1;22590:4;22596:7;22579:10;:25::i;:::-;22424:188:::0;;;:::o;32527:93::-;32585:5;32610:2;32603:9;;32527:93;:::o;23554:287::-;23707:12;:10;:12::i;:::-;23696:23;;:7;:23;;;23674:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;23807:26;23819:4;23825:7;23807:11;:26::i;:::-;23554:287;;:::o;35583:272::-;35698:4;35720:13;35736:12;:10;:12::i;:::-;35720:28;;35759:66;35768:5;35775:7;35814:10;35784:11;:18;35796:5;35784:18;;;;;;;;;;;;;;;:27;35803:7;35784:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;35759:8;:66::i;:::-;35843:4;35836:11;;;35583:272;;;;:::o;44437:84::-;19860:4;44472:18;;20306:30;20317:4;20323:12;:10;:12::i;:::-;20306:10;:30::i;:::-;44503:10:::1;:8;:10::i;:::-;44437:84:::0;:::o;44234:107::-;44089:24;20306:30;20317:4;20323:12;:10;:12::i;:::-;20306:10;:30::i;:::-;44316:17:::1;44322:2;44326:6;44316:5;:17::i;:::-;44234:107:::0;;;:::o;43312:91::-;43368:27;43374:12;:10;:12::i;:::-;43388:6;43368:5;:27::i;:::-;43312:91;:::o;9319:86::-;9366:4;9390:7;;;;;;;;;;;9383:14;;9319:86;:::o;32856:177::-;32975:7;33007:9;:18;33017:7;33007:18;;;;;;;;;;;;;;;;33000:25;;32856:177;;;:::o;43722:164::-;43799:46;43815:7;43824:12;:10;:12::i;:::-;43838:6;43799:15;:46::i;:::-;43856:22;43862:7;43871:6;43856:5;:22::i;:::-;43722:164;;:::o;44349:80::-;19860:4;44382:18;;20306:30;20317:4;20323:12;:10;:12::i;:::-;20306:10;:30::i;:::-;44413:8:::1;:6;:8::i;:::-;44349:80:::0;:::o;20800:197::-;20931:4;20960:6;:12;20967:4;20960:12;;;;;;;;;;;:20;;:29;20981:7;20960:29;;;;;;;;;;;;;;;;;;;;;;;;;20953:36;;20800:197;;;;:::o;31784:104::-;31840:13;31873:7;31866:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31784:104;:::o;19815:49::-;19860:4;19815:49;;;:::o;36358:507::-;36478:4;36500:13;36516:12;:10;:12::i;:::-;36500:28;;36539:24;36566:11;:18;36578:5;36566:18;;;;;;;;;;;;;;;:27;36585:7;36566:27;;;;;;;;;;;;;;;;36539:54;;36646:15;36626:16;:35;;36604:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36762:60;36771:5;36778:7;36806:15;36787:16;:34;36762:8;:60::i;:::-;36853:4;36846:11;;;;36358:507;;;;:::o;33239:234::-;33354:4;33376:13;33392:12;:10;:12::i;:::-;33376:28;;33415;33425:5;33432:2;33436:6;33415:9;:28::i;:::-;33461:4;33454:11;;;33239:234;;;;:::o;44051:62::-;44089:24;44051:62;:::o;22857:190::-;22977:18;22990:4;22977:12;:18::i;:::-;20306:30;20317:4;20323:12;:10;:12::i;:::-;20306:10;:30::i;:::-;23013:26:::1;23025:4;23031:7;23013:11;:26::i;:::-;22857:190:::0;;;:::o;33536:201::-;33670:7;33702:11;:18;33714:5;33702:18;;;;;;;;;;;;;;;:27;33721:7;33702:27;;;;;;;;;;;;;;;;33695:34;;33536:201;;;;:::o;17627:207::-;17757:4;17801:25;17786:40;;;:11;:40;;;;17779:47;;17627:207;;;:::o;7971:98::-;8024:7;8051:10;8044:17;;7971:98;:::o;40100:380::-;40253:1;40236:19;;:5;:19;;;;40228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40334:1;40315:21;;:7;:21;;;;40307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40418:6;40388:11;:18;40400:5;40388:18;;;;;;;;;;;;;;;:27;40407:7;40388:27;;;;;;;;;;;;;;;:36;;;;40456:7;40440:32;;40449:5;40440:32;;;40465:6;40440:32;;;;;;:::i;:::-;;;;;;;;40100:380;;;:::o;40767:502::-;40902:24;40929:25;40939:5;40946:7;40929:9;:25::i;:::-;40902:52;;40989:17;40969:16;:37;40965:297;;41069:6;41049:16;:26;;41023:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;41184:51;41193:5;41200:7;41228:6;41209:16;:25;41184:8;:51::i;:::-;40965:297;40891:378;40767:502;;;:::o;37344:708::-;37491:1;37475:18;;:4;:18;;;;37467:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37568:1;37554:16;;:2;:16;;;;37546:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37623:38;37644:4;37650:2;37654:6;37623:20;:38::i;:::-;37674:19;37696:9;:15;37706:4;37696:15;;;;;;;;;;;;;;;;37674:37;;37759:6;37744:11;:21;;37722:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;37899:6;37885:11;:20;37867:9;:15;37877:4;37867:15;;;;;;;;;;;;;;;:38;;;;37944:6;37927:9;:13;37937:2;37927:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;37983:2;37968:26;;37977:4;37968:26;;;37987:6;37968:26;;;;;;:::i;:::-;;;;;;;;38007:37;38027:4;38033:2;38037:6;38007:19;:37::i;:::-;37456:596;37344:708;;;:::o;21287:505::-;21376:22;21384:4;21390:7;21376;:22::i;:::-;21371:414;;21564:41;21592:7;21564:41;;21602:2;21564:19;:41::i;:::-;21678:38;21706:4;21698:13;;21713:2;21678:19;:38::i;:::-;21469:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21415:358;;;;;;;;;;;:::i;:::-;;;;;;;;21371:414;21287:505;;:::o;25124:238::-;25208:22;25216:4;25222:7;25208;:22::i;:::-;25203:152;;25279:4;25247:6;:12;25254:4;25247:12;;;;;;;;;;;:20;;:29;25268:7;25247:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;25330:12;:10;:12::i;:::-;25303:40;;25321:7;25303:40;;25315:4;25303:40;;;;;;;;;;25203:152;25124:238;;:::o;25494:239::-;25578:22;25586:4;25592:7;25578;:22::i;:::-;25574:152;;;25649:5;25617:6;:12;25624:4;25617:12;;;;;;;;;;;:20;;:29;25638:7;25617:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;25701:12;:10;:12::i;:::-;25674:40;;25692:7;25674:40;;25686:4;25674:40;;;;;;;;;;25574:152;25494:239;;:::o;10378:120::-;9922:8;:6;:8::i;:::-;9914:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;10447:5:::1;10437:7;;:15;;;;;;;;;;;;;;;;;;10468:22;10477:12;:10;:12::i;:::-;10468:22;;;;;;:::i;:::-;;;;;;;;10378:120::o:0;38339:399::-;38442:1;38423:21;;:7;:21;;;;38415:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38493:49;38522:1;38526:7;38535:6;38493:20;:49::i;:::-;38571:6;38555:12;;:22;;;;;;;:::i;:::-;;;;;;;;38610:6;38588:9;:18;38598:7;38588:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;38653:7;38632:37;;38649:1;38632:37;;;38662:6;38632:37;;;;;;:::i;:::-;;;;;;;;38682:48;38710:1;38714:7;38723:6;38682:19;:48::i;:::-;38339:399;;:::o;39071:591::-;39174:1;39155:21;;:7;:21;;;;39147:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39227:49;39248:7;39265:1;39269:6;39227:20;:49::i;:::-;39289:22;39314:9;:18;39324:7;39314:18;;;;;;;;;;;;;;;;39289:43;;39369:6;39351:14;:24;;39343:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39488:6;39471:14;:23;39450:9;:18;39460:7;39450:18;;;;;;;;;;;;;;;:44;;;;39532:6;39516:12;;:22;;;;;;;:::i;:::-;;;;;;;;39582:1;39556:37;;39565:7;39556:37;;;39586:6;39556:37;;;;;;:::i;:::-;;;;;;;;39606:48;39626:7;39643:1;39647:6;39606:19;:48::i;:::-;39136:526;39071:591;;:::o;10119:118::-;9645:8;:6;:8::i;:::-;9644:9;9636:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;10189:4:::1;10179:7;;:14;;;;;;;;;;;;;;;;;;10209:20;10216:12;:10;:12::i;:::-;10209:20;;;;;;:::i;:::-;;;;;;;;10119:118::o:0;44529:201::-;9645:8;:6;:8::i;:::-;9644:9;9636:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44678:44:::1;44705:4;44711:2;44715:6;44678:26;:44::i;:::-;44529:201:::0;;;:::o;42598:124::-;;;;:::o;15349:483::-;15451:13;15482:19;15527:1;15518:6;15514:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;15504:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15482:47;;15540:15;:6;15547:1;15540:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;15566;:6;15573:1;15566:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;15597:9;15622:1;15613:6;15609:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;15597:26;;15592:135;15629:1;15625;:5;15592:135;;;15664:12;15685:3;15677:5;:11;15664:25;;;;;;;:::i;:::-;;;;;15652:6;15659:1;15652:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;15714:1;15704:11;;;;;15632:3;;;;:::i;:::-;;;15592:135;;;;15754:1;15745:5;:10;15737:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;15817:6;15803:21;;;15349:483;;;;:::o;41869:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:119;;;3767:79;;:::i;:::-;3729:119;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3653:329;;;;:::o;3988:118::-;4075:24;4093:5;4075:24;:::i;:::-;4070:3;4063:37;3988:118;;:::o;4112:109::-;4193:21;4208:5;4193:21;:::i;:::-;4188:3;4181:34;4112:109;;:::o;4227:118::-;4314:24;4332:5;4314:24;:::i;:::-;4309:3;4302:37;4227:118;;:::o;4351:364::-;4439:3;4467:39;4500:5;4467:39;:::i;:::-;4522:71;4586:6;4581:3;4522:71;:::i;:::-;4515:78;;4602:52;4647:6;4642:3;4635:4;4628:5;4624:16;4602:52;:::i;:::-;4679:29;4701:6;4679:29;:::i;:::-;4674:3;4670:39;4663:46;;4443:272;4351:364;;;;:::o;4721:377::-;4827:3;4855:39;4888:5;4855:39;:::i;:::-;4910:89;4992:6;4987:3;4910:89;:::i;:::-;4903:96;;5008:52;5053:6;5048:3;5041:4;5034:5;5030:16;5008:52;:::i;:::-;5085:6;5080:3;5076:16;5069:23;;4831:267;4721:377;;;;:::o;5104:366::-;5246:3;5267:67;5331:2;5326:3;5267:67;:::i;:::-;5260:74;;5343:93;5432:3;5343:93;:::i;:::-;5461:2;5456:3;5452:12;5445:19;;5104:366;;;:::o;5476:::-;5618:3;5639:67;5703:2;5698:3;5639:67;:::i;:::-;5632:74;;5715:93;5804:3;5715:93;:::i;:::-;5833:2;5828:3;5824:12;5817:19;;5476:366;;;:::o;5848:::-;5990:3;6011:67;6075:2;6070:3;6011:67;:::i;:::-;6004:74;;6087:93;6176:3;6087:93;:::i;:::-;6205:2;6200:3;6196:12;6189:19;;5848:366;;;:::o;6220:::-;6362:3;6383:67;6447:2;6442:3;6383:67;:::i;:::-;6376:74;;6459:93;6548:3;6459:93;:::i;:::-;6577:2;6572:3;6568:12;6561:19;;6220:366;;;:::o;6592:::-;6734:3;6755:67;6819:2;6814:3;6755:67;:::i;:::-;6748:74;;6831:93;6920:3;6831:93;:::i;:::-;6949:2;6944:3;6940:12;6933:19;;6592:366;;;:::o;6964:::-;7106:3;7127:67;7191:2;7186:3;7127:67;:::i;:::-;7120:74;;7203:93;7292:3;7203:93;:::i;:::-;7321:2;7316:3;7312:12;7305:19;;6964:366;;;:::o;7336:::-;7478:3;7499:67;7563:2;7558:3;7499:67;:::i;:::-;7492:74;;7575:93;7664:3;7575:93;:::i;:::-;7693:2;7688:3;7684:12;7677:19;;7336:366;;;:::o;7708:::-;7850:3;7871:67;7935:2;7930:3;7871:67;:::i;:::-;7864:74;;7947:93;8036:3;7947:93;:::i;:::-;8065:2;8060:3;8056:12;8049:19;;7708:366;;;:::o;8080:::-;8222:3;8243:67;8307:2;8302:3;8243:67;:::i;:::-;8236:74;;8319:93;8408:3;8319:93;:::i;:::-;8437:2;8432:3;8428:12;8421:19;;8080:366;;;:::o;8452:::-;8594:3;8615:67;8679:2;8674:3;8615:67;:::i;:::-;8608:74;;8691:93;8780:3;8691:93;:::i;:::-;8809:2;8804:3;8800:12;8793:19;;8452:366;;;:::o;8824:::-;8966:3;8987:67;9051:2;9046:3;8987:67;:::i;:::-;8980:74;;9063:93;9152:3;9063:93;:::i;:::-;9181:2;9176:3;9172:12;9165:19;;8824:366;;;:::o;9196:402::-;9356:3;9377:85;9459:2;9454:3;9377:85;:::i;:::-;9370:92;;9471:93;9560:3;9471:93;:::i;:::-;9589:2;9584:3;9580:12;9573:19;;9196:402;;;:::o;9604:366::-;9746:3;9767:67;9831:2;9826:3;9767:67;:::i;:::-;9760:74;;9843:93;9932:3;9843:93;:::i;:::-;9961:2;9956:3;9952:12;9945:19;;9604:366;;;:::o;9976:402::-;10136:3;10157:85;10239:2;10234:3;10157:85;:::i;:::-;10150:92;;10251:93;10340:3;10251:93;:::i;:::-;10369:2;10364:3;10360:12;10353:19;;9976:402;;;:::o;10384:366::-;10526:3;10547:67;10611:2;10606:3;10547:67;:::i;:::-;10540:74;;10623:93;10712:3;10623:93;:::i;:::-;10741:2;10736:3;10732:12;10725:19;;10384:366;;;:::o;10756:::-;10898:3;10919:67;10983:2;10978:3;10919:67;:::i;:::-;10912:74;;10995:93;11084:3;10995:93;:::i;:::-;11113:2;11108:3;11104:12;11097:19;;10756:366;;;:::o;11128:118::-;11215:24;11233:5;11215:24;:::i;:::-;11210:3;11203:37;11128:118;;:::o;11252:112::-;11335:22;11351:5;11335:22;:::i;:::-;11330:3;11323:35;11252:112;;:::o;11370:967::-;11752:3;11774:148;11918:3;11774:148;:::i;:::-;11767:155;;11939:95;12030:3;12021:6;11939:95;:::i;:::-;11932:102;;12051:148;12195:3;12051:148;:::i;:::-;12044:155;;12216:95;12307:3;12298:6;12216:95;:::i;:::-;12209:102;;12328:3;12321:10;;11370:967;;;;;:::o;12343:222::-;12436:4;12474:2;12463:9;12459:18;12451:26;;12487:71;12555:1;12544:9;12540:17;12531:6;12487:71;:::i;:::-;12343:222;;;;:::o;12571:210::-;12658:4;12696:2;12685:9;12681:18;12673:26;;12709:65;12771:1;12760:9;12756:17;12747:6;12709:65;:::i;:::-;12571:210;;;;:::o;12787:222::-;12880:4;12918:2;12907:9;12903:18;12895:26;;12931:71;12999:1;12988:9;12984:17;12975:6;12931:71;:::i;:::-;12787:222;;;;:::o;13015:313::-;13128:4;13166:2;13155:9;13151:18;13143:26;;13215:9;13209:4;13205:20;13201:1;13190:9;13186:17;13179:47;13243:78;13316:4;13307:6;13243:78;:::i;:::-;13235:86;;13015:313;;;;:::o;13334:419::-;13500:4;13538:2;13527:9;13523:18;13515:26;;13587:9;13581:4;13577:20;13573:1;13562:9;13558:17;13551:47;13615:131;13741:4;13615:131;:::i;:::-;13607:139;;13334:419;;;:::o;13759:::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:::-;14350:4;14388:2;14377:9;14373:18;14365:26;;14437:9;14431:4;14427:20;14423:1;14412:9;14408:17;14401:47;14465:131;14591:4;14465:131;:::i;:::-;14457:139;;14184:419;;;:::o;14609:::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:131;15016:4;14890:131;:::i;:::-;14882:139;;14609:419;;;:::o;15034:::-;15200:4;15238:2;15227:9;15223:18;15215:26;;15287:9;15281:4;15277:20;15273:1;15262:9;15258:17;15251:47;15315:131;15441:4;15315:131;:::i;:::-;15307:139;;15034:419;;;:::o;15459:::-;15625:4;15663:2;15652:9;15648:18;15640:26;;15712:9;15706:4;15702:20;15698:1;15687:9;15683:17;15676:47;15740:131;15866:4;15740:131;:::i;:::-;15732:139;;15459:419;;;:::o;15884:::-;16050:4;16088:2;16077:9;16073:18;16065:26;;16137:9;16131:4;16127:20;16123:1;16112:9;16108:17;16101:47;16165:131;16291:4;16165:131;:::i;:::-;16157:139;;15884:419;;;:::o;16309:::-;16475:4;16513:2;16502:9;16498:18;16490:26;;16562:9;16556:4;16552:20;16548:1;16537:9;16533:17;16526:47;16590:131;16716:4;16590:131;:::i;:::-;16582:139;;16309:419;;;:::o;16734:::-;16900:4;16938:2;16927:9;16923:18;16915:26;;16987:9;16981:4;16977:20;16973:1;16962:9;16958:17;16951:47;17015:131;17141:4;17015:131;:::i;:::-;17007:139;;16734:419;;;:::o;17159:::-;17325:4;17363:2;17352:9;17348:18;17340:26;;17412:9;17406:4;17402:20;17398:1;17387:9;17383:17;17376:47;17440:131;17566:4;17440:131;:::i;:::-;17432:139;;17159:419;;;:::o;17584:::-;17750:4;17788:2;17777:9;17773:18;17765:26;;17837:9;17831:4;17827:20;17823:1;17812:9;17808:17;17801:47;17865:131;17991:4;17865:131;:::i;:::-;17857:139;;17584:419;;;:::o;18009:::-;18175:4;18213:2;18202:9;18198:18;18190:26;;18262:9;18256:4;18252:20;18248:1;18237:9;18233:17;18226:47;18290:131;18416:4;18290:131;:::i;:::-;18282:139;;18009:419;;;:::o;18434:::-;18600:4;18638:2;18627:9;18623:18;18615:26;;18687:9;18681:4;18677:20;18673:1;18662:9;18658:17;18651:47;18715:131;18841:4;18715:131;:::i;:::-;18707:139;;18434:419;;;:::o;18859:::-;19025:4;19063:2;19052:9;19048:18;19040:26;;19112:9;19106:4;19102:20;19098:1;19087:9;19083:17;19076:47;19140:131;19266:4;19140:131;:::i;:::-;19132:139;;18859:419;;;:::o;19284:222::-;19377:4;19415:2;19404:9;19400:18;19392:26;;19428:71;19496:1;19485:9;19481:17;19472:6;19428:71;:::i;:::-;19284:222;;;;:::o;19512:214::-;19601:4;19639:2;19628:9;19624:18;19616:26;;19652:67;19716:1;19705:9;19701:17;19692:6;19652:67;:::i;:::-;19512:214;;;;:::o;19813:99::-;19865:6;19899:5;19893:12;19883:22;;19813:99;;;:::o;19918:169::-;20002:11;20036:6;20031:3;20024:19;20076:4;20071:3;20067:14;20052:29;;19918:169;;;;:::o;20093:148::-;20195:11;20232:3;20217:18;;20093:148;;;;:::o;20247:305::-;20287:3;20306:20;20324:1;20306:20;:::i;:::-;20301:25;;20340:20;20358:1;20340:20;:::i;:::-;20335:25;;20494:1;20426:66;20422:74;20419:1;20416:81;20413:107;;;20500:18;;:::i;:::-;20413:107;20544:1;20541;20537:9;20530:16;;20247:305;;;;:::o;20558:348::-;20598:7;20621:20;20639:1;20621:20;:::i;:::-;20616:25;;20655:20;20673:1;20655:20;:::i;:::-;20650:25;;20843:1;20775:66;20771:74;20768:1;20765:81;20760:1;20753:9;20746:17;20742:105;20739:131;;;20850:18;;:::i;:::-;20739:131;20898:1;20895;20891:9;20880:20;;20558:348;;;;:::o;20912:191::-;20952:4;20972:20;20990:1;20972:20;:::i;:::-;20967:25;;21006:20;21024:1;21006:20;:::i;:::-;21001:25;;21045:1;21042;21039:8;21036:34;;;21050:18;;:::i;:::-;21036:34;21095:1;21092;21088:9;21080:17;;20912:191;;;;:::o;21109:96::-;21146:7;21175:24;21193:5;21175:24;:::i;:::-;21164:35;;21109:96;;;:::o;21211:90::-;21245:7;21288:5;21281:13;21274:21;21263:32;;21211:90;;;:::o;21307:77::-;21344:7;21373:5;21362:16;;21307:77;;;:::o;21390:149::-;21426:7;21466:66;21459:5;21455:78;21444:89;;21390:149;;;:::o;21545:126::-;21582:7;21622:42;21615:5;21611:54;21600:65;;21545:126;;;:::o;21677:77::-;21714:7;21743:5;21732:16;;21677:77;;;:::o;21760:86::-;21795:7;21835:4;21828:5;21824:16;21813:27;;21760:86;;;:::o;21852:307::-;21920:1;21930:113;21944:6;21941:1;21938:13;21930:113;;;22029:1;22024:3;22020:11;22014:18;22010:1;22005:3;22001:11;21994:39;21966:2;21963:1;21959:10;21954:15;;21930:113;;;22061:6;22058:1;22055:13;22052:101;;;22141:1;22132:6;22127:3;22123:16;22116:27;22052:101;21901:258;21852:307;;;:::o;22165:171::-;22204:3;22227:24;22245:5;22227:24;:::i;:::-;22218:33;;22273:4;22266:5;22263:15;22260:41;;;22281:18;;:::i;:::-;22260:41;22328:1;22321:5;22317:13;22310:20;;22165:171;;;:::o;22342:320::-;22386:6;22423:1;22417:4;22413:12;22403:22;;22470:1;22464:4;22460:12;22491:18;22481:81;;22547:4;22539:6;22535:17;22525:27;;22481:81;22609:2;22601:6;22598:14;22578:18;22575:38;22572:84;;;22628:18;;:::i;:::-;22572:84;22393:269;22342:320;;;:::o;22668:180::-;22716:77;22713:1;22706:88;22813:4;22810:1;22803:15;22837:4;22834:1;22827:15;22854:180;22902:77;22899:1;22892:88;22999:4;22996:1;22989:15;23023:4;23020:1;23013:15;23040:180;23088:77;23085:1;23078:88;23185:4;23182:1;23175:15;23209:4;23206:1;23199:15;23226:180;23274:77;23271:1;23264:88;23371:4;23368:1;23361:15;23395:4;23392:1;23385:15;23535:117;23644:1;23641;23634:12;23658:102;23699:6;23750:2;23746:7;23741:2;23734:5;23730:14;23726:28;23716:38;;23658:102;;;:::o;23766:182::-;23906:34;23902:1;23894:6;23890:14;23883:58;23766:182;:::o;23954:222::-;24094:34;24090:1;24082:6;24078:14;24071:58;24163:5;24158:2;24150:6;24146:15;24139:30;23954:222;:::o;24182:170::-;24322:22;24318:1;24310:6;24306:14;24299:46;24182:170;:::o;24358:221::-;24498:34;24494:1;24486:6;24482:14;24475:58;24567:4;24562:2;24554:6;24550:15;24543:29;24358:221;:::o;24585:::-;24725:34;24721:1;24713:6;24709:14;24702:58;24794:4;24789:2;24781:6;24777:15;24770:29;24585:221;:::o;24812:179::-;24952:31;24948:1;24940:6;24936:14;24929:55;24812:179;:::o;24997:225::-;25137:34;25133:1;25125:6;25121:14;25114:58;25206:8;25201:2;25193:6;25189:15;25182:33;24997:225;:::o;25228:166::-;25368:18;25364:1;25356:6;25352:14;25345:42;25228:166;:::o;25400:220::-;25540:34;25536:1;25528:6;25524:14;25517:58;25609:3;25604:2;25596:6;25592:15;25585:28;25400:220;:::o;25626:224::-;25766:34;25762:1;25754:6;25750:14;25743:58;25835:7;25830:2;25822:6;25818:15;25811:32;25626:224;:::o;25856:223::-;25996:34;25992:1;25984:6;25980:14;25973:58;26065:6;26060:2;26052:6;26048:15;26041:31;25856:223;:::o;26085:173::-;26225:25;26221:1;26213:6;26209:14;26202:49;26085:173;:::o;26264:224::-;26404:34;26400:1;26392:6;26388:14;26381:58;26473:7;26468:2;26460:6;26456:15;26449:32;26264:224;:::o;26494:167::-;26634:19;26630:1;26622:6;26618:14;26611:43;26494:167;:::o;26667:234::-;26807:34;26803:1;26795:6;26791:14;26784:58;26876:17;26871:2;26863:6;26859:15;26852:42;26667:234;:::o;26907:181::-;27047:33;27043:1;27035:6;27031:14;27024:57;26907:181;:::o;27094:122::-;27167:24;27185:5;27167:24;:::i;:::-;27160:5;27157:35;27147:63;;27206:1;27203;27196:12;27147:63;27094:122;:::o;27222:::-;27295:24;27313:5;27295:24;:::i;:::-;27288:5;27285:35;27275:63;;27334:1;27331;27324:12;27275:63;27222:122;:::o;27350:120::-;27422:23;27439:5;27422:23;:::i;:::-;27415:5;27412:34;27402:62;;27460:1;27457;27450:12;27402:62;27350:120;:::o;27476:122::-;27549:24;27567:5;27549:24;:::i;:::-;27542:5;27539:35;27529:63;;27588:1;27585;27578:12;27529:63;27476:122;:::o
Swarm Source
ipfs://da6e8dd1e2f827b099e2f641a4b845e488b668b6661405c35980f7b9d2ad2603
Loading...
Loading
Loading...
Loading
OVERVIEW
Alphadex is a multichain DEX, Farming and Launchpad ecosystem on Moonriver and Moonbeam. Baby ROAR is the reward token for the Alphadex ROAR V2 FarmsLoading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.