- Contract name:
- ContractResolver
- Optimization enabled
- false
- Compiler version
- v0.8.17+commit.8df45f5f
- Verified at
- 2023-09-12T00:54:40.604356Z
Constructor Arguments
0000000000000000000000000000000000000000000000000000000000000000
Arg [0] (uint8) : 0
contracts/lit-core/ContractResolver.sol
// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;import "@openzeppelin/contracts/access/AccessControl.sol";import "hardhat/console.sol";contract ContractResolver is AccessControl {/* ========== TYPE DEFINITIONS ========== */// the comments following each one of these are the keccak256 hashes of the string values// this is very useful if you have to manually set any of these, so that you// don't have to calculate the hahes yourself.bytes32 public constant ADMIN_ROLE = keccak256("ADMIN"); // 0xdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42bytes32 public constant RELEASE_REGISTER_CONTRACT =keccak256("RELEASE_REGISTER"); // 0x3a68dbfd8bbb64015c42bc131c388dea7965e28c1004d09b39f59500c3a763ecbytes32 public constant STAKING_CONTRACT = keccak256("STAKING"); // 0x080909c18c958ce5a2d36481697824e477319323d03154ceba3b78f28a61887bbytes32 public constant STAKING_BALANCES_CONTRACT =keccak256("STAKING_BALANCES"); // 0xaa06d108dbd7bf976b16b7bf5adb29d2d0ef2c385ca8b9d833cc802f33942d72bytes32 public constant MULTI_SENDER_CONTRACT = keccak256("MULTI_SENDER"); // 0xdd5b9b8a5e8e01f2962ed7e983d58fe32e1f66aa88dd7ab30770fa9b77da7243bytes32 public constant LIT_TOKEN_CONTRACT = keccak256("LIT_TOKEN");bytes32 public constant PUB_KEY_ROUTER_CONTRACT =keccak256("PUB_KEY_ROUTER"); // 0xb1f79813bc7630a52ae948bc99781397e409d0dd3521953bf7d8d7a2db6147f7bytes32 public constant PKP_NFT_CONTRACT = keccak256("PKP_NFT"); // 0xb7b4fde9944d3c13e9a78835431c33a5084d90a7f0c73def76d7886315fe87b0bytes32 public constant RATE_LIMIT_NFT_CONTRACT =keccak256("RATE_LIMIT_NFT"); // 0xb931b2719aeb2a65a5035fa0a190bfdc4c8622ce8cbff7a3d1ab42531fb1a918bytes32 public constant PKP_HELPER_CONTRACT = keccak256("PKP_HELPER"); // 0x27d764ea2a4a3865434bbf4a391110149644be31448f3479fd15b44388755765bytes32 public constant PKP_PERMISSIONS_CONTRACT =keccak256("PKP_PERMISSIONS"); // 0x54953c23068b8fc4c0736301b50f10027d6b469327de1fd42841a5072b1bcebebytes32 public constant PKP_NFT_METADATA_CONTRACT =keccak256("PKP_NFT_METADATA"); // 0xf14f431dadc82e7dbc5e379f71234e5735c9187e4327a7c6ac014d55d1b7727abytes32 public constant ALLOWLIST_CONTRACT = keccak256("ALLOWLIST"); // 0x74845de37cfabd357633214b47fa91ccd19b05b7c5a08ac22c187f811fb62bcabytes32 public constant DOMAIN_WALLET_ORACLE =keccak256("DOMAIN_WALLET_ORACLE");bytes32 public constant DOMAIN_WALLET_REGISTRY =keccak256("DOMAIN_WALLET_REGISTRY");bytes32 public constant HD_KEY_DERIVER_CONTRACT =keccak256("HD_KEY_DERIVER");
@openzeppelin/contracts/access/AccessControl.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControl.sol";import "../utils/Context.sol";import "../utils/Strings.sol";import "../utils/introspection/ERC165.sol";/*** @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:** ```solidity* 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}:** ```solidity* 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
@openzeppelin/contracts/access/IAccessControl.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)pragma solidity ^0.8.0;/*** @dev External interface of AccessControl declared to support ERC165 detection.*/interface IAccessControl {/*** @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`** `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite* {RoleAdminChanged} not being emitted signaling this.** _Available since v3.1._*/event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);/*** @dev Emitted when `account` is granted `role`.** `sender` is the account that originated the contract call, an admin role* bearer except when using {AccessControl-_setupRole}.*/event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);/*** @dev Emitted when `account` is revoked `role`.** `sender` is the account that originated the contract call:* - if using `revokeRole`, it is the admin role bearer* - if using `renounceRole`, it is the role bearer (i.e. `account`)*/event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);/*** @dev Returns `true` if `account` has been granted `role`.*/function hasRole(bytes32 role, address account) external view returns (bool);
@openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
@openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";import "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))}while (true) {ptr--;/// @solidity memory-safe-assemblyassembly {mstore8(ptr, byte(mod(value, 10), _SYMBOLS))}value /= 10;if (value == 0) break;}return buffer;}}/**
@openzeppelin/contracts/utils/introspection/ERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.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;}}
@openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
@openzeppelin/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {return a < b ? a : b;}/*** @dev Returns the average of two numbers. The result is rounded towards* zero.*/function average(uint256 a, uint256 b) internal pure returns (uint256) {// (a + b) / 2 can overflow.return (a & b) + (a ^ b) / 2;}/*** @dev Returns the ceiling of the division of two numbers.*
@openzeppelin/contracts/utils/math/SignedMath.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.0;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.*/function average(int256 a, int256 b) internal pure returns (int256) {// Formula from the book "Hacker's Delight"int256 x = (a & b) + ((a ^ b) >> 1);return x + (int256(uint256(x) >> 255) & (a ^ b));}/*** @dev Returns the absolute unsigned value of a signed value.*/function abs(int256 n) internal pure returns (uint256) {unchecked {// must be unchecked in order to support `n = type(int256).min`return uint256(n >= 0 ? n : -n);}
hardhat/console.sol
// SPDX-License-Identifier: MITpragma solidity >=0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS =0x000000000000000000636F6e736F6c652e6c6f67;function _sendLogPayloadImplementation(bytes memory payload) internal view {address consoleAddress = CONSOLE_ADDRESS;/// @solidity memory-safe-assemblyassembly {pop(staticcall(gas(),consoleAddress,add(payload, 32),mload(payload),0,0))}}function _castToPure(function(bytes memory) internal view fnIn) internal pure returns (function(bytes memory) pure fnOut) {assembly {fnOut := fnIn}}function _sendLogPayload(bytes memory payload) internal pure {_castToPure(_sendLogPayloadImplementation)(payload);}function log() internal pure {_sendLogPayload(abi.encodeWithSignature("log()"));}function logInt(int256 p0) internal pure {_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"error","name":"AdminRoleRequired","inputs":[]},{"type":"event","name":"AllowedEnvAdded","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env","indexed":false}],"anonymous":false},{"type":"event","name":"AllowedEnvRemoved","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env","indexed":false}],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"previousAdminRole","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"newAdminRole","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetContract","inputs":[{"type":"bytes32","name":"typ","internalType":"bytes32","indexed":false},{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env","indexed":false},{"type":"address","name":"addr","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"ALLOWLIST_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DOMAIN_WALLET_ORACLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DOMAIN_WALLET_REGISTRY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"HD_KEY_DERIVER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"LIT_TOKEN_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"MULTI_SENDER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_HELPER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_NFT_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_NFT_METADATA_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PKP_PERMISSIONS_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PUB_KEY_ROUTER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"RATE_LIMIT_NFT_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"RELEASE_REGISTER_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"STAKING_BALANCES_CONTRACT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"STAKING_CONTRACT","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAllowedEnv","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getContract","inputs":[{"type":"bytes32","name":"typ","internalType":"bytes32"},{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"getRoleAdmin","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeAllowedEnv","inputs":[{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAdmin","inputs":[{"type":"address","name":"newAdmin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setContract","inputs":[{"type":"bytes32","name":"typ","internalType":"bytes32"},{"type":"uint8","name":"env","internalType":"enum ContractResolver.Env"},{"type":"address","name":"addr","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"typeAddresses","inputs":[{"type":"bytes32","name":"","internalType":"bytes32"},{"type":"uint8","name":"","internalType":"enum ContractResolver.Env"}]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b506040516200209538038062002095833981810160405281019062000037919062000358565b620000697fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42336200013060201b60201c565b6200009b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42806200014660201b60201c565b6001806000836002811115620000b657620000b56200038a565b5b6002811115620000cb57620000ca6200038a565b5b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f839ad2743d4062df579edf3818f642b71ee0688a35d6bc4438ef5314cece8015816040516200012191906200040a565b60405180910390a15062000427565b620001428282620001a960201b60201c565b5050565b600062000159836200029a60201b60201c565b905081600080858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b620001bb8282620002b960201b60201c565b6200029657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200023b6200032360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000806000838152602001908152602001600020600101549050919050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600080fd5b600381106200033e57600080fd5b50565b600081519050620003528162000330565b92915050565b6000602082840312156200037157620003706200032b565b5b6000620003818482850162000341565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110620003cd57620003cc6200038a565b5b50565b6000819050620003e082620003b9565b919050565b6000620003f282620003d0565b9050919050565b6200040481620003e5565b82525050565b6000602082019050620004216000830184620003f9565b92915050565b611c5e80620004376000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806375b238fc1161010457806391d14854116100a2578063d547741f11610071578063d547741f14610510578063da19ddfb1461052c578063df3806931461054a578063f8ae93b414610568576101cf565b806391d1485414610486578063977a8070146104b6578063a217fddf146104d4578063ad1c8a86146104f2576101cf565b80638c1536df116100de5780638c1536df146103fe5780638deb38931461041c5780638e8dfd16146104385780639072f83814610468576101cf565b806375b238fc146103a45780637cadf69f146103c257806385cb1191146103e0576101cf565b806336568abe1161017157806351ad0a801161014b57806351ad0a8014610332578063704b6c021461034e57806372823fa71461036a57806374bc813914610388576101cf565b806336568abe146102c85780633ebf7985146102e45780634216e73a14610314576101cf565b80632668f305116101ad5780632668f305146102525780632c0b8bf7146102705780632e4885e81461028e5780632f2ff15d146102ac576101cf565b806301ffc9a7146101d457806316f76bbf14610204578063248a9ca314610222575b600080fd5b6101ee60048036038101906101e9919061140f565b610586565b6040516101fb9190611457565b60405180910390f35b61020c610600565b604051610219919061148b565b60405180910390f35b61023c600480360381019061023791906114d2565b610624565b604051610249919061148b565b60405180910390f35b61025a610643565b604051610267919061148b565b60405180910390f35b610278610667565b604051610285919061148b565b60405180910390f35b61029661068b565b6040516102a3919061148b565b60405180910390f35b6102c660048036038101906102c1919061155d565b6106af565b005b6102e260048036038101906102dd919061155d565b6106d0565b005b6102fe60048036038101906102f991906115c2565b610753565b60405161030b9190611611565b60405180910390f35b61031c610795565b604051610329919061148b565b60405180910390f35b61034c6004803603810190610347919061162c565b6107b9565b005b6103686004803603810190610363919061167f565b61096b565b005b610372610a22565b60405161037f919061148b565b60405180910390f35b6103a2600480360381019061039d91906116ac565b610a46565b005b6103ac610b2f565b6040516103b9919061148b565b60405180910390f35b6103ca610b53565b6040516103d7919061148b565b60405180910390f35b6103e8610b77565b6040516103f5919061148b565b60405180910390f35b610406610b9b565b604051610413919061148b565b60405180910390f35b610436600480360381019061043191906116ac565b610bbf565b005b610452600480360381019061044d91906115c2565b610ca0565b60405161045f9190611611565b60405180910390f35b610470610d13565b60405161047d919061148b565b60405180910390f35b6104a0600480360381019061049b919061155d565b610d37565b6040516104ad9190611457565b60405180910390f35b6104be610da1565b6040516104cb919061148b565b60405180910390f35b6104dc610dc5565b6040516104e9919061148b565b60405180910390f35b6104fa610dcc565b604051610507919061148b565b60405180910390f35b61052a6004803603810190610525919061155d565b610df0565b005b610534610e11565b604051610541919061148b565b60405180910390f35b610552610e35565b60405161055f919061148b565b60405180910390f35b610570610e59565b60405161057d919061148b565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f957506105f882610e7d565b5b9050919050565b7ff14f431dadc82e7dbc5e379f71234e5735c9187e4327a7c6ac014d55d1b7727a81565b6000806000838152602001908152602001600020600101549050919050565b7fb1f79813bc7630a52ae948bc99781397e409d0dd3521953bf7d8d7a2db6147f781565b7fb7b4fde9944d3c13e9a78835431c33a5084d90a7f0c73def76d7886315fe87b081565b7fb931b2719aeb2a65a5035fa0a190bfdc4c8622ce8cbff7a3d1ab42531fb1a91881565b6106b882610624565b6106c181610ee7565b6106cb8383610efb565b505050565b6106d8610fdb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c9061175c565b60405180910390fd5b61074f8282610fe3565b5050565b60026020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f4c41ae454beb6bbbe9be50accc957a3b1536e48b835a86919af981b5244db75581565b6107e37fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b610819576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60011515600160008460028111156108345761083361177c565b5b60028111156108465761084561177c565b5b815260200190815260200160002060009054906101000a900460ff161515146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b9061181d565b60405180910390fd5b806002600085815260200190815260200160002060008460028111156108cd576108cc61177c565b5b60028111156108df576108de61177c565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f33f014890f109229bbcf8dd47204c153a2c0ff1c572a61de220d10336530f53d83838360405161095e93929190611885565b60405180910390a1505050565b6109957fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b6109cb576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f57fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4282610efb565b610a1f7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610fe3565b50565b7fc293b28944ab4199ad0f77d42d49e33b15d60cc12ed2a0b94a0db1d0b719f56181565b610a707fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b610aa6576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001806000836002811115610abe57610abd61177c565b5b6002811115610ad057610acf61177c565b5b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f839ad2743d4062df579edf3818f642b71ee0688a35d6bc4438ef5314cece801581604051610b2491906118bc565b60405180910390a150565b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b7f74845de37cfabd357633214b47fa91ccd19b05b7c5a08ac22c187f811fb62bca81565b7fae79a935737012d066e7183032692e521ffe1ade2beda267e23e02b1d6e9118781565b7faa06d108dbd7bf976b16b7bf5adb29d2d0ef2c385ca8b9d833cc802f33942d7281565b610be97fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b610c1f576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016000826002811115610c3657610c3561177c565b5b6002811115610c4857610c4761177c565b5b815260200190815260200160002060006101000a81549060ff02191690557f3f178f17dae6caf8ca09c4857502baf7744e8597de42d6596476fe9e06b8ad4781604051610c9591906118bc565b60405180910390a150565b6000600260008481526020019081526020016000206000836002811115610cca57610cc961177c565b5b6002811115610cdc57610cdb61177c565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b7f54953c23068b8fc4c0736301b50f10027d6b469327de1fd42841a5072b1bcebe81565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f27d764ea2a4a3865434bbf4a391110149644be31448f3479fd15b4438875576581565b6000801b81565b7f3a68dbfd8bbb64015c42bc131c388dea7965e28c1004d09b39f59500c3a763ec81565b610df982610624565b610e0281610ee7565b610e0c8383610fe3565b505050565b7f080909c18c958ce5a2d36481697824e477319323d03154ceba3b78f28a61887b81565b7fb4bf999b68d8085dbbf7a0ec2f5a2d660873935bdf1ed08eb421ac6dcbc0036281565b7fdd5b9b8a5e8e01f2962ed7e983d58fe32e1f66aa88dd7ab30770fa9b77da724381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610ef881610ef3610fdb565b6110c4565b50565b610f058282610d37565b610fd757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f7c610fdb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b610fed8282610d37565b156110c057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611065610fdb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6110ce8282610d37565b611145576110db81611149565b6110e98360001c6020611176565b6040516020016110fa9291906119e0565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c9190611a64565b60405180910390fd5b5050565b606061116f8273ffffffffffffffffffffffffffffffffffffffff16601460ff16611176565b9050919050565b6060600060028360026111899190611abf565b6111939190611b01565b67ffffffffffffffff8111156111ac576111ab611b35565b5b6040519080825280601f01601f1916602001820160405280156111de5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061121657611215611b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061127a57611279611b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026112ba9190611abf565b6112c49190611b01565b90505b6001811115611364577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061130657611305611b64565b5b1a60f81b82828151811061131d5761131c611b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061135d90611b93565b90506112c7565b50600084146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90611c08565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6113ec816113b7565b81146113f757600080fd5b50565b600081359050611409816113e3565b92915050565b600060208284031215611425576114246113b2565b5b6000611433848285016113fa565b91505092915050565b60008115159050919050565b6114518161143c565b82525050565b600060208201905061146c6000830184611448565b92915050565b6000819050919050565b61148581611472565b82525050565b60006020820190506114a0600083018461147c565b92915050565b6114af81611472565b81146114ba57600080fd5b50565b6000813590506114cc816114a6565b92915050565b6000602082840312156114e8576114e76113b2565b5b60006114f6848285016114bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061152a826114ff565b9050919050565b61153a8161151f565b811461154557600080fd5b50565b60008135905061155781611531565b92915050565b60008060408385031215611574576115736113b2565b5b6000611582858286016114bd565b925050602061159385828601611548565b9150509250929050565b600381106115aa57600080fd5b50565b6000813590506115bc8161159d565b92915050565b600080604083850312156115d9576115d86113b2565b5b60006115e7858286016114bd565b92505060206115f8858286016115ad565b9150509250929050565b61160b8161151f565b82525050565b60006020820190506116266000830184611602565b92915050565b600080600060608486031215611645576116446113b2565b5b6000611653868287016114bd565b9350506020611664868287016115ad565b925050604061167586828701611548565b9150509250925092565b600060208284031215611695576116946113b2565b5b60006116a384828501611548565b91505092915050565b6000602082840312156116c2576116c16113b2565b5b60006116d0848285016115ad565b91505092915050565b600082825260208201905092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611746602f836116d9565b9150611751826116ea565b604082019050919050565b6000602082019050818103600083015261177581611739565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5468652070726f766964656420456e76206973206e6f742076616c696420666f60008201527f72207468697320636f6e74726163740000000000000000000000000000000000602082015250565b6000611807602f836116d9565b9150611812826117ab565b604082019050919050565b60006020820190508181036000830152611836816117fa565b9050919050565b6003811061184e5761184d61177c565b5b50565b600081905061185f8261183d565b919050565b600061186f82611851565b9050919050565b61187f81611864565b82525050565b600060608201905061189a600083018661147c565b6118a76020830185611876565b6118b46040830184611602565b949350505050565b60006020820190506118d16000830184611876565b92915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006119186017836118d7565b9150611923826118e2565b601782019050919050565b600081519050919050565b60005b8381101561195757808201518184015260208101905061193c565b60008484015250505050565b600061196e8261192e565b61197881856118d7565b9350611988818560208601611939565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006119ca6011836118d7565b91506119d582611994565b601182019050919050565b60006119eb8261190b565b91506119f78285611963565b9150611a02826119bd565b9150611a0e8284611963565b91508190509392505050565b6000601f19601f8301169050919050565b6000611a368261192e565b611a4081856116d9565b9350611a50818560208601611939565b611a5981611a1a565b840191505092915050565b60006020820190508181036000830152611a7e8184611a2b565b905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611aca82611a86565b9150611ad583611a86565b9250828202611ae381611a86565b91508282048414831517611afa57611af9611a90565b5b5092915050565b6000611b0c82611a86565b9150611b1783611a86565b9250828201905080821115611b2f57611b2e611a90565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b9e82611a86565b915060008203611bb157611bb0611a90565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000611bf26020836116d9565b9150611bfd82611bbc565b602082019050919050565b60006020820190508181036000830152611c2181611be5565b905091905056fea26469706673582212209cfb64a4057ba9478cee57cf8096c4dcda3cc43308d8a232a381e7e2708797b764736f6c634300081100330000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806375b238fc1161010457806391d14854116100a2578063d547741f11610071578063d547741f14610510578063da19ddfb1461052c578063df3806931461054a578063f8ae93b414610568576101cf565b806391d1485414610486578063977a8070146104b6578063a217fddf146104d4578063ad1c8a86146104f2576101cf565b80638c1536df116100de5780638c1536df146103fe5780638deb38931461041c5780638e8dfd16146104385780639072f83814610468576101cf565b806375b238fc146103a45780637cadf69f146103c257806385cb1191146103e0576101cf565b806336568abe1161017157806351ad0a801161014b57806351ad0a8014610332578063704b6c021461034e57806372823fa71461036a57806374bc813914610388576101cf565b806336568abe146102c85780633ebf7985146102e45780634216e73a14610314576101cf565b80632668f305116101ad5780632668f305146102525780632c0b8bf7146102705780632e4885e81461028e5780632f2ff15d146102ac576101cf565b806301ffc9a7146101d457806316f76bbf14610204578063248a9ca314610222575b600080fd5b6101ee60048036038101906101e9919061140f565b610586565b6040516101fb9190611457565b60405180910390f35b61020c610600565b604051610219919061148b565b60405180910390f35b61023c600480360381019061023791906114d2565b610624565b604051610249919061148b565b60405180910390f35b61025a610643565b604051610267919061148b565b60405180910390f35b610278610667565b604051610285919061148b565b60405180910390f35b61029661068b565b6040516102a3919061148b565b60405180910390f35b6102c660048036038101906102c1919061155d565b6106af565b005b6102e260048036038101906102dd919061155d565b6106d0565b005b6102fe60048036038101906102f991906115c2565b610753565b60405161030b9190611611565b60405180910390f35b61031c610795565b604051610329919061148b565b60405180910390f35b61034c6004803603810190610347919061162c565b6107b9565b005b6103686004803603810190610363919061167f565b61096b565b005b610372610a22565b60405161037f919061148b565b60405180910390f35b6103a2600480360381019061039d91906116ac565b610a46565b005b6103ac610b2f565b6040516103b9919061148b565b60405180910390f35b6103ca610b53565b6040516103d7919061148b565b60405180910390f35b6103e8610b77565b6040516103f5919061148b565b60405180910390f35b610406610b9b565b604051610413919061148b565b60405180910390f35b610436600480360381019061043191906116ac565b610bbf565b005b610452600480360381019061044d91906115c2565b610ca0565b60405161045f9190611611565b60405180910390f35b610470610d13565b60405161047d919061148b565b60405180910390f35b6104a0600480360381019061049b919061155d565b610d37565b6040516104ad9190611457565b60405180910390f35b6104be610da1565b6040516104cb919061148b565b60405180910390f35b6104dc610dc5565b6040516104e9919061148b565b60405180910390f35b6104fa610dcc565b604051610507919061148b565b60405180910390f35b61052a6004803603810190610525919061155d565b610df0565b005b610534610e11565b604051610541919061148b565b60405180910390f35b610552610e35565b60405161055f919061148b565b60405180910390f35b610570610e59565b60405161057d919061148b565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f957506105f882610e7d565b5b9050919050565b7ff14f431dadc82e7dbc5e379f71234e5735c9187e4327a7c6ac014d55d1b7727a81565b6000806000838152602001908152602001600020600101549050919050565b7fb1f79813bc7630a52ae948bc99781397e409d0dd3521953bf7d8d7a2db6147f781565b7fb7b4fde9944d3c13e9a78835431c33a5084d90a7f0c73def76d7886315fe87b081565b7fb931b2719aeb2a65a5035fa0a190bfdc4c8622ce8cbff7a3d1ab42531fb1a91881565b6106b882610624565b6106c181610ee7565b6106cb8383610efb565b505050565b6106d8610fdb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c9061175c565b60405180910390fd5b61074f8282610fe3565b5050565b60026020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f4c41ae454beb6bbbe9be50accc957a3b1536e48b835a86919af981b5244db75581565b6107e37fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b610819576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60011515600160008460028111156108345761083361177c565b5b60028111156108465761084561177c565b5b815260200190815260200160002060009054906101000a900460ff161515146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b9061181d565b60405180910390fd5b806002600085815260200190815260200160002060008460028111156108cd576108cc61177c565b5b60028111156108df576108de61177c565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f33f014890f109229bbcf8dd47204c153a2c0ff1c572a61de220d10336530f53d83838360405161095e93929190611885565b60405180910390a1505050565b6109957fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b6109cb576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f57fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4282610efb565b610a1f7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610fe3565b50565b7fc293b28944ab4199ad0f77d42d49e33b15d60cc12ed2a0b94a0db1d0b719f56181565b610a707fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b610aa6576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001806000836002811115610abe57610abd61177c565b5b6002811115610ad057610acf61177c565b5b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f839ad2743d4062df579edf3818f642b71ee0688a35d6bc4438ef5314cece801581604051610b2491906118bc565b60405180910390a150565b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b7f74845de37cfabd357633214b47fa91ccd19b05b7c5a08ac22c187f811fb62bca81565b7fae79a935737012d066e7183032692e521ffe1ade2beda267e23e02b1d6e9118781565b7faa06d108dbd7bf976b16b7bf5adb29d2d0ef2c385ca8b9d833cc802f33942d7281565b610be97fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4233610d37565b610c1f576040517fc890f84a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016000826002811115610c3657610c3561177c565b5b6002811115610c4857610c4761177c565b5b815260200190815260200160002060006101000a81549060ff02191690557f3f178f17dae6caf8ca09c4857502baf7744e8597de42d6596476fe9e06b8ad4781604051610c9591906118bc565b60405180910390a150565b6000600260008481526020019081526020016000206000836002811115610cca57610cc961177c565b5b6002811115610cdc57610cdb61177c565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b7f54953c23068b8fc4c0736301b50f10027d6b469327de1fd42841a5072b1bcebe81565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f27d764ea2a4a3865434bbf4a391110149644be31448f3479fd15b4438875576581565b6000801b81565b7f3a68dbfd8bbb64015c42bc131c388dea7965e28c1004d09b39f59500c3a763ec81565b610df982610624565b610e0281610ee7565b610e0c8383610fe3565b505050565b7f080909c18c958ce5a2d36481697824e477319323d03154ceba3b78f28a61887b81565b7fb4bf999b68d8085dbbf7a0ec2f5a2d660873935bdf1ed08eb421ac6dcbc0036281565b7fdd5b9b8a5e8e01f2962ed7e983d58fe32e1f66aa88dd7ab30770fa9b77da724381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610ef881610ef3610fdb565b6110c4565b50565b610f058282610d37565b610fd757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f7c610fdb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b610fed8282610d37565b156110c057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611065610fdb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6110ce8282610d37565b611145576110db81611149565b6110e98360001c6020611176565b6040516020016110fa9291906119e0565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c9190611a64565b60405180910390fd5b5050565b606061116f8273ffffffffffffffffffffffffffffffffffffffff16601460ff16611176565b9050919050565b6060600060028360026111899190611abf565b6111939190611b01565b67ffffffffffffffff8111156111ac576111ab611b35565b5b6040519080825280601f01601f1916602001820160405280156111de5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061121657611215611b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061127a57611279611b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026112ba9190611abf565b6112c49190611b01565b90505b6001811115611364577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061130657611305611b64565b5b1a60f81b82828151811061131d5761131c611b64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061135d90611b93565b90506112c7565b50600084146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90611c08565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6113ec816113b7565b81146113f757600080fd5b50565b600081359050611409816113e3565b92915050565b600060208284031215611425576114246113b2565b5b6000611433848285016113fa565b91505092915050565b60008115159050919050565b6114518161143c565b82525050565b600060208201905061146c6000830184611448565b92915050565b6000819050919050565b61148581611472565b82525050565b60006020820190506114a0600083018461147c565b92915050565b6114af81611472565b81146114ba57600080fd5b50565b6000813590506114cc816114a6565b92915050565b6000602082840312156114e8576114e76113b2565b5b60006114f6848285016114bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061152a826114ff565b9050919050565b61153a8161151f565b811461154557600080fd5b50565b60008135905061155781611531565b92915050565b60008060408385031215611574576115736113b2565b5b6000611582858286016114bd565b925050602061159385828601611548565b9150509250929050565b600381106115aa57600080fd5b50565b6000813590506115bc8161159d565b92915050565b600080604083850312156115d9576115d86113b2565b5b60006115e7858286016114bd565b92505060206115f8858286016115ad565b9150509250929050565b61160b8161151f565b82525050565b60006020820190506116266000830184611602565b92915050565b600080600060608486031215611645576116446113b2565b5b6000611653868287016114bd565b9350506020611664868287016115ad565b925050604061167586828701611548565b9150509250925092565b600060208284031215611695576116946113b2565b5b60006116a384828501611548565b91505092915050565b6000602082840312156116c2576116c16113b2565b5b60006116d0848285016115ad565b91505092915050565b600082825260208201905092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611746602f836116d9565b9150611751826116ea565b604082019050919050565b6000602082019050818103600083015261177581611739565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5468652070726f766964656420456e76206973206e6f742076616c696420666f60008201527f72207468697320636f6e74726163740000000000000000000000000000000000602082015250565b6000611807602f836116d9565b9150611812826117ab565b604082019050919050565b60006020820190508181036000830152611836816117fa565b9050919050565b6003811061184e5761184d61177c565b5b50565b600081905061185f8261183d565b919050565b600061186f82611851565b9050919050565b61187f81611864565b82525050565b600060608201905061189a600083018661147c565b6118a76020830185611876565b6118b46040830184611602565b949350505050565b60006020820190506118d16000830184611876565b92915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006119186017836118d7565b9150611923826118e2565b601782019050919050565b600081519050919050565b60005b8381101561195757808201518184015260208101905061193c565b60008484015250505050565b600061196e8261192e565b61197881856118d7565b9350611988818560208601611939565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006119ca6011836118d7565b91506119d582611994565b601182019050919050565b60006119eb8261190b565b91506119f78285611963565b9150611a02826119bd565b9150611a0e8284611963565b91508190509392505050565b6000601f19601f8301169050919050565b6000611a368261192e565b611a4081856116d9565b9350611a50818560208601611939565b611a5981611a1a565b840191505092915050565b60006020820190508181036000830152611a7e8184611a2b565b905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611aca82611a86565b9150611ad583611a86565b9250828202611ae381611a86565b91508282048414831517611afa57611af9611a90565b5b5092915050565b6000611b0c82611a86565b9150611b1783611a86565b9250828201905080821115611b2f57611b2e611a90565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b9e82611a86565b915060008203611bb157611bb0611a90565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000611bf26020836116d9565b9150611bfd82611bbc565b602082019050919050565b60006020820190508181036000830152611c2181611be5565b905091905056fea26469706673582212209cfb64a4057ba9478cee57cf8096c4dcda3cc43308d8a232a381e7e2708797b764736f6c63430008110033