Token BRZ
Overview ERC-20
Price
$0.21 @ 0.371517 MATIC (+2.81%)
Fully Diluted Market Cap
Total Supply:
100,000,000 BRZ
Holders:
3,352 addresses
Transfers:
-
Contract:
Decimals:
4
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
BRZ is the first Brazilian stablecoin in circulation. It allows Brazilians to directly ramp up investments in foreign exchanges, to trade a Brazilian Real (BRL) pegged stablecoin on a global scale, and enables sending and receiving BRL pegged tokens safely and instantly.Market
Volume (24H) | : | $5,585.71 |
Market Capitalization | : | $0.00 |
Circulating Supply | : | 0.00 BRZ |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BRZToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ /** *Submitted for verification at Etherscan.io on 2021-05-05 */ // SPDX-License-Identifier: MIT // File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol pragma solidity 0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: node_modules\@openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol /** * @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: node_modules\@openzeppelin\contracts\utils\Context.sol /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol /** * @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 guidelines: functions revert instead * of 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 defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 { } } // File: node_modules\@openzeppelin\contracts\security\Pausable.sol /** * @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\token\ERC20\extensions\ERC20Pausable.sol /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } // File: node_modules\@openzeppelin\contracts\utils\Strings.sol /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol /** * @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: node_modules\@openzeppelin\contracts\utils\introspection\ERC165.sol /** * @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: node_modules\@openzeppelin\contracts\access\AccessControl.sol /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if(!hasRole(role, account)) { revert(string(abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ))); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `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}. * ==== */ 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 { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: node_modules\@openzeppelin\contracts\utils\structs\EnumerableSet.sol /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin\contracts\access\AccessControlEnumerable.sol /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } } // File: contracts\Token.sol contract BRZToken is Context, AccessControlEnumerable, ERC20Pausable { bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); constructor() ERC20("BRZ", "BRZ") { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(ADMIN_ROLE, _msgSender()); } function decimals() public pure override returns (uint8) { return 4; } function mint(address to, uint256 amount) public { require(hasRole(ADMIN_ROLE, _msgSender()), "Token: must have admin role to mint"); _mint(to, amount); } function burn(uint256 amount) public { require(hasRole(ADMIN_ROLE, _msgSender()), "Token: must have admin role to burn"); _burn(_msgSender(), amount); } function burnFrom(address account, uint256 amount) public { require(hasRole(ADMIN_ROLE, _msgSender()), "Token: must have admin role to burnFrom"); uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } function pause() public { require(hasRole(ADMIN_ROLE, _msgSender()), "Token: must have admin role to pause"); _pause(); } function unpause() public { require(hasRole(ADMIN_ROLE, _msgSender()), "Token: must have admin role to unpause"); _unpause(); } /** * @dev Manage tokens sent to this contract */ function tokenBalanceOf(address addressToken) public view returns (string memory, uint256) { IERC20Metadata token = IERC20Metadata(addressToken); return (token.symbol(), token.balanceOf(address(this))); } function tokenWithdraw(address addressToken) public { require(hasRole(ADMIN_ROLE, _msgSender()), "Token: must have admin role to tokenWithdraw"); IERC20 token = IERC20(addressToken); uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"addressToken","type":"address"}],"name":"tokenBalanceOf","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToken","type":"address"}],"name":"tokenWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600381526020017f42525a00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42525a0000000000000000000000000000000000000000000000000000000000815250816005908051906020019062000096929190620003ce565b508060069080519060200190620000af929190620003ce565b5050506000600760006101000a81548160ff021916908315150217905550620000f16000801b620000e56200013860201b60201c565b6200014060201b60201c565b620001327fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775620001266200013860201b60201c565b6200014060201b60201c565b620004e3565b600033905090565b6200015782826200018860201b620012a41760201c565b6200018381600160008581526020019081526020016000206200019e60201b620012b21790919060201c565b505050565b6200019a8282620001d660201b60201c565b5050565b6000620001ce836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002c760201b60201c565b905092915050565b620001e882826200034160201b60201c565b620002c357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002686200013860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002db8383620003ab60201b60201c565b620003365782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200033b565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620003dc906200047e565b90600052602060002090601f0160209004810192826200040057600085556200044c565b82601f106200041b57805160ff19168380011785556200044c565b828001600101855582156200044c579182015b828111156200044b5782518255916020019190600101906200042e565b5b5090506200045b91906200045f565b5090565b5b808211156200047a57600081600090555060010162000460565b5090565b600060028204905060018216806200049757607f821691505b60208210811415620004ae57620004ad620004b4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c8e80620004f36000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a217fddf116100a2578063ca15c87311610071578063ca15c87314610542578063d547741f14610572578063dd62ed3e1461058e578063e42c08f2146105be576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063b555856214610526576101cf565b80638456cb59116100de5780638456cb59146104205780639010d07c1461042a57806391d148541461045a57806395d89b411461048a576101cf565b806370a08231146103b657806375b238fc146103e657806379cc679014610404576101cf565b8063313ce567116101715780633f4ba83a1161014b5780633f4ba83a1461035657806340c10f191461036057806342966c681461037c5780635c975abb14610398576101cf565b8063313ce567146102ec57806336568abe1461030a5780633950935114610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e991906128d0565b6105ef565b6040516101fb9190612e2a565b60405180910390f35b61020c610669565b6040516102199190612e60565b60405180910390f35b61023c600480360381019061023791906127ca565b6106fb565b6040516102499190612e2a565b60405180910390f35b61025a610719565b6040516102679190613192565b60405180910390f35b61028a6004803603810190610285919061277b565b610723565b6040516102979190612e2a565b60405180910390f35b6102ba60048036038101906102b5919061282f565b610824565b6040516102c79190612e45565b60405180910390f35b6102ea60048036038101906102e59190612858565b610843565b005b6102f4610877565b60405161030191906131ad565b60405180910390f35b610324600480360381019061031f9190612858565b610880565b005b610340600480360381019061033b91906127ca565b6108b4565b60405161034d9190612e2a565b60405180910390f35b61035e610960565b005b61037a600480360381019061037591906127ca565b6109da565b005b6103966004803603810190610391919061293a565b610a58565b005b6103a0610adc565b6040516103ad9190612e2a565b60405180910390f35b6103d060048036038101906103cb9190612716565b610af3565b6040516103dd9190613192565b60405180910390f35b6103ee610b3c565b6040516103fb9190612e45565b60405180910390f35b61041e600480360381019061041991906127ca565b610b60565b005b610428610c54565b005b610444600480360381019061043f9190612894565b610cce565b6040516104519190612de6565b60405180910390f35b610474600480360381019061046f9190612858565b610cfd565b6040516104819190612e2a565b60405180910390f35b610492610d67565b60405161049f9190612e60565b60405180910390f35b6104b0610df9565b6040516104bd9190612e45565b60405180910390f35b6104e060048036038101906104db91906127ca565b610e00565b6040516104ed9190612e2a565b60405180910390f35b610510600480360381019061050b91906127ca565b610ef4565b60405161051d9190612e2a565b60405180910390f35b610540600480360381019061053b9190612716565b610f12565b005b61055c6004803603810190610557919061282f565b6110a7565b6040516105699190613192565b60405180910390f35b61058c60048036038101906105879190612858565b6110cb565b005b6105a860048036038101906105a3919061273f565b6110ff565b6040516105b59190613192565b60405180910390f35b6105d860048036038101906105d39190612716565b611186565b6040516105e6929190612e82565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106625750610661826112e2565b5b9050919050565b60606005805461067890613411565b80601f01602080910402602001604051908101604052809291908181526020018280546106a490613411565b80156106f15780601f106106c6576101008083540402835291602001916106f1565b820191906000526020600020905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b600061070f61070861135c565b8484611364565b6001905092915050565b6000600454905090565b600061073084848461152f565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061077b61135c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290613012565b60405180910390fd5b6108188561080761135c565b858461081391906132f5565b611364565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61084d82826117b1565b61087281600160008581526020019081526020016000206112b290919063ffffffff16565b505050565b60006004905090565b61088a82826117da565b6108af816001600085815260200190815260200160002061185d90919063ffffffff16565b505050565b60006109566108c161135c565b8484600360006108cf61135c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109519190613245565b611364565b6001905092915050565b6109917fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561098c61135c565b610cfd565b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790612fd2565b60405180910390fd5b6109d861188d565b565b610a0b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610a0661135c565b610cfd565b610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906130d2565b60405180910390fd5b610a54828261192f565b5050565b610a897fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610a8461135c565b610cfd565b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90613032565b60405180910390fd5b610ad9610ad361135c565b82611a84565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b610b917fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610b8c61135c565b610cfd565b610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790613052565b60405180910390fd5b6000610be383610bde61135c565b6110ff565b905081811015610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613072565b60405180910390fd5b610c4583610c3461135c565b8484610c4091906132f5565b611364565b610c4f8383611a84565b505050565b610c857fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610c8061135c565b610cfd565b610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90612f92565b60405180910390fd5b610ccc611c5a565b565b6000610cf58260016000868152602001908152602001600020611cfd90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610d7690613411565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613411565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b6000801b81565b60008060036000610e0f61135c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390613112565b60405180910390fd5b610ee9610ed761135c565b858584610ee491906132f5565b611364565b600191505092915050565b6000610f08610f0161135c565b848461152f565b6001905092915050565b610f437fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610f3e61135c565b610cfd565b610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7990612ff2565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fc29190612de6565b60206040518083038186803b158015610fda57600080fd5b505afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110129190612963565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161104f929190612e01565b602060405180830381600087803b15801561106957600080fd5b505af115801561107d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a19190612806565b50505050565b60006110c460016000848152602001908152602001600020611d17565b9050919050565b6110d58282611d2c565b6110fa816001600085815260200190815260200160002061185d90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60606000808390508073ffffffffffffffffffffffffffffffffffffffff166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156111d457600080fd5b505afa1580156111e8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061121191906128f9565b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124a9190612de6565b60206040518083038186803b15801561126257600080fd5b505afa158015611276573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129a9190612963565b9250925050915091565b6112ae8282611d55565b5050565b60006112da836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611e35565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611355575061135482611ea5565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906130f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90612f52565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115229190613192565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561159f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611596906130b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690612ef2565b60405180910390fd5b61161a838383611f0f565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890612f72565b60405180910390fd5b81816116ad91906132f5565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173f9190613245565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117a39190613192565b60405180910390a350505050565b6117ba82610824565b6117cb816117c661135c565b611f67565b6117d58383611d55565b505050565b6117e261135c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690613132565b60405180910390fd5b6118598282612004565b5050565b6000611885836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6120e5565b905092915050565b611895610adc565b6118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90612f12565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61191861135c565b6040516119259190612de6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613152565b60405180910390fd5b6119ab60008383611f0f565b80600460008282546119bd9190613245565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a139190613245565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a789190613192565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613092565b60405180910390fd5b611b0082600083611f0f565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90612f32565b60405180910390fd5b8181611b9391906132f5565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611be891906132f5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4d9190613192565b60405180910390a3505050565b611c62610adc565b15611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990612fb2565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ce661135c565b604051611cf39190612de6565b60405180910390a1565b6000611d0c8360000183612263565b60001c905092915050565b6000611d25826000016122fd565b9050919050565b611d3582610824565b611d4681611d4161135c565b611f67565b611d508383612004565b505050565b611d5f8282610cfd565b611e3157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611dd661135c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611e41838361230e565b611e9a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611e9f565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611f1a838383612331565b611f22610adc565b15611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990613172565b60405180910390fd5b505050565b611f718282610cfd565b61200057611f968173ffffffffffffffffffffffffffffffffffffffff166014612336565b611fa48360001c6020612336565b604051602001611fb5929190612dac565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff79190612e60565b60405180910390fd5b5050565b61200e8282610cfd565b156120e157600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061208661135c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461225757600060018261211791906132f5565b905060006001866000018054905061212f91906132f5565b9050600086600001828154811061216f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808760000184815481106121b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555083876001016000838152602001908152602001600020819055508660000180548061221b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061225d565b60009150505b92915050565b6000818360000180549050116122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590612eb2565b60405180910390fd5b8260000182815481106122ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b606060006002836002612349919061329b565b6123539190613245565b67ffffffffffffffff811115612392577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123c45781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612422577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106124ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026124ec919061329b565b6124f69190613245565b90505b60018111156125e2577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061255e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061259b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806125db906133e7565b90506124f9565b5060008414612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90612ed2565b60405180910390fd5b8091505092915050565b600061264361263e846131ed565b6131c8565b90508281526020810184848401111561265b57600080fd5b6126668482856133b4565b509392505050565b60008135905061267d81613be5565b92915050565b60008151905061269281613bfc565b92915050565b6000813590506126a781613c13565b92915050565b6000813590506126bc81613c2a565b92915050565b600082601f8301126126d357600080fd5b81516126e3848260208601612630565b91505092915050565b6000813590506126fb81613c41565b92915050565b60008151905061271081613c41565b92915050565b60006020828403121561272857600080fd5b60006127368482850161266e565b91505092915050565b6000806040838503121561275257600080fd5b60006127608582860161266e565b92505060206127718582860161266e565b9150509250929050565b60008060006060848603121561279057600080fd5b600061279e8682870161266e565b93505060206127af8682870161266e565b92505060406127c0868287016126ec565b9150509250925092565b600080604083850312156127dd57600080fd5b60006127eb8582860161266e565b92505060206127fc858286016126ec565b9150509250929050565b60006020828403121561281857600080fd5b600061282684828501612683565b91505092915050565b60006020828403121561284157600080fd5b600061284f84828501612698565b91505092915050565b6000806040838503121561286b57600080fd5b600061287985828601612698565b925050602061288a8582860161266e565b9150509250929050565b600080604083850312156128a757600080fd5b60006128b585828601612698565b92505060206128c6858286016126ec565b9150509250929050565b6000602082840312156128e257600080fd5b60006128f0848285016126ad565b91505092915050565b60006020828403121561290b57600080fd5b600082015167ffffffffffffffff81111561292557600080fd5b612931848285016126c2565b91505092915050565b60006020828403121561294c57600080fd5b600061295a848285016126ec565b91505092915050565b60006020828403121561297557600080fd5b600061298384828501612701565b91505092915050565b61299581613329565b82525050565b6129a48161333b565b82525050565b6129b381613347565b82525050565b60006129c48261321e565b6129ce8185613229565b93506129de8185602086016133b4565b6129e781613501565b840191505092915050565b60006129fd8261321e565b612a07818561323a565b9350612a178185602086016133b4565b80840191505092915050565b6000612a30602283613229565b9150612a3b82613512565b604082019050919050565b6000612a53602083613229565b9150612a5e82613561565b602082019050919050565b6000612a76602383613229565b9150612a818261358a565b604082019050919050565b6000612a99601483613229565b9150612aa4826135d9565b602082019050919050565b6000612abc602283613229565b9150612ac782613602565b604082019050919050565b6000612adf602283613229565b9150612aea82613651565b604082019050919050565b6000612b02602683613229565b9150612b0d826136a0565b604082019050919050565b6000612b25602483613229565b9150612b30826136ef565b604082019050919050565b6000612b48601083613229565b9150612b538261373e565b602082019050919050565b6000612b6b602683613229565b9150612b7682613767565b604082019050919050565b6000612b8e602c83613229565b9150612b99826137b6565b604082019050919050565b6000612bb1602883613229565b9150612bbc82613805565b604082019050919050565b6000612bd4602383613229565b9150612bdf82613854565b604082019050919050565b6000612bf7602783613229565b9150612c02826138a3565b604082019050919050565b6000612c1a602483613229565b9150612c25826138f2565b604082019050919050565b6000612c3d602183613229565b9150612c4882613941565b604082019050919050565b6000612c60602583613229565b9150612c6b82613990565b604082019050919050565b6000612c83602383613229565b9150612c8e826139df565b604082019050919050565b6000612ca6602483613229565b9150612cb182613a2e565b604082019050919050565b6000612cc960178361323a565b9150612cd482613a7d565b601782019050919050565b6000612cec602583613229565b9150612cf782613aa6565b604082019050919050565b6000612d0f60118361323a565b9150612d1a82613af5565b601182019050919050565b6000612d32602f83613229565b9150612d3d82613b1e565b604082019050919050565b6000612d55601f83613229565b9150612d6082613b6d565b602082019050919050565b6000612d78602a83613229565b9150612d8382613b96565b604082019050919050565b612d978161339d565b82525050565b612da6816133a7565b82525050565b6000612db782612cbc565b9150612dc382856129f2565b9150612dce82612d02565b9150612dda82846129f2565b91508190509392505050565b6000602082019050612dfb600083018461298c565b92915050565b6000604082019050612e16600083018561298c565b612e236020830184612d8e565b9392505050565b6000602082019050612e3f600083018461299b565b92915050565b6000602082019050612e5a60008301846129aa565b92915050565b60006020820190508181036000830152612e7a81846129b9565b905092915050565b60006040820190508181036000830152612e9c81856129b9565b9050612eab6020830184612d8e565b9392505050565b60006020820190508181036000830152612ecb81612a23565b9050919050565b60006020820190508181036000830152612eeb81612a46565b9050919050565b60006020820190508181036000830152612f0b81612a69565b9050919050565b60006020820190508181036000830152612f2b81612a8c565b9050919050565b60006020820190508181036000830152612f4b81612aaf565b9050919050565b60006020820190508181036000830152612f6b81612ad2565b9050919050565b60006020820190508181036000830152612f8b81612af5565b9050919050565b60006020820190508181036000830152612fab81612b18565b9050919050565b60006020820190508181036000830152612fcb81612b3b565b9050919050565b60006020820190508181036000830152612feb81612b5e565b9050919050565b6000602082019050818103600083015261300b81612b81565b9050919050565b6000602082019050818103600083015261302b81612ba4565b9050919050565b6000602082019050818103600083015261304b81612bc7565b9050919050565b6000602082019050818103600083015261306b81612bea565b9050919050565b6000602082019050818103600083015261308b81612c0d565b9050919050565b600060208201905081810360008301526130ab81612c30565b9050919050565b600060208201905081810360008301526130cb81612c53565b9050919050565b600060208201905081810360008301526130eb81612c76565b9050919050565b6000602082019050818103600083015261310b81612c99565b9050919050565b6000602082019050818103600083015261312b81612cdf565b9050919050565b6000602082019050818103600083015261314b81612d25565b9050919050565b6000602082019050818103600083015261316b81612d48565b9050919050565b6000602082019050818103600083015261318b81612d6b565b9050919050565b60006020820190506131a76000830184612d8e565b92915050565b60006020820190506131c26000830184612d9d565b92915050565b60006131d26131e3565b90506131de8282613443565b919050565b6000604051905090565b600067ffffffffffffffff821115613208576132076134d2565b5b61321182613501565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006132508261339d565b915061325b8361339d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132905761328f613474565b5b828201905092915050565b60006132a68261339d565b91506132b18361339d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132ea576132e9613474565b5b828202905092915050565b60006133008261339d565b915061330b8361339d565b92508282101561331e5761331d613474565b5b828203905092915050565b60006133348261337d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156133d25780820151818401526020810190506133b7565b838111156133e1576000848401525b50505050565b60006133f28261339d565b9150600082141561340657613405613474565b5b600182039050919050565b6000600282049050600182168061342957607f821691505b6020821081141561343d5761343c6134a3565b5b50919050565b61344c82613501565b810181811067ffffffffffffffff8211171561346b5761346a6134d2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207060008201527f6175736500000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207560008201527f6e70617573650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207460008201527f6f6b656e57697468647261770000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206260008201527f75726e0000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206260008201527f75726e46726f6d00000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b613bee81613329565b8114613bf957600080fd5b50565b613c058161333b565b8114613c1057600080fd5b50565b613c1c81613347565b8114613c2757600080fd5b50565b613c3381613351565b8114613c3e57600080fd5b50565b613c4a8161339d565b8114613c5557600080fd5b5056fea2646970667358221220552d752b2444e014d36acc2af9ac7146e4a5259a548365cae9ba946f60d4e36164736f6c63430008040033
Deployed ByteCode Sourcemap
43569:2143:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41200:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6534:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8701:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7654:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9352:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27565:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42571:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43869:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43094:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10183:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44917:150;;;:::i;:::-;;43961:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44150:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16360:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7825:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43648:60;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44333:420;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44765:144;;;:::i;:::-;;42026:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26563:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6753:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24528:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10901:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8165:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45391:312;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42345:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42829:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8403:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45144:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41200:227;41285:4;41324:42;41309:57;;;:11;:57;;;;:110;;;;41383:36;41407:11;41383:23;:36::i;:::-;41309:110;41302:117;;41200:227;;;:::o;6534:100::-;6588:13;6621:5;6614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6534:100;:::o;8701:169::-;8784:4;8801:39;8810:12;:10;:12::i;:::-;8824:7;8833:6;8801:8;:39::i;:::-;8858:4;8851:11;;8701:169;;;;:::o;7654:108::-;7715:7;7742:12;;7735:19;;7654:108;:::o;9352:422::-;9458:4;9475:36;9485:6;9493:9;9504:6;9475:9;:36::i;:::-;9524:24;9551:11;:19;9563:6;9551:19;;;;;;;;;;;;;;;:33;9571:12;:10;:12::i;:::-;9551:33;;;;;;;;;;;;;;;;9524:60;;9623:6;9603:16;:26;;9595:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9685:57;9694:6;9702:12;:10;:12::i;:::-;9735:6;9716:16;:25;;;;:::i;:::-;9685:8;:57::i;:::-;9762:4;9755:11;;;9352:422;;;;;:::o;27565:123::-;27631:7;27658:6;:12;27665:4;27658:12;;;;;;;;;;;:22;;;27651:29;;27565:123;;;:::o;42571:165::-;42656:30;42672:4;42678:7;42656:15;:30::i;:::-;42697:31;42720:7;42697:12;:18;42710:4;42697:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;42571:165;;:::o;43869:84::-;43919:5;43944:1;43937:8;;43869:84;:::o;43094:174::-;43182:33;43201:4;43207:7;43182:18;:33::i;:::-;43226:34;43252:7;43226:12;:18;43239:4;43226:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;43094:174;;:::o;10183:215::-;10271:4;10288:80;10297:12;:10;:12::i;:::-;10311:7;10357:10;10320:11;:25;10332:12;:10;:12::i;:::-;10320:25;;;;;;;;;;;;;;;:34;10346:7;10320:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10288:8;:80::i;:::-;10386:4;10379:11;;10183:215;;;;:::o;44917:150::-;44962:33;43685:23;44982:12;:10;:12::i;:::-;44962:7;:33::i;:::-;44954:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;45049:10;:8;:10::i;:::-;44917:150::o;43961:177::-;44029:33;43685:23;44049:12;:10;:12::i;:::-;44029:7;:33::i;:::-;44021:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44113:17;44119:2;44123:6;44113:5;:17::i;:::-;43961:177;;:::o;44150:175::-;44206:33;43685:23;44226:12;:10;:12::i;:::-;44206:7;:33::i;:::-;44198:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44290:27;44296:12;:10;:12::i;:::-;44310:6;44290:5;:27::i;:::-;44150:175;:::o;16360:86::-;16407:4;16431:7;;;;;;;;;;;16424:14;;16360:86;:::o;7825:127::-;7899:7;7926:9;:18;7936:7;7926:18;;;;;;;;;;;;;;;;7919:25;;7825:127;;;:::o;43648:60::-;43685:23;43648:60;:::o;44333:420::-;44410:33;43685:23;44430:12;:10;:12::i;:::-;44410:7;:33::i;:::-;44402:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;44498:24;44525:32;44535:7;44544:12;:10;:12::i;:::-;44525:9;:32::i;:::-;44498:59;;44596:6;44576:16;:26;;44568:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:58;44663:7;44672:12;:10;:12::i;:::-;44705:6;44686:16;:25;;;;:::i;:::-;44654:8;:58::i;:::-;44723:22;44729:7;44738:6;44723:5;:22::i;:::-;44333:420;;;:::o;44765:144::-;44808:33;43685:23;44828:12;:10;:12::i;:::-;44808:7;:33::i;:::-;44800:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;44893:8;:6;:8::i;:::-;44765:144::o;42026:145::-;42108:7;42135:28;42157:5;42135:12;:18;42148:4;42135:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;42128:35;;42026:145;;;;:::o;26563:139::-;26641:4;26665:6;:12;26672:4;26665:12;;;;;;;;;;;:20;;:29;26686:7;26665:29;;;;;;;;;;;;;;;;;;;;;;;;;26658:36;;26563:139;;;;:::o;6753:104::-;6809:13;6842:7;6835:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6753:104;:::o;24528:49::-;24573:4;24528:49;;;:::o;10901:377::-;10994:4;11011:24;11038:11;:25;11050:12;:10;:12::i;:::-;11038:25;;;;;;;;;;;;;;;:34;11064:7;11038:34;;;;;;;;;;;;;;;;11011:61;;11111:15;11091:16;:35;;11083:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11179:67;11188:12;:10;:12::i;:::-;11202:7;11230:15;11211:16;:34;;;;:::i;:::-;11179:8;:67::i;:::-;11266:4;11259:11;;;10901:377;;;;:::o;8165:175::-;8251:4;8268:42;8278:12;:10;:12::i;:::-;8292:9;8303:6;8268:9;:42::i;:::-;8328:4;8321:11;;8165:175;;;;:::o;45391:312::-;45462:33;43685:23;45482:12;:10;:12::i;:::-;45462:7;:33::i;:::-;45454:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;45555:12;45577;45555:35;;45601:15;45619:5;:15;;;45643:4;45619:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45601:48;;45660:5;:14;;;45675:10;45687:7;45660:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45391:312;;;:::o;42345:134::-;42417:7;42444:27;:12;:18;42457:4;42444:18;;;;;;;;;;;:25;:27::i;:::-;42437:34;;42345:134;;;:::o;42829:170::-;42915:31;42932:4;42938:7;42915:16;:31::i;:::-;42957:34;42983:7;42957:12;:18;42970:4;42957:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;42829:170;;:::o;8403:151::-;8492:7;8519:11;:18;8531:5;8519:18;;;;;;;;;;;;;;;:27;8538:7;8519:27;;;;;;;;;;;;;;;;8512:34;;8403:151;;;;:::o;45144:235::-;45211:13;45226:7;45254:20;45292:12;45254:51;;45324:5;:12;;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45340:5;:15;;;45364:4;45340:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45316:55;;;;;45144:235;;;:::o;29799:112::-;29878:25;29889:4;29895:7;29878:10;:25::i;:::-;29799:112;;:::o;37369:152::-;37439:4;37463:50;37468:3;:10;;37504:5;37488:23;;37480:32;;37463:4;:50::i;:::-;37456:57;;37369:152;;;;:::o;26254:217::-;26339:4;26378:32;26363:47;;;:11;:47;;;;:100;;;;26427:36;26451:11;26427:23;:36::i;:::-;26363:100;26356:107;;26254:217;;;:::o;4158:98::-;4211:7;4238:10;4231:17;;4158:98;:::o;14257:346::-;14376:1;14359:19;;:5;:19;;;;14351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14457:1;14438:21;;:7;:21;;;;14430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14541:6;14511:11;:18;14523:5;14511:18;;;;;;;;;;;;;;;:27;14530:7;14511:27;;;;;;;;;;;;;;;:36;;;;14579:7;14563:32;;14572:5;14563:32;;;14588:6;14563:32;;;;;;:::i;:::-;;;;;;;;14257:346;;;:::o;11768:604::-;11892:1;11874:20;;:6;:20;;;;11866:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11976:1;11955:23;;:9;:23;;;;11947:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12031:47;12052:6;12060:9;12071:6;12031:20;:47::i;:::-;12091:21;12115:9;:17;12125:6;12115:17;;;;;;;;;;;;;;;;12091:41;;12168:6;12151:13;:23;;12143:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12264:6;12248:13;:22;;;;:::i;:::-;12228:9;:17;12238:6;12228:17;;;;;;;;;;;;;;;:42;;;;12305:6;12281:9;:20;12291:9;12281:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12346:9;12329:35;;12338:6;12329:35;;;12357:6;12329:35;;;;;;:::i;:::-;;;;;;;;11768:604;;;;:::o;27950:147::-;28033:18;28046:4;28033:12;:18::i;:::-;26132:30;26143:4;26149:12;:10;:12::i;:::-;26132:10;:30::i;:::-;28064:25:::1;28075:4;28081:7;28064:10;:25::i;:::-;27950:147:::0;;;:::o;28998:218::-;29105:12;:10;:12::i;:::-;29094:23;;:7;:23;;;29086:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;29182:26;29194:4;29200:7;29182:11;:26::i;:::-;28998:218;;:::o;37697:158::-;37770:4;37794:53;37802:3;:10;;37838:5;37822:23;;37814:32;;37794:7;:53::i;:::-;37787:60;;37697:158;;;;:::o;17419:120::-;16963:8;:6;:8::i;:::-;16955:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;17488:5:::1;17478:7;;:15;;;;;;;;;;;;;;;;;;17509:22;17518:12;:10;:12::i;:::-;17509:22;;;;;;:::i;:::-;;;;;;;;17419:120::o:0;12654:338::-;12757:1;12738:21;;:7;:21;;;;12730:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12808:49;12837:1;12841:7;12850:6;12808:20;:49::i;:::-;12886:6;12870:12;;:22;;;;;;;:::i;:::-;;;;;;;;12925:6;12903:9;:18;12913:7;12903:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12968:7;12947:37;;12964:1;12947:37;;;12977:6;12947:37;;;;;;:::i;:::-;;;;;;;;12654:338;;:::o;13325:494::-;13428:1;13409:21;;:7;:21;;;;13401:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13481:49;13502:7;13519:1;13523:6;13481:20;:49::i;:::-;13543:22;13568:9;:18;13578:7;13568:18;;;;;;;;;;;;;;;;13543:43;;13623:6;13605:14;:24;;13597:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13717:6;13700:14;:23;;;;:::i;:::-;13679:9;:18;13689:7;13679:18;;;;;;;;;;;;;;;:44;;;;13750:6;13734:12;;:22;;;;;;;:::i;:::-;;;;;;;;13800:1;13774:37;;13783:7;13774:37;;;13804:6;13774:37;;;;;;:::i;:::-;;;;;;;;13325:494;;;:::o;17160:118::-;16686:8;:6;:8::i;:::-;16685:9;16677:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;17230:4:::1;17220:7;;:14;;;;;;;;;;;;;;;;;;17250:20;17257:12;:10;:12::i;:::-;17250:20;;;;;;:::i;:::-;;;;;;;;17160:118::o:0;38655:158::-;38729:7;38780:22;38784:3;:10;;38796:5;38780:3;:22::i;:::-;38772:31;;38749:56;;38655:158;;;;:::o;38194:117::-;38257:7;38284:19;38292:3;:10;;38284:7;:19::i;:::-;38277:26;;38194:117;;;:::o;28342:149::-;28426:18;28439:4;28426:12;:18::i;:::-;26132:30;26143:4;26149:12;:10;:12::i;:::-;26132:10;:30::i;:::-;28457:26:::1;28469:4;28475:7;28457:11;:26::i;:::-;28342:149:::0;;;:::o;30246:229::-;30321:22;30329:4;30335:7;30321;:22::i;:::-;30316:152;;30392:4;30360:6;:12;30367:4;30360:12;;;;;;;;;;;:20;;:29;30381:7;30360:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30443:12;:10;:12::i;:::-;30416:40;;30434:7;30416:40;;30428:4;30416:40;;;;;;;;;;30316:152;30246:229;;:::o;32424:414::-;32487:4;32509:21;32519:3;32524:5;32509:9;:21::i;:::-;32504:327;;32547:3;:11;;32564:5;32547:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32730:3;:11;;:18;;;;32708:3;:12;;:19;32721:5;32708:19;;;;;;;;;;;:40;;;;32770:4;32763:11;;;;32504:327;32814:5;32807:12;;32424:414;;;;;:::o;22004:157::-;22089:4;22128:25;22113:40;;;:11;:40;;;;22106:47;;22004:157;;;:::o;18104:238::-;18213:44;18240:4;18246:2;18250:6;18213:26;:44::i;:::-;18279:8;:6;:8::i;:::-;18278:9;18270:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18104:238;;;:::o;26992:384::-;27072:22;27080:4;27086:7;27072;:22::i;:::-;27068:301;;27204:41;27232:7;27204:41;;27242:2;27204:19;:41::i;:::-;27302:38;27330:4;27322:13;;27337:2;27302:19;:38::i;:::-;27125:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27111:246;;;;;;;;;;;:::i;:::-;;;;;;;;27068:301;26992:384;;:::o;30483:230::-;30558:22;30566:4;30572:7;30558;:22::i;:::-;30554:152;;;30629:5;30597:6;:12;30604:4;30597:12;;;;;;;;;;;:20;;:29;30618:7;30597:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30681:12;:10;:12::i;:::-;30654:40;;30672:7;30654:40;;30666:4;30654:40;;;;;;;;;;30554:152;30483:230;;:::o;33014:1553::-;33080:4;33198:18;33219:3;:12;;:19;33232:5;33219:19;;;;;;;;;;;;33198:40;;33269:1;33255:10;:15;33251:1309;;33617:21;33654:1;33641:10;:14;;;;:::i;:::-;33617:38;;33670:17;33711:1;33690:3;:11;;:18;;;;:22;;;;:::i;:::-;33670:42;;33957:17;33977:3;:11;;33989:9;33977:22;;;;;;;;;;;;;;;;;;;;;;;;33957:42;;34123:9;34094:3;:11;;34106:13;34094:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;34226:10;34200:3;:12;;:23;34213:9;34200:23;;;;;;;;;;;:36;;;;34361:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34456:3;:12;;:19;34469:5;34456:19;;;;;;;;;;;34449:26;;;34499:4;34492:11;;;;;;;;33251:1309;34543:5;34536:12;;;33014:1553;;;;;:::o;35321:204::-;35388:7;35437:5;35416:3;:11;;:18;;;;:26;35408:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35499:3;:11;;35511:5;35499:18;;;;;;;;;;;;;;;;;;;;;;;;35492:25;;35321:204;;;;:::o;34868:109::-;34924:7;34951:3;:11;;:18;;;;34944:25;;34868:109;;;:::o;34653:129::-;34726:4;34773:1;34750:3;:12;;:19;34763:5;34750:19;;;;;;;;;;;;:24;;34743:31;;34653:129;;;;:::o;15206:92::-;;;;:::o;19939:447::-;20014:13;20040:19;20085:1;20076:6;20072:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20062:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20040:47;;20098:15;:6;20105:1;20098:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;20124;:6;20131:1;20124:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;20155:9;20180:1;20171:6;20167:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20155:26;;20150:131;20187:1;20183;:5;20150:131;;;20222:8;20239:3;20231:5;:11;20222:21;;;;;;;;;;;;;;;;;;20210:6;20217:1;20210:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;20268:1;20258:11;;;;;20190:3;;;;:::i;:::-;;;20150:131;;;;20308:1;20299:5;:10;20291:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20371:6;20357:21;;;19939:447;;;;:::o;7:354:1:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:2;;;303:1;300;293:12;262:2;316:39;348:6;343:3;338;316:39;:::i;:::-;102:259;;;;;;:::o;367:139::-;413:5;451:6;438:20;429:29;;467:33;494:5;467:33;:::i;:::-;419:87;;;;:::o;512:137::-;566:5;597:6;591:13;582:22;;613:30;637:5;613:30;:::i;:::-;572:77;;;;:::o;655:139::-;701:5;739:6;726:20;717:29;;755:33;782:5;755:33;:::i;:::-;707:87;;;;:::o;800:137::-;845:5;883:6;870:20;861:29;;899:32;925:5;899:32;:::i;:::-;851:86;;;;:::o;957:288::-;1024:5;1073:3;1066:4;1058:6;1054:17;1050:27;1040:2;;1091:1;1088;1081:12;1040:2;1124:6;1118:13;1149:90;1235:3;1227:6;1220:4;1212:6;1208:17;1149:90;:::i;:::-;1140:99;;1030:215;;;;;:::o;1251:139::-;1297:5;1335:6;1322:20;1313:29;;1351:33;1378:5;1351:33;:::i;:::-;1303:87;;;;:::o;1396:143::-;1453:5;1484:6;1478:13;1469:22;;1500:33;1527:5;1500:33;:::i;:::-;1459:80;;;;:::o;1545:262::-;1604:6;1653:2;1641:9;1632:7;1628:23;1624:32;1621:2;;;1669:1;1666;1659:12;1621:2;1712:1;1737:53;1782:7;1773:6;1762:9;1758:22;1737:53;:::i;:::-;1727:63;;1683:117;1611:196;;;;:::o;1813:407::-;1881:6;1889;1938:2;1926:9;1917:7;1913:23;1909:32;1906:2;;;1954:1;1951;1944:12;1906:2;1997:1;2022:53;2067:7;2058:6;2047:9;2043:22;2022:53;:::i;:::-;2012:63;;1968:117;2124:2;2150:53;2195:7;2186:6;2175:9;2171:22;2150:53;:::i;:::-;2140:63;;2095:118;1896:324;;;;;:::o;2226:552::-;2303:6;2311;2319;2368:2;2356:9;2347:7;2343:23;2339:32;2336:2;;;2384:1;2381;2374:12;2336:2;2427:1;2452:53;2497:7;2488:6;2477:9;2473:22;2452:53;:::i;:::-;2442:63;;2398:117;2554:2;2580:53;2625:7;2616:6;2605:9;2601:22;2580:53;:::i;:::-;2570:63;;2525:118;2682:2;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2653:118;2326:452;;;;;:::o;2784:407::-;2852:6;2860;2909:2;2897:9;2888:7;2884:23;2880:32;2877:2;;;2925:1;2922;2915:12;2877:2;2968:1;2993:53;3038:7;3029:6;3018:9;3014:22;2993:53;:::i;:::-;2983:63;;2939:117;3095:2;3121:53;3166:7;3157:6;3146:9;3142:22;3121:53;:::i;:::-;3111:63;;3066:118;2867:324;;;;;:::o;3197:278::-;3264:6;3313:2;3301:9;3292:7;3288:23;3284:32;3281:2;;;3329:1;3326;3319:12;3281:2;3372:1;3397:61;3450:7;3441:6;3430:9;3426:22;3397:61;:::i;:::-;3387:71;;3343:125;3271:204;;;;:::o;3481:262::-;3540:6;3589:2;3577:9;3568:7;3564:23;3560:32;3557:2;;;3605:1;3602;3595:12;3557:2;3648:1;3673:53;3718:7;3709:6;3698:9;3694:22;3673:53;:::i;:::-;3663:63;;3619:117;3547:196;;;;:::o;3749:407::-;3817:6;3825;3874:2;3862:9;3853:7;3849:23;3845:32;3842:2;;;3890:1;3887;3880:12;3842:2;3933:1;3958:53;4003:7;3994:6;3983:9;3979:22;3958:53;:::i;:::-;3948:63;;3904:117;4060:2;4086:53;4131:7;4122:6;4111:9;4107:22;4086:53;:::i;:::-;4076:63;;4031:118;3832:324;;;;;:::o;4162:407::-;4230:6;4238;4287:2;4275:9;4266:7;4262:23;4258:32;4255:2;;;4303:1;4300;4293:12;4255:2;4346:1;4371:53;4416:7;4407:6;4396:9;4392:22;4371:53;:::i;:::-;4361:63;;4317:117;4473:2;4499:53;4544:7;4535:6;4524:9;4520:22;4499:53;:::i;:::-;4489:63;;4444:118;4245:324;;;;;:::o;4575:260::-;4633:6;4682:2;4670:9;4661:7;4657:23;4653:32;4650:2;;;4698:1;4695;4688:12;4650:2;4741:1;4766:52;4810:7;4801:6;4790:9;4786:22;4766:52;:::i;:::-;4756:62;;4712:116;4640:195;;;;:::o;4841:390::-;4921:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:2;;;4986:1;4983;4976:12;4938:2;5050:1;5039:9;5035:17;5029:24;5080:18;5072:6;5069:30;5066:2;;;5112:1;5109;5102:12;5066:2;5140:74;5206:7;5197:6;5186:9;5182:22;5140:74;:::i;:::-;5130:84;;5000:224;4928:303;;;;:::o;5237:262::-;5296:6;5345:2;5333:9;5324:7;5320:23;5316:32;5313:2;;;5361:1;5358;5351:12;5313:2;5404:1;5429:53;5474:7;5465:6;5454:9;5450:22;5429:53;:::i;:::-;5419:63;;5375:117;5303:196;;;;:::o;5505:284::-;5575:6;5624:2;5612:9;5603:7;5599:23;5595:32;5592:2;;;5640:1;5637;5630:12;5592:2;5683:1;5708:64;5764:7;5755:6;5744:9;5740:22;5708:64;:::i;:::-;5698:74;;5654:128;5582:207;;;;:::o;5795:118::-;5882:24;5900:5;5882:24;:::i;:::-;5877:3;5870:37;5860:53;;:::o;5919:109::-;6000:21;6015:5;6000:21;:::i;:::-;5995:3;5988:34;5978:50;;:::o;6034:118::-;6121:24;6139:5;6121:24;:::i;:::-;6116:3;6109:37;6099:53;;:::o;6158:364::-;6246:3;6274:39;6307:5;6274:39;:::i;:::-;6329:71;6393:6;6388:3;6329:71;:::i;:::-;6322:78;;6409:52;6454:6;6449:3;6442:4;6435:5;6431:16;6409:52;:::i;:::-;6486:29;6508:6;6486:29;:::i;:::-;6481:3;6477:39;6470:46;;6250:272;;;;;:::o;6528:377::-;6634:3;6662:39;6695:5;6662:39;:::i;:::-;6717:89;6799:6;6794:3;6717:89;:::i;:::-;6710:96;;6815:52;6860:6;6855:3;6848:4;6841:5;6837:16;6815:52;:::i;:::-;6892:6;6887:3;6883:16;6876:23;;6638:267;;;;;:::o;6911:366::-;7053:3;7074:67;7138:2;7133:3;7074:67;:::i;:::-;7067:74;;7150:93;7239:3;7150:93;:::i;:::-;7268:2;7263:3;7259:12;7252:19;;7057:220;;;:::o;7283:366::-;7425:3;7446:67;7510:2;7505:3;7446:67;:::i;:::-;7439:74;;7522:93;7611:3;7522:93;:::i;:::-;7640:2;7635:3;7631:12;7624:19;;7429:220;;;:::o;7655:366::-;7797:3;7818:67;7882:2;7877:3;7818:67;:::i;:::-;7811:74;;7894:93;7983:3;7894:93;:::i;:::-;8012:2;8007:3;8003:12;7996:19;;7801:220;;;:::o;8027:366::-;8169:3;8190:67;8254:2;8249:3;8190:67;:::i;:::-;8183:74;;8266:93;8355:3;8266:93;:::i;:::-;8384:2;8379:3;8375:12;8368:19;;8173:220;;;:::o;8399:366::-;8541:3;8562:67;8626:2;8621:3;8562:67;:::i;:::-;8555:74;;8638:93;8727:3;8638:93;:::i;:::-;8756:2;8751:3;8747:12;8740:19;;8545:220;;;:::o;8771:366::-;8913:3;8934:67;8998:2;8993:3;8934:67;:::i;:::-;8927:74;;9010:93;9099:3;9010:93;:::i;:::-;9128:2;9123:3;9119:12;9112:19;;8917:220;;;:::o;9143:366::-;9285:3;9306:67;9370:2;9365:3;9306:67;:::i;:::-;9299:74;;9382:93;9471:3;9382:93;:::i;:::-;9500:2;9495:3;9491:12;9484:19;;9289:220;;;:::o;9515:366::-;9657:3;9678:67;9742:2;9737:3;9678:67;:::i;:::-;9671:74;;9754:93;9843:3;9754:93;:::i;:::-;9872:2;9867:3;9863:12;9856:19;;9661:220;;;:::o;9887:366::-;10029:3;10050:67;10114:2;10109:3;10050:67;:::i;:::-;10043:74;;10126:93;10215:3;10126:93;:::i;:::-;10244:2;10239:3;10235:12;10228:19;;10033:220;;;:::o;10259:366::-;10401:3;10422:67;10486:2;10481:3;10422:67;:::i;:::-;10415:74;;10498:93;10587:3;10498:93;:::i;:::-;10616:2;10611:3;10607:12;10600:19;;10405:220;;;:::o;10631:366::-;10773:3;10794:67;10858:2;10853:3;10794:67;:::i;:::-;10787:74;;10870:93;10959:3;10870:93;:::i;:::-;10988:2;10983:3;10979:12;10972:19;;10777:220;;;:::o;11003:366::-;11145:3;11166:67;11230:2;11225:3;11166:67;:::i;:::-;11159:74;;11242:93;11331:3;11242:93;:::i;:::-;11360:2;11355:3;11351:12;11344:19;;11149:220;;;:::o;11375:366::-;11517:3;11538:67;11602:2;11597:3;11538:67;:::i;:::-;11531:74;;11614:93;11703:3;11614:93;:::i;:::-;11732:2;11727:3;11723:12;11716:19;;11521:220;;;:::o;11747:366::-;11889:3;11910:67;11974:2;11969:3;11910:67;:::i;:::-;11903:74;;11986:93;12075:3;11986:93;:::i;:::-;12104:2;12099:3;12095:12;12088:19;;11893:220;;;:::o;12119:366::-;12261:3;12282:67;12346:2;12341:3;12282:67;:::i;:::-;12275:74;;12358:93;12447:3;12358:93;:::i;:::-;12476:2;12471:3;12467:12;12460:19;;12265:220;;;:::o;12491:366::-;12633:3;12654:67;12718:2;12713:3;12654:67;:::i;:::-;12647:74;;12730:93;12819:3;12730:93;:::i;:::-;12848:2;12843:3;12839:12;12832:19;;12637:220;;;:::o;12863:366::-;13005:3;13026:67;13090:2;13085:3;13026:67;:::i;:::-;13019:74;;13102:93;13191:3;13102:93;:::i;:::-;13220:2;13215:3;13211:12;13204:19;;13009:220;;;:::o;13235:366::-;13377:3;13398:67;13462:2;13457:3;13398:67;:::i;:::-;13391:74;;13474:93;13563:3;13474:93;:::i;:::-;13592:2;13587:3;13583:12;13576:19;;13381:220;;;:::o;13607:366::-;13749:3;13770:67;13834:2;13829:3;13770:67;:::i;:::-;13763:74;;13846:93;13935:3;13846:93;:::i;:::-;13964:2;13959:3;13955:12;13948:19;;13753:220;;;:::o;13979:402::-;14139:3;14160:85;14242:2;14237:3;14160:85;:::i;:::-;14153:92;;14254:93;14343:3;14254:93;:::i;:::-;14372:2;14367:3;14363:12;14356:19;;14143:238;;;:::o;14387:366::-;14529:3;14550:67;14614:2;14609:3;14550:67;:::i;:::-;14543:74;;14626:93;14715:3;14626:93;:::i;:::-;14744:2;14739:3;14735:12;14728:19;;14533:220;;;:::o;14759:402::-;14919:3;14940:85;15022:2;15017:3;14940:85;:::i;:::-;14933:92;;15034:93;15123:3;15034:93;:::i;:::-;15152:2;15147:3;15143:12;15136:19;;14923:238;;;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15313:220;;;:::o;15539:366::-;15681:3;15702:67;15766:2;15761:3;15702:67;:::i;:::-;15695:74;;15778:93;15867:3;15778:93;:::i;:::-;15896:2;15891:3;15887:12;15880:19;;15685:220;;;:::o;15911:366::-;16053:3;16074:67;16138:2;16133:3;16074:67;:::i;:::-;16067:74;;16150:93;16239:3;16150:93;:::i;:::-;16268:2;16263:3;16259:12;16252:19;;16057:220;;;:::o;16283:118::-;16370:24;16388:5;16370:24;:::i;:::-;16365:3;16358:37;16348:53;;:::o;16407:112::-;16490:22;16506:5;16490:22;:::i;:::-;16485:3;16478:35;16468:51;;:::o;16525:967::-;16907:3;16929:148;17073:3;16929:148;:::i;:::-;16922:155;;17094:95;17185:3;17176:6;17094:95;:::i;:::-;17087:102;;17206:148;17350:3;17206:148;:::i;:::-;17199:155;;17371:95;17462:3;17453:6;17371:95;:::i;:::-;17364:102;;17483:3;17476:10;;16911:581;;;;;:::o;17498:222::-;17591:4;17629:2;17618:9;17614:18;17606:26;;17642:71;17710:1;17699:9;17695:17;17686:6;17642:71;:::i;:::-;17596:124;;;;:::o;17726:332::-;17847:4;17885:2;17874:9;17870:18;17862:26;;17898:71;17966:1;17955:9;17951:17;17942:6;17898:71;:::i;:::-;17979:72;18047:2;18036:9;18032:18;18023:6;17979:72;:::i;:::-;17852:206;;;;;:::o;18064:210::-;18151:4;18189:2;18178:9;18174:18;18166:26;;18202:65;18264:1;18253:9;18249:17;18240:6;18202:65;:::i;:::-;18156:118;;;;:::o;18280:222::-;18373:4;18411:2;18400:9;18396:18;18388:26;;18424:71;18492:1;18481:9;18477:17;18468:6;18424:71;:::i;:::-;18378:124;;;;:::o;18508:313::-;18621:4;18659:2;18648:9;18644:18;18636:26;;18708:9;18702:4;18698:20;18694:1;18683:9;18679:17;18672:47;18736:78;18809:4;18800:6;18736:78;:::i;:::-;18728:86;;18626:195;;;;:::o;18827:423::-;18968:4;19006:2;18995:9;18991:18;18983:26;;19055:9;19049:4;19045:20;19041:1;19030:9;19026:17;19019:47;19083:78;19156:4;19147:6;19083:78;:::i;:::-;19075:86;;19171:72;19239:2;19228:9;19224:18;19215:6;19171:72;:::i;:::-;18973:277;;;;;:::o;19256:419::-;19422:4;19460:2;19449:9;19445:18;19437:26;;19509:9;19503:4;19499:20;19495:1;19484:9;19480:17;19473:47;19537:131;19663:4;19537:131;:::i;:::-;19529:139;;19427:248;;;:::o;19681:419::-;19847:4;19885:2;19874:9;19870:18;19862:26;;19934:9;19928:4;19924:20;19920:1;19909:9;19905:17;19898:47;19962:131;20088:4;19962:131;:::i;:::-;19954:139;;19852:248;;;:::o;20106:419::-;20272:4;20310:2;20299:9;20295:18;20287:26;;20359:9;20353:4;20349:20;20345:1;20334:9;20330:17;20323:47;20387:131;20513:4;20387:131;:::i;:::-;20379:139;;20277:248;;;:::o;20531:419::-;20697:4;20735:2;20724:9;20720:18;20712:26;;20784:9;20778:4;20774:20;20770:1;20759:9;20755:17;20748:47;20812:131;20938:4;20812:131;:::i;:::-;20804:139;;20702:248;;;:::o;20956:419::-;21122:4;21160:2;21149:9;21145:18;21137:26;;21209:9;21203:4;21199:20;21195:1;21184:9;21180:17;21173:47;21237:131;21363:4;21237:131;:::i;:::-;21229:139;;21127:248;;;:::o;21381:419::-;21547:4;21585:2;21574:9;21570:18;21562:26;;21634:9;21628:4;21624:20;21620:1;21609:9;21605:17;21598:47;21662:131;21788:4;21662:131;:::i;:::-;21654:139;;21552:248;;;:::o;21806:419::-;21972:4;22010:2;21999:9;21995:18;21987:26;;22059:9;22053:4;22049:20;22045:1;22034:9;22030:17;22023:47;22087:131;22213:4;22087:131;:::i;:::-;22079:139;;21977:248;;;:::o;22231:419::-;22397:4;22435:2;22424:9;22420:18;22412:26;;22484:9;22478:4;22474:20;22470:1;22459:9;22455:17;22448:47;22512:131;22638:4;22512:131;:::i;:::-;22504:139;;22402:248;;;:::o;22656:419::-;22822:4;22860:2;22849:9;22845:18;22837:26;;22909:9;22903:4;22899:20;22895:1;22884:9;22880:17;22873:47;22937:131;23063:4;22937:131;:::i;:::-;22929:139;;22827:248;;;:::o;23081:419::-;23247:4;23285:2;23274:9;23270:18;23262:26;;23334:9;23328:4;23324:20;23320:1;23309:9;23305:17;23298:47;23362:131;23488:4;23362:131;:::i;:::-;23354:139;;23252:248;;;:::o;23506:419::-;23672:4;23710:2;23699:9;23695:18;23687:26;;23759:9;23753:4;23749:20;23745:1;23734:9;23730:17;23723:47;23787:131;23913:4;23787:131;:::i;:::-;23779:139;;23677:248;;;:::o;23931:419::-;24097:4;24135:2;24124:9;24120:18;24112:26;;24184:9;24178:4;24174:20;24170:1;24159:9;24155:17;24148:47;24212:131;24338:4;24212:131;:::i;:::-;24204:139;;24102:248;;;:::o;24356:419::-;24522:4;24560:2;24549:9;24545:18;24537:26;;24609:9;24603:4;24599:20;24595:1;24584:9;24580:17;24573:47;24637:131;24763:4;24637:131;:::i;:::-;24629:139;;24527:248;;;:::o;24781:419::-;24947:4;24985:2;24974:9;24970:18;24962:26;;25034:9;25028:4;25024:20;25020:1;25009:9;25005:17;24998:47;25062:131;25188:4;25062:131;:::i;:::-;25054:139;;24952:248;;;:::o;25206:419::-;25372:4;25410:2;25399:9;25395:18;25387:26;;25459:9;25453:4;25449:20;25445:1;25434:9;25430:17;25423:47;25487:131;25613:4;25487:131;:::i;:::-;25479:139;;25377:248;;;:::o;25631:419::-;25797:4;25835:2;25824:9;25820:18;25812:26;;25884:9;25878:4;25874:20;25870:1;25859:9;25855:17;25848:47;25912:131;26038:4;25912:131;:::i;:::-;25904:139;;25802:248;;;:::o;26056:419::-;26222:4;26260:2;26249:9;26245:18;26237:26;;26309:9;26303:4;26299:20;26295:1;26284:9;26280:17;26273:47;26337:131;26463:4;26337:131;:::i;:::-;26329:139;;26227:248;;;:::o;26481:419::-;26647:4;26685:2;26674:9;26670:18;26662:26;;26734:9;26728:4;26724:20;26720:1;26709:9;26705:17;26698:47;26762:131;26888:4;26762:131;:::i;:::-;26754:139;;26652:248;;;:::o;26906:419::-;27072:4;27110:2;27099:9;27095:18;27087:26;;27159:9;27153:4;27149:20;27145:1;27134:9;27130:17;27123:47;27187:131;27313:4;27187:131;:::i;:::-;27179:139;;27077:248;;;:::o;27331:419::-;27497:4;27535:2;27524:9;27520:18;27512:26;;27584:9;27578:4;27574:20;27570:1;27559:9;27555:17;27548:47;27612:131;27738:4;27612:131;:::i;:::-;27604:139;;27502:248;;;:::o;27756:419::-;27922:4;27960:2;27949:9;27945:18;27937:26;;28009:9;28003:4;27999:20;27995:1;27984:9;27980:17;27973:47;28037:131;28163:4;28037:131;:::i;:::-;28029:139;;27927:248;;;:::o;28181:419::-;28347:4;28385:2;28374:9;28370:18;28362:26;;28434:9;28428:4;28424:20;28420:1;28409:9;28405:17;28398:47;28462:131;28588:4;28462:131;:::i;:::-;28454:139;;28352:248;;;:::o;28606:419::-;28772:4;28810:2;28799:9;28795:18;28787:26;;28859:9;28853:4;28849:20;28845:1;28834:9;28830:17;28823:47;28887:131;29013:4;28887:131;:::i;:::-;28879:139;;28777:248;;;:::o;29031:222::-;29124:4;29162:2;29151:9;29147:18;29139:26;;29175:71;29243:1;29232:9;29228:17;29219:6;29175:71;:::i;:::-;29129:124;;;;:::o;29259:214::-;29348:4;29386:2;29375:9;29371:18;29363:26;;29399:67;29463:1;29452:9;29448:17;29439:6;29399:67;:::i;:::-;29353:120;;;;:::o;29479:129::-;29513:6;29540:20;;:::i;:::-;29530:30;;29569:33;29597:4;29589:6;29569:33;:::i;:::-;29520:88;;;:::o;29614:75::-;29647:6;29680:2;29674:9;29664:19;;29654:35;:::o;29695:308::-;29757:4;29847:18;29839:6;29836:30;29833:2;;;29869:18;;:::i;:::-;29833:2;29907:29;29929:6;29907:29;:::i;:::-;29899:37;;29991:4;29985;29981:15;29973:23;;29762:241;;;:::o;30009:99::-;30061:6;30095:5;30089:12;30079:22;;30068:40;;;:::o;30114:169::-;30198:11;30232:6;30227:3;30220:19;30272:4;30267:3;30263:14;30248:29;;30210:73;;;;:::o;30289:148::-;30391:11;30428:3;30413:18;;30403:34;;;;:::o;30443:305::-;30483:3;30502:20;30520:1;30502:20;:::i;:::-;30497:25;;30536:20;30554:1;30536:20;:::i;:::-;30531:25;;30690:1;30622:66;30618:74;30615:1;30612:81;30609:2;;;30696:18;;:::i;:::-;30609:2;30740:1;30737;30733:9;30726:16;;30487:261;;;;:::o;30754:348::-;30794:7;30817:20;30835:1;30817:20;:::i;:::-;30812:25;;30851:20;30869:1;30851:20;:::i;:::-;30846:25;;31039:1;30971:66;30967:74;30964:1;30961:81;30956:1;30949:9;30942:17;30938:105;30935:2;;;31046:18;;:::i;:::-;30935:2;31094:1;31091;31087:9;31076:20;;30802:300;;;;:::o;31108:191::-;31148:4;31168:20;31186:1;31168:20;:::i;:::-;31163:25;;31202:20;31220:1;31202:20;:::i;:::-;31197:25;;31241:1;31238;31235:8;31232:2;;;31246:18;;:::i;:::-;31232:2;31291:1;31288;31284:9;31276:17;;31153:146;;;;:::o;31305:96::-;31342:7;31371:24;31389:5;31371:24;:::i;:::-;31360:35;;31350:51;;;:::o;31407:90::-;31441:7;31484:5;31477:13;31470:21;31459:32;;31449:48;;;:::o;31503:77::-;31540:7;31569:5;31558:16;;31548:32;;;:::o;31586:149::-;31622:7;31662:66;31655:5;31651:78;31640:89;;31630:105;;;:::o;31741:126::-;31778:7;31818:42;31811:5;31807:54;31796:65;;31786:81;;;:::o;31873:77::-;31910:7;31939:5;31928:16;;31918:32;;;:::o;31956:86::-;31991:7;32031:4;32024:5;32020:16;32009:27;;31999:43;;;:::o;32048:307::-;32116:1;32126:113;32140:6;32137:1;32134:13;32126:113;;;32225:1;32220:3;32216:11;32210:18;32206:1;32201:3;32197:11;32190:39;32162:2;32159:1;32155:10;32150:15;;32126:113;;;32257:6;32254:1;32251:13;32248:2;;;32337:1;32328:6;32323:3;32319:16;32312:27;32248:2;32097:258;;;;:::o;32361:171::-;32400:3;32423:24;32441:5;32423:24;:::i;:::-;32414:33;;32469:4;32462:5;32459:15;32456:2;;;32477:18;;:::i;:::-;32456:2;32524:1;32517:5;32513:13;32506:20;;32404:128;;;:::o;32538:320::-;32582:6;32619:1;32613:4;32609:12;32599:22;;32666:1;32660:4;32656:12;32687:18;32677:2;;32743:4;32735:6;32731:17;32721:27;;32677:2;32805;32797:6;32794:14;32774:18;32771:38;32768:2;;;32824:18;;:::i;:::-;32768:2;32589:269;;;;:::o;32864:281::-;32947:27;32969:4;32947:27;:::i;:::-;32939:6;32935:40;33077:6;33065:10;33062:22;33041:18;33029:10;33026:34;33023:62;33020:2;;;33088:18;;:::i;:::-;33020:2;33128:10;33124:2;33117:22;32907:238;;;:::o;33151:180::-;33199:77;33196:1;33189:88;33296:4;33293:1;33286:15;33320:4;33317:1;33310:15;33337:180;33385:77;33382:1;33375:88;33482:4;33479:1;33472:15;33506:4;33503:1;33496:15;33523:180;33571:77;33568:1;33561:88;33668:4;33665:1;33658:15;33692:4;33689:1;33682:15;33709:102;33750:6;33801:2;33797:7;33792:2;33785:5;33781:14;33777:28;33767:38;;33757:54;;;:::o;33817:221::-;33957:34;33953:1;33945:6;33941:14;33934:58;34026:4;34021:2;34013:6;34009:15;34002:29;33923:115;:::o;34044:182::-;34184:34;34180:1;34172:6;34168:14;34161:58;34150:76;:::o;34232:222::-;34372:34;34368:1;34360:6;34356:14;34349:58;34441:5;34436:2;34428:6;34424:15;34417:30;34338:116;:::o;34460:170::-;34600:22;34596:1;34588:6;34584:14;34577:46;34566:64;:::o;34636:221::-;34776:34;34772:1;34764:6;34760:14;34753:58;34845:4;34840:2;34832:6;34828:15;34821:29;34742:115;:::o;34863:221::-;35003:34;34999:1;34991:6;34987:14;34980:58;35072:4;35067:2;35059:6;35055:15;35048:29;34969:115;:::o;35090:225::-;35230:34;35226:1;35218:6;35214:14;35207:58;35299:8;35294:2;35286:6;35282:15;35275:33;35196:119;:::o;35321:223::-;35461:34;35457:1;35449:6;35445:14;35438:58;35530:6;35525:2;35517:6;35513:15;35506:31;35427:117;:::o;35550:166::-;35690:18;35686:1;35678:6;35674:14;35667:42;35656:60;:::o;35722:225::-;35862:34;35858:1;35850:6;35846:14;35839:58;35931:8;35926:2;35918:6;35914:15;35907:33;35828:119;:::o;35953:231::-;36093:34;36089:1;36081:6;36077:14;36070:58;36162:14;36157:2;36149:6;36145:15;36138:39;36059:125;:::o;36190:227::-;36330:34;36326:1;36318:6;36314:14;36307:58;36399:10;36394:2;36386:6;36382:15;36375:35;36296:121;:::o;36423:222::-;36563:34;36559:1;36551:6;36547:14;36540:58;36632:5;36627:2;36619:6;36615:15;36608:30;36529:116;:::o;36651:226::-;36791:34;36787:1;36779:6;36775:14;36768:58;36860:9;36855:2;36847:6;36843:15;36836:34;36757:120;:::o;36883:223::-;37023:34;37019:1;37011:6;37007:14;37000:58;37092:6;37087:2;37079:6;37075:15;37068:31;36989:117;:::o;37112:220::-;37252:34;37248:1;37240:6;37236:14;37229:58;37321:3;37316:2;37308:6;37304:15;37297:28;37218:114;:::o;37338:224::-;37478:34;37474:1;37466:6;37462:14;37455:58;37547:7;37542:2;37534:6;37530:15;37523:32;37444:118;:::o;37568:222::-;37708:34;37704:1;37696:6;37692:14;37685:58;37777:5;37772:2;37764:6;37760:15;37753:30;37674:116;:::o;37796:223::-;37936:34;37932:1;37924:6;37920:14;37913:58;38005:6;38000:2;37992:6;37988:15;37981:31;37902:117;:::o;38025:173::-;38165:25;38161:1;38153:6;38149:14;38142:49;38131:67;:::o;38204:224::-;38344:34;38340:1;38332:6;38328:14;38321:58;38413:7;38408:2;38400:6;38396:15;38389:32;38310:118;:::o;38434:167::-;38574:19;38570:1;38562:6;38558:14;38551:43;38540:61;:::o;38607:234::-;38747:34;38743:1;38735:6;38731:14;38724:58;38816:17;38811:2;38803:6;38799:15;38792:42;38713:128;:::o;38847:181::-;38987:33;38983:1;38975:6;38971:14;38964:57;38953:75;:::o;39034:229::-;39174:34;39170:1;39162:6;39158:14;39151:58;39243:12;39238:2;39230:6;39226:15;39219:37;39140:123;:::o;39269:122::-;39342:24;39360:5;39342:24;:::i;:::-;39335:5;39332:35;39322:2;;39381:1;39378;39371:12;39322:2;39312:79;:::o;39397:116::-;39467:21;39482:5;39467:21;:::i;:::-;39460:5;39457:32;39447:2;;39503:1;39500;39493:12;39447:2;39437:76;:::o;39519:122::-;39592:24;39610:5;39592:24;:::i;:::-;39585:5;39582:35;39572:2;;39631:1;39628;39621:12;39572:2;39562:79;:::o;39647:120::-;39719:23;39736:5;39719:23;:::i;:::-;39712:5;39709:34;39699:2;;39757:1;39754;39747:12;39699:2;39689:78;:::o;39773:122::-;39846:24;39864:5;39846:24;:::i;:::-;39839:5;39836:35;39826:2;;39885:1;39882;39875:12;39826:2;39816:79;:::o
Swarm Source
ipfs://552d752b2444e014d36acc2af9ac7146e4a5259a548365cae9ba946f60d4e361