Contract
0xD72a0Bd8d2a966Da1e7e57aa5E55d33E8300EAA7
11
Contract Overview
My Name Tag:
Not Available
[ Download CSV Export ]
Similar Match Source Code This contract matches the deployed ByteCode of the Source Code for Contract 0x68A882b3DeE4cd1346690C9C4CdAb89e7Adeb311 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
UWUVesting
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2023-06-13 */ // SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // OpenZeppelin Contracts v4.4.1 (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) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) /* ========== ERRORS ========== */ /** * @notice Used when payees and shares array are not same length. */ error PayeesAndSharesLengthMismatch(); /** * @notice Used when payees provided. */ error NoPayeesProvided(); /** * @notice Used when start date is not set in the future. */ error StartDateMustBeNonZeroValue(); /** * @notice Used when duration is set to zero. */ error DurationMustBeNonZeroValue(); /** * @notice Used when account has no shares. */ error AccountHasNoShares(); /** * @notice Used when account is not due payment */ error AccountNotDuePayment(); /** * @notice Used when account is the zero address */ error AccountZeroAddress(); /** * @notice Used when payee shares are zero */ error PayeeSharesZero(); /** * @notice Used when account already has shares */ error AccountPayeeSharesAlreadySet(); /** * @title VestingSplitter */ contract UWUVesting is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(IERC20 indexed token, address to, uint256 amount); IERC20 public token; uint256 private _vestedAtStart; uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _released; mapping(address => uint256) private _shares; address[] private _payees; uint256 private immutable _start; uint256 private immutable _duration; /** * @dev Creates an instance of `VestingSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor( uint256 startTimestamp, uint256 durationSeconds, IERC20 token_, address[] memory payees, uint256[] memory shares_, uint256 vestedAtStart_ ) { if (durationSeconds == 0) revert DurationMustBeNonZeroValue(); if (startTimestamp == 0) revert StartDateMustBeNonZeroValue(); if (payees.length != shares_.length) revert PayeesAndSharesLengthMismatch(); if (payees.length == 0) revert NoPayeesProvided(); _start = startTimestamp; _duration = durationSeconds; _vestedAtStart = vestedAtStart_; token = token_; for (uint256 i = 0; i < payees.length; ++i) { _addPayee(payees[i], shares_[i]); } } /** * @dev Getter for the start timestamp. */ function start() external view returns (uint256) { return _start; } /** * @dev Getter for the vesting duration. */ function duration() external view returns (uint256) { return _duration; } /** * @dev Calculates the amount of UWU tokens that has already vested. * Default implementation is a linear vesting curve. */ function vestedAmount(uint64 timestamp) public view returns (uint256) { return _vestingSchedule(IERC20(token).balanceOf(address(this)) + _totalReleased - _vestedAtStart, timestamp) + _vestedAtStart; } /** * @notice Returns amount that can be released based on amount vested in vesting wallet */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = vestedAmount(uint64(block.timestamp)); return (totalReceived * _shares[account]) / _totalShares - _released[account]; } /** * @dev Getter for the total shares held by payees. */ function totalShares() external view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of UWU already released. */ function totalReleased() external view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) external view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of UWU tokens already released to a payee. * @param account Beneficiary */ function released(address account) external view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) external view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(address account) external { if (_shares[account] == 0) revert AccountHasNoShares(); uint256 payment = releasable(account); if (payment == 0) revert AccountNotDuePayment(); // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token]. // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment" // cannot overflow. _totalReleased += payment; unchecked { _released[account] += payment; } SafeERC20.safeTransfer(token, account, payment); emit PaymentReleased(token, account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { if (account == address(0)) revert AccountZeroAddress(); if (shares_ == 0) revert PayeeSharesZero(); if (_shares[account] != 0) revert AccountPayeeSharesAlreadySet(); _payees.push(account); _shares[account] = shares_; _totalShares += shares_; emit PayeeAdded(account, shares_); } /** * @dev Virtual implementation of the vesting formula. This returns the amount vested, as a function of time, for * an asset given its total historical allocation. */ function _vestingSchedule(uint256 totalAllocation, uint64 timestamp) private view returns (uint256) { if (timestamp < _start) { return 0; } else if (timestamp > _start + _duration) { return totalAllocation; } else { return (totalAllocation * (timestamp - _start)) / _duration; } } }
[{"inputs":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"durationSeconds","type":"uint256"},{"internalType":"contract IERC20","name":"token_","type":"address"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares_","type":"uint256[]"},{"internalType":"uint256","name":"vestedAtStart_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccountHasNoShares","type":"error"},{"inputs":[],"name":"AccountNotDuePayment","type":"error"},{"inputs":[],"name":"AccountPayeeSharesAlreadySet","type":"error"},{"inputs":[],"name":"AccountZeroAddress","type":"error"},{"inputs":[],"name":"DurationMustBeNonZeroValue","type":"error"},{"inputs":[],"name":"NoPayeesProvided","type":"error"},{"inputs":[],"name":"PayeeSharesZero","type":"error"},{"inputs":[],"name":"PayeesAndSharesLengthMismatch","type":"error"},{"inputs":[],"name":"StartDateMustBeNonZeroValue","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"timestamp","type":"uint64"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162000fb538038062000fb5833981016040819052620000349162000393565b846000036200005657604051634d95cfb360e01b815260040160405180910390fd5b85600003620000785760405163f8a51a6560e01b815260040160405180910390fd5b81518351146200009b5760405163fa2d41bd60e01b815260040160405180910390fd5b8251600003620000be57604051634aba39d760e01b815260040160405180910390fd5b608086905260a08590526001819055600080546001600160a01b0319166001600160a01b0386161781555b835181101562000150576200013d8482815181106200010c576200010c62000496565b602002602001015184838151811062000129576200012962000496565b60200260200101516200015d60201b60201c565b6200014881620004c2565b9050620000e9565b50505050505050620004fa565b6001600160a01b038216620001855760405163e98b993960e01b815260040160405180910390fd5b80600003620001a75760405163cab7859360e01b815260040160405180910390fd5b6001600160a01b03821660009081526005602052604090205415620001df57604051634abefd0f60e01b815260040160405180910390fd5b60068054600181019091557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b0384169081179091556000908152600560205260408120829055600280548392906200024d908490620004de565b9091555050604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6001600160a01b0381168114620002ae57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620002f257620002f2620002b1565b604052919050565b60006001600160401b03821115620003165762000316620002b1565b5060051b60200190565b600082601f8301126200033257600080fd5b815160206200034b6200034583620002fa565b620002c7565b82815260059290921b840181019181810190868411156200036b57600080fd5b8286015b848110156200038857805183529183019183016200036f565b509695505050505050565b60008060008060008060c08789031215620003ad57600080fd5b8651955060208088015195506040880151620003c98162000298565b60608901519095506001600160401b0380821115620003e757600080fd5b818a0191508a601f830112620003fc57600080fd5b81516200040d6200034582620002fa565b81815260059190911b8301840190848101908d8311156200042d57600080fd5b938501935b8285101562000458578451620004488162000298565b8252938501939085019062000432565b60808d015190985094505050808311156200047257600080fd5b50506200048289828a0162000320565b92505060a087015190509295509295509295565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620004d757620004d7620004ac565b5060010190565b80820180821115620004f457620004f4620004ac565b92915050565b60805160a051610a73620005426000396000818160f6015281816104bc015261051b0152600081816101a00152818161047f015281816104dd015261053f0152610a736000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80639852595c11610081578063ce7c2ac21161005b578063ce7c2ac2146101c4578063e33b7de3146101ed578063fc0c546a146101f557600080fd5b80639852595c14610162578063a3f8eace1461018b578063be9a65551461019e57600080fd5b806319165587116100b2578063191655871461011a5780633a98ef391461012f5780638b83209b1461013757600080fd5b80630a17b06b146100ce5780630fb5a6b4146100f4575b600080fd5b6100e16100dc366004610898565b610208565b6040519081526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006100e1565b61012d6101283660046108c2565b6102c5565b005b6002546100e1565b61014a6101453660046108eb565b6103ee565b6040516001600160a01b0390911681526020016100eb565b6100e16101703660046108c2565b6001600160a01b031660009081526004602052604090205490565b6100e16101993660046108c2565b61041e565b7f00000000000000000000000000000000000000000000000000000000000000006100e1565b6100e16101d23660046108c2565b6001600160a01b031660009081526005602052604090205490565b6003546100e1565b60005461014a906001600160a01b031681565b600154600354600080546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529193926102b59284926001600160a01b0316906370a0823190602401602060405180830381865afa158015610277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029b9190610904565b6102a59190610933565b6102af9190610946565b8461047b565b6102bf9190610933565b92915050565b6001600160a01b0381166000908152600560205260408120549003610316576040517f7f08beb900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006103218261041e565b90508060000361035d576040517fa226804f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806003600082825461036f9190610933565b90915550506001600160a01b038083166000908152600460205260408120805484019055546103a091168383610582565b600054604080516001600160a01b03858116825260208201859052909216917f8ac5b3c2902b21b6bbb4d99ec195e28a242cb6a1777804db10b84d91e2006429910160405180910390a25050565b60006006828154811061040357610403610959565b6000918252602090912001546001600160a01b031692915050565b60008061042a42610208565b6001600160a01b03841660009081526004602090815260408083205460025460059093529220549293509091610460908461096f565b61046a9190610986565b6104749190610946565b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000008267ffffffffffffffff1610156104b7575060006102bf565b6105017f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610933565b8267ffffffffffffffff1611156105195750816102bf565b7f000000000000000000000000000000000000000000000000000000000000000061056e7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff8516610946565b610578908561096f565b6104749190610986565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610602908490610607565b505050565b600061065c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166106f19092919063ffffffff16565b805190915015610602578080602001905181019061067a91906109a8565b6106025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60606107008484600085610708565b949350505050565b6060824710156107805760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016106e8565b600080866001600160a01b0316858760405161079c91906109ee565b60006040518083038185875af1925050503d80600081146107d9576040519150601f19603f3d011682016040523d82523d6000602084013e6107de565b606091505b50915091506107ef878383876107fa565b979650505050505050565b60608315610869578251600003610862576001600160a01b0385163b6108625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106e8565b5081610700565b610700838381511561087e5781518083602001fd5b8060405162461bcd60e51b81526004016106e89190610a0a565b6000602082840312156108aa57600080fd5b813567ffffffffffffffff8116811461047457600080fd5b6000602082840312156108d457600080fd5b81356001600160a01b038116811461047457600080fd5b6000602082840312156108fd57600080fd5b5035919050565b60006020828403121561091657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156102bf576102bf61091d565b818103818111156102bf576102bf61091d565b634e487b7160e01b600052603260045260246000fd5b80820281158282048414176102bf576102bf61091d565b6000826109a357634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156109ba57600080fd5b8151801515811461047457600080fd5b60005b838110156109e55781810151838201526020016109cd565b50506000910152565b60008251610a008184602087016109ca565b9190910192915050565b6020815260008251806020840152610a298160408501602087016109ca565b601f01601f1916919091016040019291505056fea2646970667358221220237681a044b94b377523433d7f89a824757c131d63900de91c5ff89f4969f7e364736f6c6343000811003300000000000000000000000000000000000000000000000000000000648b43900000000000000000000000000000000000000000000000000000000001e2850000000000000000000000000005d35769a222affd6185e20f3f3676abde56c25f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000002b20000000000000000000000000000000000000000000014adf4b7320334b9000000000000000000000000000000000000000000000000000000000000000000152000000000000000000000000697947de88d236ce1f2b0caf35d5c899591acce000000000000000000000000032e252276b2026a5fc23361d9b270193305ac1520000000000000000000000008bb409f798b10f51952c62efc81def627392e6780000000000000000000000001cf938e05731e0eec4ab5934a3fb1429e536e0c3000000000000000000000000352ee8078d027dc4cc4a8c1d129135e4680346fc00000000000000000000000031f9d07dc15e467b47866832b6e84e27156316780000000000000000000000009d4b4397e98a442832992950555f4e21012ae1a0000000000000000000000000e10faad9acded80f0a9ebb7b445460da6cc88d7a0000000000000000000000008da4e44498727a66163febb5b28063a630966a87000000000000000000000000f085ff38d37c79856caa392c2e4313140ed675ac000000000000000000000000ffddfdcae66bbc1cb9f9f12d5f631c5d68dff537000000000000000000000000d02d3f9bcdfd3e849285f683b38b6af7d73e456300000000000000000000000022162059ab6c4267edb80a41ae22c7df7617a08900000000000000000000000004a4cbac5783757993cd38a7e66ca5ab599c4ac20000000000000000000000009923f1cd43578ad33b4f714d7cef8facf44d35a3000000000000000000000000ad79d674cf7510d47707094650cef04c6f1fa06900000000000000000000000069bdb26fec6abbf3d04c8097da40fe76be9343a0000000000000000000000000a332f6fcd76c0f3627a3a4ee17ddfbcf967d18f5000000000000000000000000f2fa246ead2b0be187555ff52fb1b805fd8076c80000000000000000000000001e5debf2be2a644321a5161d8f41baf8dbed17f20000000000000000000000007c2a3762e130a398671f112efaa99b45ac1eaaec000000000000000000000000af6cb9bd5c99cda73f6bdd57b0273d2de584f45a000000000000000000000000a2904d69c0679ba6e3a996d9084c532ccc14991400000000000000000000000073542b10671fea1e08ebea14aba6133e87b6a61e00000000000000000000000061eb1a24ea8a2a2fab87d752cc7de0fb1975adcd0000000000000000000000006e9e4e74cab8170804e5218a75f87a73b08abdd000000000000000000000000028122d60a00d66be75e8fc7754342142a7e4805c000000000000000000000000c61676c3d4f588f4c2eb3f3cee03e84f36c8bd490000000000000000000000007b8c4cbaf70e89a3abcc0d37ecab3d1dd7181d0d000000000000000000000000457c48eb34b76a58811efd8c0bbf004909d5b47100000000000000000000000059e6adf593c3833a7016375c455649088d638c79000000000000000000000000c98829f053614b5b7574bcb1daaa527fc0ce887100000000000000000000000002bcbd18b5ea71c19c920731fef33a04db989d9d0000000000000000000000009f9c5cf1a9a7ce7f435026e050ea6ce5726adccf0000000000000000000000002c0b21c611f4128a9b8d699919a9e94b896125cf0000000000000000000000005d8c325f74c8f084323a64fed9dbd8cf7dfa3a67000000000000000000000000ffd8d0ac453db8a2d2f100cae79698e2abeb4d08000000000000000000000000cb76f503abefc80269163a164179cd03c04dca890000000000000000000000001740c91460ca58ef58219254bee4147d94d3b7d3000000000000000000000000f5372eaf7902a2d0175d5980b78875976a606d5800000000000000000000000019191def798369f6bf4d6e37981822aef2ddd4aa000000000000000000000000e07510350c8ac43fc8e0ebeb612db3ca9455bbaa0000000000000000000000006d7c2e25c31c5e908299ea7022dad5d8bb9d6dc6000000000000000000000000a971fa488ba9cfa08d53fd0dfc04e6358bb773ab00000000000000000000000044bfeb943fece46d5c4e79781930f9b833baa3a8000000000000000000000000463aec8fca9ddeb954dcb6136a3957381d04753e000000000000000000000000c15204349a6f7f9a53c59c65e4b2dab94118bb74000000000000000000000000f6607ad5992f32448d307ddc20f71d88b4fe35a50000000000000000000000000caaa0c6cf6f163a5df4b34228185815bfab1e33000000000000000000000000d1b363a89167bdf76976f30fd6f004a7eac4296200000000000000000000000051bdb4c2d5f66bff124556fdbc195f3b5d349a66000000000000000000000000822f86864da9fe5ca3cab3b7438cf6227f459346000000000000000000000000ed45f03d56a0a2b6bfe7f42fa0b8792130252f4b000000000000000000000000338732b5c1604cfa48bcb5828549b1fc2daae5610000000000000000000000001b516e5697bc03b9747a1ed55ec8d79877641f44000000000000000000000000a7a53041345ca7335a7db22cfef107e05ebbca1600000000000000000000000040b7ee70bfa091deb2ca092869f7c285c7b4d5c3000000000000000000000000084be3ad0debbce7e2bf37fe4ae4834bcc65789f000000000000000000000000e93b89fef7cbce1593bc6b504308666db06059960000000000000000000000008dbb710342316114ee8c8d1a9b9fb2c0da69a574000000000000000000000000bbf156a4e2768c059f5eb69cec79fcac04b31a050000000000000000000000005d05ddffe8fe17c411b5e8fa8198e3d0785803320000000000000000000000007ede2bf2c0c6ab73c829241bc824fbd24d553ec00000000000000000000000000139fe0b66d9ea5b7b597c2a6c662eae27cf9a76000000000000000000000000b0eced8e8d0ac54d3582bf4d40630774e5f7fa61000000000000000000000000a8d8550b5be1e9536a51ea16ce6eac3bccb68035000000000000000000000000a44d614d545e59f859d00401fefe88a6046f342f000000000000000000000000da1e797e5ad09d3e087143c3e7e494ea52bd3f450000000000000000000000008be328479dcf71e58ee8590373ef5451b515b607000000000000000000000000b75fa52b7a2190dbc29465c247efd3aaae121577000000000000000000000000e6304d7c67532b2a8a3d3d030ec106682b2ef9f2000000000000000000000000c7fc5b8f3bd9d8515f9823383b92cc646dccafa3000000000000000000000000c546f3928a988e384e7fec2bb8499732ea16c0d40000000000000000000000005183532474864d4734992ed9caff07ac833e9c14000000000000000000000000bd31655be236f9de9fa947c4562c40a609794be50000000000000000000000000fb91daa49e15045428ead5046f7a41baf84ea2200000000000000000000000096a1e9896ccee40d96a3a7552dd127f3ab3455e3000000000000000000000000128e05b6fe2f51707f59014d2a12ed347291cd28000000000000000000000000e0598dac2fb172921f8397c722f53ffc217dbab7000000000000000000000000c45649be33d21fdfadeb7b4c116b1d33c442c2090000000000000000000000000c40b04d1f1644895311a6fe5ec4b9a83c454135000000000000000000000000472b8938b57f2cc69d88b8712d73cb72acdffe51000000000000000000000000cfb2718567e2fcc705d75f9315c71bb53472fadd00000000000000000000000067ea69712456e4601e42be932102fbb0972cdd6f000000000000000000000000c59aa8c41e7b5c56ad2ccbf3f70e613039e3afb70000000000000000000000007bb9635e750a100d8c73cf88114175b1e346d495000000000000000000000000e42ff079e15160fef6ca5c553f5e1225445a8c45000000000000000000000000d5ad21fc162452f0ae7c7cd4ac9c8ef1e9c9dd43000000000000000000000000879c2ee5adc372d0542d65d80ebfe647ac1a5f1000000000000000000000000086bc4aebd75f6323795b132394a26a3a8d94c3cb0000000000000000000000004f23a06ad96b2bed054624ceb25967a2fbbe5a36000000000000000000000000f790d735ea4dca6f152b86cc7e32e043bdd0bb88000000000000000000000000b648e2101bf8eea3e662970c2dd83ed38149bf7c000000000000000000000000260d9beb95fb42eeebd73eac9da624fff289a98600000000000000000000000087cc852bc2174e2adba2692ce93d2003b52b4ae0000000000000000000000000e673e99de0c1f123786d8d22f405ee9bf6373ade000000000000000000000000a26c13e7f59fe3b50440501e2b313201eb439c4b000000000000000000000000b8b7fbd673700f46215d2bf60baf20621b4412f4000000000000000000000000041d8fcb729ccdda39c91137d1ccf8a567c1663e0000000000000000000000000d132ef3cbc4afffd6c0c2edc641d8a58ade0475000000000000000000000000fc11f357a4aa1d6fec4ab6b71dc55c20000832b0000000000000000000000000a6d9a105163fc67a61f0a4d1d5c4032a1e51501b0000000000000000000000003f6bb043efd6cb4e0d562a8477c243bef66b5fa90000000000000000000000004164a39dabcb13c555bd795a64c59a2b31febc9e00000000000000000000000021982cda6603df4eecd8566d19640b9291d91216000000000000000000000000b9040d98bca653ec28bd3eb3ad5d5351e0f58495000000000000000000000000a82468ae530c86902044263437627e7ed83a0965000000000000000000000000696250d5b92afa0fe04404312d058747934ece92000000000000000000000000bad73848c943d908c8ed748c54ab6cd5c90d4f79000000000000000000000000adce082bfc02a29d4d9bf7691103b33b7a65bd47000000000000000000000000104736c219cae5021bcb1978c18ba044f4573cdc00000000000000000000000029ad08bceaa6f5c6bf6b5a23433334170ad7b2d100000000000000000000000086008ae0f9c0032dc9bf3ef03c9d1571e0995a58000000000000000000000000af6ab33e78043dcc53be043a6f2f7badee4b4b440000000000000000000000000037a35113429e58013a5051c2f139984c87afd900000000000000000000000025c607652ccb73059a8999cec37aae695829ac7700000000000000000000000033ed54fe330510092ef15eb217c929739fd7ec8700000000000000000000000032caf65a5ffee570c08ddca106d1c131f7eb6e63000000000000000000000000edd1b5fc2f7ed8affb3a2b4e5b6d2f9050e98dc1000000000000000000000000992457f948ef9de03b916702f185b1bfd6d06387000000000000000000000000d596fa42a284327bb53939aeb4664304a0e2439d0000000000000000000000003138f8a28b9fcf28c55cfef5a129a82240c056360000000000000000000000003eb164c99a6fbd4e15d3529248a0a51a6dea950f0000000000000000000000001ff4b56a93048f49dd5b2c720496c01cf1bc3754000000000000000000000000c6836d5d4adfca3fea1363463e8d312ffe0046a60000000000000000000000003fae79c195030e358eb7af78711da829f9f83a8e000000000000000000000000f694381ed758b6293e3c33396bf9d5939af82b3a000000000000000000000000adb201ba46248b336ce46e2f1be5ab2615d5b5f7000000000000000000000000dfc8129e6aaaaac3709db57cd32feef58e860fda00000000000000000000000031b41f54ea283e9fabc73f2c23bc2e28c224c41c000000000000000000000000e49b8e3e47630ea7bf6a4247fce11390a6834e980000000000000000000000002ad0dba763ced45e6c2c1f2ddc0d2231ea0052e5000000000000000000000000663873d726cfe32f7d52605ab306c6df9e5b6a8700000000000000000000000011d5736d22c734387b8d80428064770719207f680000000000000000000000000e94a8bfbd58c98b4099cfa44d9e2a6cf5a6fdfa0000000000000000000000008e8b63a177765f7dac85352a28e4346a64c905ed00000000000000000000000039162a496b909bc766e61b882577070155cd08f4000000000000000000000000345069cf0b791dc794c991f97011a33fd19f57370000000000000000000000002ef84ee611d826d3ad15542a403053163ae3992b000000000000000000000000311541ae5539273a95faded4dfaeda5e4ad7f7520000000000000000000000009270bbf327ff78a066bd28d66a8c5f6f4362d314000000000000000000000000f135d751ffa71d70bf631e558f5e50dc390e482c000000000000000000000000ecb364515c07434ee4e8311281417d4c0a5fd49600000000000000000000000011887b49e95e04b9396eddb66ee696d3b1606e3a00000000000000000000000069ec29a99b82a94fc34b747b796a1ee34946ca57000000000000000000000000aaa04785db9a3875020c5c1a89b8dc29d13fd813000000000000000000000000fb7656d51c12ad2c2380185cf166935fb53e248f00000000000000000000000041f100baa77a8f1f2819a005a0c941ec714a9a440000000000000000000000004faab44e26f4660ff41bb6b012bddae8c7d669950000000000000000000000008b96b0e94757b9ae1e48787340cf4548f3857f2c0000000000000000000000008520e017dfc1c0ff2c369b301150e1ba373f6e96000000000000000000000000431c6afa3e16e9919d34540ed008e0def2c8b6da000000000000000000000000ee9f5e22f9c06487193cd5d981d42ae16d8f683400000000000000000000000077d352647bd6054ce541ee9c08f2830cf31b878f00000000000000000000000066f6794168b6e0c8a55a675ea262625304e755f700000000000000000000000062795088c8fbcadcdab94819537417aac10480ef0000000000000000000000006ad6e8a4f2dadfa45e4804e77db25e4fc213110900000000000000000000000088b6d4f9afb9cdfe982c36980934be4b729f842d0000000000000000000000007b52405200a1933d4bbfb8320746b9daeec1c19e000000000000000000000000d5c8885f41fb1503a1ea06f3194e24182b4cd22b00000000000000000000000033fee6eb98335e375bd135c819cb3fd0b4c57c76000000000000000000000000e6ba65e9d795d4426154cc199a047c74a073869b0000000000000000000000007518290d51fa5670f5d63d4afa656e976d377c6c000000000000000000000000c3e5336272c06e89908172a81aa692fb36d5e6170000000000000000000000001c6cc6804669a6addbb495c6be186f2d66d8836200000000000000000000000011c1ba438e92ca80d10e7b1c4dc38c7900f7f8e4000000000000000000000000a505baf6421c3076e19788c63b1e040fe93e558a000000000000000000000000905e98e1ca463af19c8a319d9c1731ef496eb6cb0000000000000000000000006c2e00f65595c7bfe5a1b93162cae96d73c606e30000000000000000000000000771ef75c4940768e694eb88b56a9484add3490b0000000000000000000000009abab7274bb9dc6b2f4a9653ae58a5f3405d56fe000000000000000000000000b7866dff7395be22985262b03527b19ddac594840000000000000000000000001e9ad15320f0e9e96858eeb01888ab5a49f66284000000000000000000000000acf8d6751f89775d9c3c5c9f17eea76f1344df93000000000000000000000000a59725de144d19b6dcafc6f92cb8a35c6526dcd000000000000000000000000000a538e05929a5f55ea92125ed26a37c35433a1c0000000000000000000000008997023f133edfb50af47e950fe38f7601166e7800000000000000000000000077e18a71b3d708ffc92f9697f202771ce9a770190000000000000000000000003f80e3914fe25a08cef244488f2bb54e7c4174cd000000000000000000000000f88dcadb2078999b068c0018f8a7295610371f4300000000000000000000000017cb1fd958771fa34c4f85b9547b90a54419f1f10000000000000000000000005e11a833d112e973661040e062f1aedfb2bcec1d000000000000000000000000f642c65c643be08164ca98f947f19e4b7b9f2e6900000000000000000000000041cced3ba314108aa0c940f6a93391d1cf406814000000000000000000000000baaee54283b769ce583164fdede190b9112430710000000000000000000000003273623099651a2818b35ac4b4cf27de0f1745190000000000000000000000008607e28b46e85995cf60fb9d7a009c298a0f66c3000000000000000000000000d86c92b6169f0e3ef07e2d85aad796744e38d1e5000000000000000000000000983e6eb26cb9775e40c8c9346bca4fcae8dac5da000000000000000000000000836b384a578ceaed590505f54f6ee6c07f3a2592000000000000000000000000d91976767b5f60af552ebb63de757973d0c2c2f500000000000000000000000003e83b1ddafb343a39edce8687b852ee97fd9a29000000000000000000000000059c2918dc826f52bde27aa86763a0c102ba5509000000000000000000000000ef239e72c68778d145d4d9f7a48ea1727cdf1be200000000000000000000000039a9ebc72fa4dc271b308fcbf1c1b185d5d9586a0000000000000000000000009796d10ef6a93602dc3346957ce9357a3b3d169e0000000000000000000000000e4a29f394ad4a1404d595a89343a67f5c0332d0000000000000000000000000e771bdd4d299ba42ecb9e19d34d6eaa2731c3101000000000000000000000000c81e761d57d3e515adee0db5a89f24c45c8eeff80000000000000000000000004a140bd80cdb5d39cd9453583e4d2fddc04a9fbe0000000000000000000000004d8b46f172c082d8cf20f8b6dc72a134759dfdf00000000000000000000000000a143b5bc28d1a736df78bfe39337d633e69d48000000000000000000000000000dbecfcbc54301f3bb8358cd2bdeeedcd28671000000000000000000000000004448ecb1475731719dcda1ecea1ff664ba82c8e0000000000000000000000005e3110cee30f366e9a431a42b8e1469428cf0012000000000000000000000000d2ea17b08e89df2030c354521b17a47a43bccfa4000000000000000000000000ddb0d12a3374be3a88959d2a6ae99980a678b94b0000000000000000000000004c84c252da7e8c96d74145840c03301084d1b09a00000000000000000000000067a6fb0e8822ac3cfc7f57a0f3cdb1bbe85693d40000000000000000000000003d4fcd5e5fcb60fca9dd4c5144aa970865325803000000000000000000000000513ec41927d5ddefe2328fcd3128c3cbc12449e0000000000000000000000000e240f00ce9635e8a8fb6555896faf45a8fda6fe7000000000000000000000000b4c54444fc878a37d83293e8fc47bcd95d3e1d7d000000000000000000000000ff3f192fbfb1f6775c131bfcd41defc71b5801020000000000000000000000008243ad9c173407eb69907c778232831d7f0531d80000000000000000000000005ae647d27f23969902150ac0fc112c582e0d46a9000000000000000000000000a4e3e6917da1067f917ac976b26bc1202e9dfebd000000000000000000000000e4eacc16bbafa3984d3f2542f6e6d50cf6ef564e0000000000000000000000005042bd882b5ac1aced3835ef6bb77a688c15c6370000000000000000000000005aa65abc65a40e904d13a55d986479dbedd28d1c000000000000000000000000a0a91fbf487b8eea4b4ca0cb7f90d8b65ec2fa8b00000000000000000000000035c3ccbbfcd78f2b3581260c5464a74e58d270490000000000000000000000000ff9a47f861bf9d56ea8f10199a1802ddda9a2c700000000000000000000000071489fc7aeaa3738fec76cfea6d7bd9741faaf20000000000000000000000000424d787a405b027fe2da3f8c59c1aaf542080e8a000000000000000000000000111f0ead056a71d6f370b6c02d0319a37a1211aa000000000000000000000000bf349d5c515f762e9a5d788c62ae309764b2775500000000000000000000000035db7b29b02ee5883b23b882505284286755492300000000000000000000000006f6056a7aeb3cd50dca6fffbbb435f3af694196000000000000000000000000e273a09f9f410c5447c19b1cbc68a0fa83b0568400000000000000000000000064b2c953d3441e0dfa52b08930456b09cf266a4b000000000000000000000000859738168302cbf30cf3af164699c4318de761c90000000000000000000000001e1376df45279c33cbdc2e590d620eac5e35dde400000000000000000000000088c9399865bfb6902dd7b39e1c316b11ae7e32910000000000000000000000007991ad4f9583521e4afc55afd3d4c07113e04c000000000000000000000000004f68091c0fb49d8e6f0dfd78bea1cd905f7bba5f0000000000000000000000000fd406ba3d76aa31affe1c1eb15f993f1598156200000000000000000000000005a70761e86e5c198384b38ecbd24fcd4629ea730000000000000000000000001fe63f2c24d262d46f76433bd49a0816b159ad890000000000000000000000009af433b42f0fa8cfcd32675e9825d01fdf3a6164000000000000000000000000275284f9ed283c204e270390b45ec0cb3917ca2e0000000000000000000000004e4b5e2f3640c5f2d2ebf8315bf0b6371e856471000000000000000000000000858eaf303d2ff5196d2d1090498a76eceb65d16900000000000000000000000089eaf80255d0ab18fe03915cdc13f574ae5f6dbf000000000000000000000000fca399b892f4e8306fc31b312a3399f422976886000000000000000000000000cb1b490763b3affd8dff2fa4657db1b3356f44a400000000000000000000000048b110c9f28d20212e875c8503516088140eb20a000000000000000000000000116244fb4c54479f2614fda191ef67d4db51a880000000000000000000000000de8a8aa1d9e5f076abda972b8396472e5c9a54cc0000000000000000000000005f3b15c50c11f1049725424061bca52315d64b6f0000000000000000000000005acad032409b9559d656253bf0600680425623c1000000000000000000000000f5e248cea461218b4f9883f0d8eb031a02e0f157000000000000000000000000c5a42c85969d677218839b6199d21af7928f3af5000000000000000000000000cb9740503b092e9acf786c725a4800f18c33fbaf00000000000000000000000014a23a9baca1b8770b77736da552789743676b18000000000000000000000000721827c562f4cf1f736acac2d364fc851be31fe8000000000000000000000000adb76f5e1bbded60cd87ed02a81dd5dc38a4c26400000000000000000000000049825650faf87adf22d6ddca8fc9fc6ef911ce620000000000000000000000006571b2a64fc7c8de82a19eb4a6c677fe754612d400000000000000000000000019970e75f879bc0ef3f280c5e527fbab22ede074000000000000000000000000820230dcb4db12b2e355339dd3dc9eb19fd13356000000000000000000000000d025f5fdb76ba3f509c66fee90b4a51da65c223e000000000000000000000000d25b4570c8bb3ca28a69927bb84cc45fd06a90f3000000000000000000000000f0f12e58c3eb5ce9f75060b4b8e294a11f081fa7000000000000000000000000063d1397043bb22964255cea4aacf18b49a490ba0000000000000000000000007fc026e641b9149e61c1d18b5d5d07db9f7ca317000000000000000000000000d1be85324e06033d38d6e33a923ef70d1e6d2b8b0000000000000000000000008f176a360d36c0bc4211986de69f061c74a525870000000000000000000000008e721bf61fa75e74df0d7b2c690e044c060a0a83000000000000000000000000974a6168f080a33a802641119563a1d3241abd6d000000000000000000000000af9dcfccc63d02ba3abe2654bb552415c28465fc000000000000000000000000f16105bae17a91c8a9c06a2ae2c869a79aa4ad42000000000000000000000000f60cc9096086a75dc6c9c1c3704a2c14bb80d12d000000000000000000000000ce12bd75441ed2c9a5b77a8a9580ce1e976a61dc0000000000000000000000008e30626d396a9e21f6aa9bc3a9cc5d8a108659cb0000000000000000000000009138c6971aa20b2c4b31c788aed272f24c1ea6230000000000000000000000001072997b30634dcd47ffb57a47679b366dfeb1760000000000000000000000008f8fe54b4d754b451fc86e99f95f665f45f04fc0000000000000000000000000205554f30db32d684127f6e0922176e8cc36ac04000000000000000000000000bfc4f18358ce07fd9361c5a1b741f08efda115fc000000000000000000000000d312d120a3228e595749848ea266978246016cc9000000000000000000000000f765e3d413387197ec3a0f7a207135a7807b92ad000000000000000000000000850888c5a533e6e76d2566d0018ff4061677b1c30000000000000000000000004854450c93d381b9ff8a9a9de4f2478471a4f0840000000000000000000000002acf5116d300fe9eee00abdb21a53a358ca5020b00000000000000000000000058c416d750af2220016a8748626ca0fceccde9a5000000000000000000000000ea508d78fee233553c90ed2ef084c4937f8a330400000000000000000000000063a75a65f1b40ebf487665b71077372712fa97da0000000000000000000000006181f3e6615ee21d2ec34c1c3e70e6b3f5950133000000000000000000000000d6e3496d73985192e45b7a7a6925b64d8d97d5c70000000000000000000000009664fad4784981e936bec86739501deccf3f100b000000000000000000000000630fcf1aa35ecae9b7a4bf52fb0adf89de575b9000000000000000000000000073a06c0795df05c34360d9c06aea5afc8ccf9535000000000000000000000000690a48da6b0e97a311013ebfb97cb7436212aee8000000000000000000000000755eaf4f8c031f3b6864cbb4af0e2e0a1c8332d3000000000000000000000000530c7cd33bc8640a5dc6ee0ce6b91d221824d843000000000000000000000000afbb0dadc7a0ec9634a911401b3e8334fdee630a000000000000000000000000c8bcab4583ad426affe3be37fe8262a2290b8d0100000000000000000000000031d81a2d77595924609f0ec4853a9492afca65fa0000000000000000000000006215da767870896312d99164b99e495f2039c4e500000000000000000000000090617d9d4ea658e192396e726d4dee5cf1ee0cc8000000000000000000000000a5177832b472cce49caddaebf797140924d00ea300000000000000000000000033aa65bd07a1c0e116915425f35a355335e29fbb000000000000000000000000a4345eb66722e9769885ff9ea134637bf77ad3dd0000000000000000000000005c33a5233838caa7a5a90935d1179aad84e3631400000000000000000000000052599d9e90d82f9d2225ae5b6b4f7a1cd14cface000000000000000000000000600ee47f07a1e3866a82c25efdbe69889c5c08e70000000000000000000000009a9f46b4c1595b3821b4e547b3f6cf0a786d50e2000000000000000000000000c26f149c47345f377a3edbe4bc87c31b2e7c5e790000000000000000000000008715b878662fbddf755a38dd855e77b6bd3b0a7f000000000000000000000000212325c1372a5ee12becc7ccbadaf877947f0a13000000000000000000000000d3dacc5d24486137e004c93e9ad309c3d3fd290f000000000000000000000000faf7e5dad4335e5daedbc3a43ebe677d0898232900000000000000000000000034bbe155fba68833d8161fd71dcfeebd034f73ed000000000000000000000000cbb2534c6898655d50fdac79d6e4b23b18a25b970000000000000000000000005474b2e96105c870cdeaf10acde6ac2f9d01cf4000000000000000000000000092c4a7649e39d75428b8fde3234fe84ed603be9200000000000000000000000006ceb9e8fce7cd5467434a47057105ecaca06e6200000000000000000000000063cdfc259d71f4383065e0d1af901d202cf01d0900000000000000000000000076c38fc5655b8106d04198745c7515da4910a17a00000000000000000000000001a180c1a4a93f01ac3fcb9d6bff8f86154381430000000000000000000000000bbf32b390a59f5eb2639271bb8f7648659c77b8000000000000000000000000fa148900c6f49949b4bc182e3c78d0eb1e71689f000000000000000000000000e60fa98de9a404572aa757e62fa720e711b7d9b70000000000000000000000008a8294ae1a7f6bdb62f6398c66492a9fff2f4977000000000000000000000000c624e664c0edac3f10a035b30e8054cdf1cc00e50000000000000000000000009591bf8941e349d49e53c89b14de1e1dfc704ab0000000000000000000000000d7ea43ef1adcb6a3277370c5582f14222a7aa216000000000000000000000000a092cbf3f80017cf058b786f413c79d0a61c2209000000000000000000000000ffa01308ecc20e279481003df4ec3209ce04b3f5000000000000000000000000d13871cf35bdb480fc5c0da8cb74e0b90c1b12d4000000000000000000000000cf16ee08420cc221b4d578f253a23f3c681fa2d20000000000000000000000009a6a5d62609f7db2aba226862857a89d3da020e3000000000000000000000000aab30bebd9831e86a323c2ff7378f21df3d10dd000000000000000000000000095182594336a8daf02c710eba2cf0f3304a7e4d50000000000000000000000005c16384341d3a8d3796e8524af5615f9b529f44f000000000000000000000000ac49fe5eb0d92ee2d437b4c8a4df2fc943c3bc21000000000000000000000000f62a671133f71b826a28084c7b544520d1d8ed3b0000000000000000000000000000000000000000000000000000000000000152000000000000000000000000000000000000000000000058ed8a19a11e0b00000000000000000000000000000000000000000000000000297ab1844595f3c000000000000000000000000000000000000000000000000013e89b7cbf5c4cac400000000000000000000000000000000000000000000000be64fd45f5dd72f80000000000000000000000000000000000000000000000000f527ee3adef26000000000000000000000000000000000000000000000000019693833c81d980c000000000000000000000000000000000000000000000001bd2d9f19df285ff80000000000000000000000000000000000000000000000000834b0792da51755000000000000000000000000000000000000000000000000003c9755e68fa85d000000000000000000000000000000000000000000000000058b340b3e1c5670000000000000000000000000000000000000000000000002c72b0869f48d56d40000000000000000000000000000000000000000000000000fb7272509c113410000000000000000000000000000000000000000000000001233692f4c4c009800000000000000000000000000000000000000000000000007cdeb88f5349a880000000000000000000000000000000000000000000000000dfbbbf2428ad5b40000000000000000000000000000000000000000000000001b22b8cabddeee68000000000000000000000000000000000000000000000000780789518f09583c0000000000000000000000000000000000000000000000001e8334c38f77b2ac00000000000000000000000000000000000000000000000101510be062c5c23000000000000000000000000000000000000000000000000006d989e995d33694000000000000000000000000000000000000000000000000019cd04c3fa3fc560000000000000000000000000000000000000000000000000f12c4ce5315865c00000000000000000000000000000000000000000000000002ba0ab8f4d96aec0000000000000000000000000000000000000000000000000111380cf0ef80c00000000000000000000000000000000000000000000000000e3b3e9b7f59f65800000000000000000000000000000000000000000000000000410d586a20a4c00000000000000000000000000000000000000000000000000a53c42489edf1f50000000000000000000000000000000000000000000000000a5bd14c1c81cd5c00000000000000000000000000000000000000000000000035f369b72504d3b8000000000000000000000000000000000000000000000000033adf01f5b7f73c0000000000000000000000000000000000000000000000000319a2d041f4a6c000000000000000000000000000000000000000000000000072721809c1a7aa0400000000000000000000000000000000000000000000000003cb38c7f1997d64000000000000000000000000000000000000000000000000375f8fcfe6eb95b00000000000000000000000000000000000000000000000000776f058ce5118c4000000000000000000000000000000000000000000000000be9acd86820ccc9c0000000000000000000000000000000000000000000000001458d9014d11f0b40000000000000000000000000000000000000000000000008561bd743cc505300000000000000000000000000000000000000000000000002cb8f928de26df8c00000000000000000000000000000000000000000000000001f50a74fd990fcd20000000000000000000000000000000000000000000000023934c5a09da190000000000000000000000000000000000000000000000000032d2a407a885948c0000000000000000000000000000000000000000000000001bf3bbfd9a06ca80000000000000000000000000000000000000000000000000271691e8ccc1a8a48000000000000000000000000000000000000000000000000088612c1f5624e6000000000000000000000000000000000000000000000000051119b6f3d65c980000000000000000000000000000000000000000000000000188b20c7d352f8640000000000000000000000000000000000000000000000070065ff185ed5b7800000000000000000000000000000000000000000000000000a79e79a4f23e100000000000000000000000000000000000000000000000000a2b49e6d37adbac000000000000000000000000000000000000000000000000017c5f1ba4600a44000000000000000000000000000000000000000000000000488f90406fc813480000000000000000000000000000000000000000000000000812ef7abfb74451140000000000000000000000000000000000000000000000071b7b689cd986c00000000000000000000000000000000000000000000000000aac3081695b07800000000000000000000000000000000000000000000000000111380cf0ef80c000000000000000000000000000000000000000000000000006662d16ef45ae8a000000000000000000000000000000000000000000000000015920b55f1fce190000000000000000000000000000000000000000000000000042b5e12a266e2060000000000000000000000000000000000000000000000028f767bc2d0b43b800000000000000000000000000000000000000000000000018bc6a41712b06dc0000000000000000000000000000000000000000000000000c12c8681238237000000000000000000000000000000000000000000000000070b685df3e147ec00000000000000000000000000000000000000000000000000c5fe1f392de6b00000000000000000000000000000000000000000000000000038ed72556fa104c000000000000000000000000000000000000000000000000079f905c6fd34e80000000000000000000000000000000000000000000000001548661133a05f80e0000000000000000000000000000000000000000000000001989bd35a9d0ad60000000000000000000000000000000000000000000000000084ca4407411e3a80000000000000000000000000000000000000000000000000101d032f7273e480000000000000000000000000000000000000000000000000085d0ff4b0ca4f800000000000000000000000000000000000000000000000001be335c642a0bbc000000000000000000000000000000000000000000000000323a37938da71f3800000000000000000000000000000000000000000000000004071bd9cc8acaec000000000000000000000000000000000000000000000000010458afc308079800000000000000000000000000000000000000000000000014240ebd8936538680000000000000000000000000000000000000000000000034f190cc31a35e9680000000000000000000000000000000000000000000000004a7c288f98a25b40000000000000000000000000000000000000000000000006c9c8e3768af64f00000000000000000000000000000000000000000000000000376f9088fae23500000000000000000000000000000000000000000000000001b9ad232bbf775d00000000000000000000000000000000000000000000000000786d816ffd12460000000000000000000000000000000000000000000000000089e7fdc55e8f548800000000000000000000000000000000000000000000000056ffc48c23e9a686a000000000000000000000000000000000000000000000001ed1e34067eb48500000000000000000000000000000000000000000000000027b1059c5831be8c9c00000000000000000000000000000000000000000000000037cc8d47a8d90680000000000000000000000000000000000000000000000011c9a62d04ed0c800000000000000000000000000000000000000000000000047795a73767654ad00000000000000000000000000000000000000000000000000f0c0e2e43376dfc000000000000000000000000000000000000000000000000219c680000055f480000000000000000000000000000000000000000000000007f50cf045c946bf0000000000000000000000000000000000000000000000000524d76166f622f780000000000000000000000000000000000000000000000026c7e567be61f8bfa0000000000000000000000000000000000000000000000002cef2b0fc968851000000000000000000000000000000000000000000000000026f4987d8ff9ac200000000000000000000000000000000000000000000000005bb67f6f481b426800000000000000000000000000000000000000000000000000c828ada9764f4c000000000000000000000000000000000000000000000000075a5f02a2b440f0000000000000000000000000000000000000000000000000047bc94a810fe3ac0000000000000000000000000000000000000000000000000c5faa2d5c0acc7f0000000000000000000000000000000000000000000000000a3f9c91576b49810000000000000000000000000000000000000000000000004fa6d12bb2b391ec000000000000000000000000000000000000000000000000739ae1987f22236890000000000000000000000000000000000000000000000018dcef4352de1c300000000000000000000000000000000000000000000000000117a7aa7a502668000000000000000000000000000000000000000000000000032b7ac98b67f50d6a00000000000000000000000000000000000000000000000090754d2592469f0000000000000000000000000000000000000000000000004117d699631e649c0000000000000000000000000000000000000000000000001ffcd7195f61cad00000000000000000000000000000000000000000000000001cf7e0b800e4fb080000000000000000000000000000000000000000000000000cd100e5d6feaba2c20000000000000000000000000000000000000000000000014542ba12a337c000000000000000000000000000000000000000000000000000d5e9c304caaf3a000000000000000000000000000000000000000000000000068494a4b534de640000000000000000000000000000000000000000000000000122c8742c4f5b5000000000000000000000000000000000000000000000000003dd6265227b48440000000000000000000000000000000000000000000000000a90da81b4e9ff3558000000000000000000000000000000000000000000000000d978843fafa0d500000000000000000000000000000000000000000000000004420e8ea74002b0000000000000000000000000000000000000000000000000018650127cc3dc800000000000000000000000000000000000000000000000008216dd9cc7214c4090000000000000000000000000000000000000000000000004f9fcc7f2ca190c000000000000000000000000000000000000000000000000d09755f2b1d91dc400000000000000000000000000000000000000000000000006429e26b416d71400000000000000000000000000000000000000000000000001590303fc42a4ac00000000000000000000000000000000000000000000000007bd68ea7ad5619000000000000000000000000000000000000000000000000000416acdcf3f442400000000000000000000000000000000000000000000000002edae25e5f859040000000000000000000000000000000000000000000000000cb49b44ba602d8000000000000000000000000000000000000000000000000000e8cad43e0910f200000000000000000000000000000000000000000000000000723b286bd20703000000000000000000000000000000000000000000000000058621153e0655e0000000000000000000000000000000000000000000000000743c203e2bdff07c000000000000000000000000000000000000000000000000006d4b09273bda9700000000000000000000000000000000000000000000000001873d484fcdb54c00000000000000000000000000000000000000000000000000374b57f3cef270000000000000000000000000000000000000000000000000059988c6a178acb4000000000000000000000000000000000000000000000000029af76b5e014600000000000000000000000000000000000000000000000000078dd1541640c6a00000000000000000000000000000000000000000000000000f122699637bdee800000000000000000000000000000000000000000000000001bd3ef093adc1a500000000000000000000000000000000000000000000000028147a347fd8ac8800000000000000000000000000000000000000000000000006dc68533171604000000000000000000000000000000000000000000000000001c883d503177e3500000000000000000000000000000000000000000000000005177ebd0edbc5ac00000000000000000000000000000000000000000000000000c79de7f23e074d00000000000000000000000000000000000000000000000004262f276362efd800000000000000000000000000000000000000000000000008e8a64dfc9ebdd000000000000000000000000000000000000000000000000021308226976be1b2000000000000000000000000000000000000000000000000001a16937668f3e880000000000000000000000000000000000000000000000003732e24b6581cfc0000000000000000000000000000000000000000000000000041fcf8693e7c77000000000000000000000000000000000000000000000000046356f6be59bd840000000000000000000000000000000000000000000000000a559224a6a0cb5e0000000000000000000000000000000000000000000000001f9d27b1832d3854000000000000000000000000000000000000000000000000027dc26ac3f4c9df000000000000000000000000000000000000000000000000031a50021fd573a000000000000000000000000000000000000000000000000000ce371ad58b51f00000000000000000000000000000000000000000000000000547918f8c640614000000000000000000000000000000000000000000000000018650127cc3dc8000000000000000000000000000000000000000000000000000b7f77e82000c520000000000000000000000000000000000000000000000000eababf93d46055e0000000000000000000000000000000000000000000000000355a8daf38bf64400000000000000000000000000000000000000000000000000de38cf71bb8359000000000000000000000000000000000000000000000000106fbdad5c46f1f8000000000000000000000000000000000000000000000000019484d30088f65b00000000000000000000000000000000000000000000000037bad3fed7fb1897800000000000000000000000000000000000000000000000037727a9ade0d0a000000000000000000000000000000000000000000000000001c36cc2af0984b0aa00000000000000000000000000000000000000000000000350479fa557c0800000000000000000000000000000000000000000000000001883f9d02d421c2c0000000000000000000000000000000000000000000000000952949cbb75e520000000000000000000000000000000000000000000000000016ccb8c35bc662d00000000000000000000000000000000000000000000000001c5f5bd17028a9600000000000000000000000000000000000000000000000000637f0f001f7fba00000000000000000000000000000000000000000000000000821ab0d44149800000000000000000000000000000000000000000000000000cf5340a590220f8000000000000000000000000000000000000000000000000014d95c16aa8a57400000000000000000000000000000000000000000000000012662e48587f570500000000000000000000000000000000000000000000000006884203fddd21c780000000000000000000000000000000000000000000000002b1c7bf644c9164000000000000000000000000000000000000000000000000365916e4ebaa066000000000000000000000000000000000000000000000000000b2e4b323d9c510000000000000000000000000000000000000000000000000006de8fe23edec1600000000000000000000000000000000000000000000000047fa5c3d7cc9002cc00000000000000000000000000000000000000000000000b041969c5bd0151c00000000000000000000000000000000000000000000000005561840b4ad83c00000000000000000000000000000000000000000000000000127e7e35a3bdfff000000000000000000000000000000000000000000000000014542ba12a337c00000000000000000000000000000000000000000000000001969368974c05b0000000000000000000000000000000000000000000000000000cdd1272daac80200000000000000000000000000000000000000000000000001955d6c560adabe0000000000000000000000000000000000000000000000000208057d3080917ac0000000000000000000000000000000000000000000000000eae004ec46815d000000000000000000000000000000000000000000000000091fb25d9096a07800000000000000000000000000000000000000000000000000bca9aa763cf3660000000000000000000000000000000000000000000000000115c5c8e3e26d9000000000000000000000000000000000000000000000000008a6cb0d64154d6d800000000000000000000000000000000000000000000000001dd51b1f62837b800000000000000000000000000000000000000000000000014542ba12a337c000000000000000000000000000000000000000000000000000cb6b02ceeec7c80000000000000000000000000000000000000000000000000001f399b1438a100000000000000000000000000000000000000000000000000903967477d338ec00000000000000000000000000000000000000000000000001bae1f4ff72912d0000000000000000000000000000000000000000000000000691b3df9a78571b4000000000000000000000000000000000000000000000005a6dc515a457f0ac000000000000000000000000000000000000000000000000005a965dc570a64d00000000000000000000000000000000000000000000000000f1512ef142fbf40000000000000000000000000000000000000000000000000b5d56e54798e4000000000000000000000000000000000000000000000000000163efe51c4653b500000000000000000000000000000000000000000000000000894f6a44c7e0fc00000000000000000000000000000000000000000000000002f1e39e969da25800000000000000000000000000000000000000000000000002ba39e82ed5d74000000000000000000000000000000000000000000000000007b1aafcb26df3f400000000000000000000000000000000000000000000000001a49a40ba97ea8d00000000000000000000000000000000000000000000000000a46dfeb575c4a400000000000000000000000000000000000000000000000014542ba12a337c000000000000000000000000000000000000000000000000000047c7b3722bc0c000000000000000000000000000000000000000000000000003f676427b858ff800000000000000000000000000000000000000000000000007c9342ade26b78c000000000000000000000000000000000000000000000000029320b0f820ec840000000000000000000000000000000000000000000000002313ff6b8f9296b400000000000000000000000000000000000000000000000001aad8d73d16a9b50000000000000000000000000000000000000000000000000510fd676aa54eb396000000000000000000000000000000000000000000000001176400ddf1f38300000000000000000000000000000000000000000000000004c68b50c698525c0000000000000000000000000000000000000000000000000a88da6886f3b0e00000000000000000000000000000000000000000000000000203fcefc44a1cc400000000000000000000000000000000000000000000000025efea183daa6fb8000000000000000000000000000000000000000000000000027b5344af290e6a80000000000000000000000000000000000000000000000000c328093e61ee400000000000000000000000000000000000000000000000001dd6243431f3979c0000000000000000000000000000000000000000000000000089def346950fe5000000000000000000000000000000000000000000000000001a055690d9db80000000000000000000000000000000000000000000000000004ee0d4ab6e80d900000000000000000000000000000000000000000000000015bfe57ac16dbdec000000000000000000000000000000000000000000000000015e32a03535678d00000000000000000000000000000000000000000000000001075169509a8f68000000000000000000000000000000000000000000000000ab2ea5b7abdc627400000000000000000000000000000000000000000000000003491765fb5c829e400000000000000000000000000000000000000000000000030ca024f987b900000000000000000000000000000000000000000000000000007364a2f87322600000000000000000000000000000000000000000000000000082e9535091092800000000000000000000000000000000000000000000000047dbec3d01c526980000000000000000000000000000000000000000000000000079162bb2cbc8760000000000000000000000000000000000000000000000002108c6e5e493a980000000000000000000000000000000000000000000000000014542ba12a337c000000000000000000000000000000000000000000000000000c4ebd763e4b9de00000000000000000000000000000000000000000000000000d30356c8d50133000000000000000000000000000000000000000000000000008639438aa48b6f00000000000000000000000000000000000000000000000005366014e0c6c330000000000000000000000000000000000000000000000000017ee13e8bd26b69000000000000000000000000000000000000000000000000043b5bd159e6236c00000000000000000000000000000000000000000000000000cf3e87062ce67e00000000000000000000000000000000000000000000000000606285a08f0d48000000000000000000000000000000000000000000000000015303181c0a61450000000000000000000000000000000000000000000000000209f2ffcb791fbb000000000000000000000000000000000000000000000000268c6f2764336190000000000000000000000000000000000000000000000000027beeb0f21f97ed000000000000000000000000000000000000000000000000065cb92380accc30000000000000000000000000000000000000000000000000008376a9926843a5000000000000000000000000000000000000000000000000009f60b2373660700000000000000000000000000000000000000000000000000531e723094541b380000000000000000000000000000000000000000000000001475819a635273400000000000000000000000000000000000000000000000000ca5e2d0f5e2cd3000000000000000000000000000000000000000000000000028a857425466f80000000000000000000000000000000000000000000000000042118dcbc927530000000000000000000000000000000000000000000000000038defaa1359eac80000000000000000000000000000000000000000000000000e9f0b28485eb8b0000000000000000000000000000000000000000000000000504c637cc48f436400000000000000000000000000000000000000000000000005ee1875a4df790800000000000000000000000000000000000000000000000000ce371ad58b51f000000000000000000000000000000000000000000000000005ec10e00b3d126800000000000000000000000000000000000000000000000006a99011fac189e00000000000000000000000000000000000000000000000000690c57af5bdc03c000000000000000000000000000000000000000000000000019d827d179c805a000000000000000000000000000000000000000000000000005fa5f2549ddb9400000000000000000000000000000000000000000000000003a2ef5d3f07ae18000000000000000000000000000000000000000000000000049d5d13f0b95dca16000000000000000000000000000000000000000000000000fd4c4ee9e1e4ea800000000000000000000000000000000000000000000000d09f3e45ef019e72000000000000000000000000000000000000000000000000035854a9a8eca75f0000000000000000000000000000000000000000000000010814a10f84f1f3fe000000000000000000000000000000000000000000000000119e98fdec90e4480000000000000000000000000000000000000000000000000078e07aa205321c4000000000000000000000000000000000000000000000000bfe53c31773c98a00000000000000000000000000000000000000000000000005ea5a8b951543b180000000000000000000000000000000000000000000000025d4572f88992ed400000000000000000000000000000000000000000000000077375ef24c19eed800000000000000000000000000000000000000000000000000a0b71f1859a23a8000000000000000000000000000000000000000000000002bbd08b2277342a2000000000000000000000000000000000000000000000000555e06fb0fcbd2100000000000000000000000000000000000000000000000000596845faead59160000000000000000000000000000000000000000000000000083f4f3fa17a4a78000000000000000000000000000000000000000000000000169d69602bf33a8800000000000000000000000000000000000000000000000194f3132e3e67f80000000000000000000000000000000000000000000000000089740f907d82e1800000000000000000000000000000000000000000000000001b61f57ee444a018000000000000000000000000000000000000000000000002f8644625968f398000000000000000000000000000000000000000000000000afc58592917663840000000000000000000000000000000000000000000000005f30f6329a94b4e00000000000000000000000000000000000000000000000004ff87290cc8bdd880000000000000000000000000000000000000000000000004323db67001fe790000000000000000000000000000000000000000000000000642ecd6970c5b8b0000000000000000000000000000000000000000000000000545d4ea9a255a90000000000000000000000000000000000000000000000000061b77a236b5fb21c000000000000000000000000000000000000000000000000afcd1015766fca8e000000000000000000000000000000000000000000000000afc585929176638400000000000000000000000000000000000000000000000002a90bd6e96603f100000000000000000000000000000000000000000000000003a6f8c33a66d9bc8000000000000000000000000000000000000000000000000170f4394c443c9800000000000000000000000000000000000000000000000010e170f307c692440000000000000000000000000000000000000000000000000bfc9e0e808ef1b800000000000000000000000000000000000000000000000018781e76a41622bc00000000000000000000000000000000000000000000000006b4b1cdaf8830e180000000000000000000000000000000000000000000000000c891790e3be5048000000000000000000000000000000000000000000000000050f5efe7f62d66c00000000000000000000000000000000000000000000000054fd8ac1b1f22420000000000000000000000000000000000000000000000000040bf5b3379db54400000000000000000000000000000000000000000000000010cabe107170da580000000000000000000000000000000000000000000000000410042d4b1df09800000000000000000000000000000000000000000000000005fb86c1d770b5f40000000000000000000000000000000000000000000000005602c9327ab3cb9800000000000000000000000000000000000000000000000011047e5f1053392000000000000000000000000000000000000000000000000025e4ae5c073c9bc0000000000000000000000000000000000000000000000000334abbd783ddc4280000000000000000000000000000000000000000000000019be2f313213c06200000000000000000000000000000000000000000000000000c71bf2ea0e98a200000000000000000000000000000000000000000000000000c9932a8b128c800000000000000000000000000000000000000000000000000c0ad150beb2c9be0000000000000000000000000000000000000000000000000167f482d3c5b1c000000000000000000000000000000000000000000000000001596fa79f71bef78000000000000000000000000000000000000000000000000df4d7b0e01867d800000000000000000000000000000000000000000000000004a383b27cbad89180000000000000000000000000000000000000000000000002acabc666bbcd7b0000000000000000000000000000000000000000000000000b0c38ac6dac69620000000000000000000000000000000000000000000000000271feb13a2f5844800
Deployed ByteCode Sourcemap
20654:5846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22776:227;;;;;;:::i;:::-;;:::i;:::-;;;449:25:1;;;437:2;422:18;22776:227:0;;;;;;;;22531:87;22601:9;22531:87;;24633:700;;;;;;:::i;:::-;;:::i;:::-;;23442:93;23515:12;;23442:93;;24263:102;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1148:55:1;;;1130:74;;1118:2;1103:18;24263:102:0;984:226:1;24061:111:0;;;;;;:::i;:::-;-1:-1:-1;;;;;24146:18:0;24119:7;24146:18;;;:9;:18;;;;;;;24061:111;23122:237;;;;;;:::i;:::-;;:::i;22378:81::-;22445:6;22378:81;;23815:107;;;;;;:::i;:::-;-1:-1:-1;;;;;23898:16:0;23871:7;23898:16;;;:7;:16;;;;;;;23815:107;23627:97;23702:14;;23627:97;;20828:19;;;;;-1:-1:-1;;;;;20828:19:0;;;22776:227;22981:14;;22922;;22837:7;22888:5;;22881:38;;;;;22913:4;22881:38;;;1130:74:1;22837:7:0;;22981:14;22864:101;;22981:14;;-1:-1:-1;;;;;22888:5:0;;22881:23;;1103:18:1;;22881:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;;;:::i;:::-;:72;;;;:::i;:::-;22955:9;22864:16;:101::i;:::-;:131;;;;:::i;:::-;22857:138;22776:227;-1:-1:-1;;22776:227:0:o;24633:700::-;-1:-1:-1;;;;;24691:16:0;;;;;;:7;:16;;;;;;:21;;24687:54;;24721:20;;;;;;;;;;;;;;24687:54;24754:15;24772:19;24783:7;24772:10;:19::i;:::-;24754:37;;24808:7;24819:1;24808:12;24804:47;;24829:22;;;;;;;;;;;;;;24804:47;25124:7;25106:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;25169:18:0;;;;;;;:9;:18;;;;;:29;;;;;;25245:5;25222:47;;25245:5;25179:7;25191;25222:22;:47::i;:::-;25301:5;;25285:40;;;-1:-1:-1;;;;;2293:55:1;;;2275:74;;2380:2;2365:18;;2358:34;;;25301:5:0;;;;25285:40;;2248:18:1;25285:40:0;;;;;;;24676:657;24633:700;:::o;24263:102::-;24316:7;24343;24351:5;24343:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;24343:14:0;;24263:102;-1:-1:-1;;24263:102:0:o;23122:237::-;23180:7;23200:21;23224:37;23244:15;23224:12;:37::i;:::-;-1:-1:-1;;;;;23333:18:0;;;;;;:9;:18;;;;;;;;;23318:12;;23298:7;:16;;;;;;23200:61;;-1:-1:-1;23333:18:0;;23282:32;;23200:61;23282:32;:::i;:::-;23281:49;;;;:::i;:::-;:70;;;;:::i;:::-;23274:77;23122:237;-1:-1:-1;;;23122:237:0:o;26137:360::-;26228:7;26264:6;26252:9;:18;;;26248:242;;;-1:-1:-1;26294:1:0;26287:8;;26248:242;26329:18;26338:9;26329:6;:18;:::i;:::-;26317:9;:30;;;26313:177;;;-1:-1:-1;26371:15:0;26364:22;;26313:177;26469:9;26446:18;26458:6;26446:18;;;;:::i;:::-;26427:38;;:15;:38;:::i;:::-;26426:52;;;;:::i;15878:211::-;16022:58;;;-1:-1:-1;;;;;2293:55:1;;16022:58:0;;;2275:74:1;2365:18;;;;2358:34;;;16022:58:0;;;;;;;;;;2248:18:1;;;;16022:58:0;;;;;;;;;;16045:23;16022:58;;;15995:86;;16015:5;;15995:19;:86::i;:::-;15878:211;;;:::o;18945:716::-;19369:23;19395:69;19423:4;19395:69;;;;;;;;;;;;;;;;;19403:5;-1:-1:-1;;;;;19395:27:0;;;:69;;;;;:::i;:::-;19479:17;;19369:95;;-1:-1:-1;19479:21:0;19475:179;;19576:10;19565:30;;;;;;;;;;;;:::i;:::-;19557:85;;;;-1:-1:-1;;;19557:85:0;;3528:2:1;19557:85:0;;;3510:21:1;3567:2;3547:18;;;3540:30;3606:34;3586:18;;;3579:62;3677:12;3657:18;;;3650:40;3707:19;;19557:85:0;;;;;;;;3974:229;4111:12;4143:52;4165:6;4173:4;4179:1;4182:12;4143:21;:52::i;:::-;4136:59;3974:229;-1:-1:-1;;;;3974:229:0:o;5094:455::-;5264:12;5322:5;5297:21;:30;;5289:81;;;;-1:-1:-1;;;5289:81:0;;3939:2:1;5289:81:0;;;3921:21:1;3978:2;3958:18;;;3951:30;4017:34;3997:18;;;3990:62;4088:8;4068:18;;;4061:36;4114:19;;5289:81:0;3737:402:1;5289:81:0;5382:12;5396:23;5423:6;-1:-1:-1;;;;;5423:11:0;5442:5;5449:4;5423:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5381:73;;;;5472:69;5499:6;5507:7;5516:10;5528:12;5472:26;:69::i;:::-;5465:76;5094:455;-1:-1:-1;;;;;;;5094:455:0:o;7667:644::-;7852:12;7881:7;7877:427;;;7909:10;:17;7930:1;7909:22;7905:290;;-1:-1:-1;;;;;1512:19:0;;;8119:60;;;;-1:-1:-1;;;8119:60:0;;4893:2:1;8119:60:0;;;4875:21:1;4932:2;4912:18;;;4905:30;4971:31;4951:18;;;4944:59;5020:18;;8119:60:0;4691:353:1;8119:60:0;-1:-1:-1;8216:10:0;8209:17;;7877:427;8259:33;8267:10;8279:12;9014:17;;:21;9010:388;;9246:10;9240:17;9303:15;9290:10;9286:2;9282:19;9275:44;9010:388;9373:12;9366:20;;-1:-1:-1;;;9366:20:0;;;;;;;;:::i;14:284:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;180:9;167:23;230:18;223:5;219:30;212:5;209:41;199:69;;264:1;261;254:12;485:309;544:6;597:2;585:9;576:7;572:23;568:32;565:52;;;613:1;610;603:12;565:52;652:9;639:23;-1:-1:-1;;;;;695:5:1;691:54;684:5;681:65;671:93;;760:1;757;750:12;799:180;858:6;911:2;899:9;890:7;886:23;882:32;879:52;;;927:1;924;917:12;879:52;-1:-1:-1;950:23:1;;799:180;-1:-1:-1;799:180:1:o;1460:184::-;1530:6;1583:2;1571:9;1562:7;1558:23;1554:32;1551:52;;;1599:1;1596;1589:12;1551:52;-1:-1:-1;1622:16:1;;1460:184;-1:-1:-1;1460:184:1:o;1649:::-;-1:-1:-1;;;1698:1:1;1691:88;1798:4;1795:1;1788:15;1822:4;1819:1;1812:15;1838:125;1903:9;;;1924:10;;;1921:36;;;1937:18;;:::i;1968:128::-;2035:9;;;2056:11;;;2053:37;;;2070:18;;:::i;2403:184::-;-1:-1:-1;;;2452:1:1;2445:88;2552:4;2549:1;2542:15;2576:4;2573:1;2566:15;2592:168;2665:9;;;2696;;2713:15;;;2707:22;;2693:37;2683:71;;2734:18;;:::i;2765:274::-;2805:1;2831;2821:189;;-1:-1:-1;;;2863:1:1;2856:88;2967:4;2964:1;2957:15;2995:4;2992:1;2985:15;2821:189;-1:-1:-1;3024:9:1;;2765:274::o;3044:277::-;3111:6;3164:2;3152:9;3143:7;3139:23;3135:32;3132:52;;;3180:1;3177;3170:12;3132:52;3212:9;3206:16;3265:5;3258:13;3251:21;3244:5;3241:32;3231:60;;3287:1;3284;3277:12;4144:250;4229:1;4239:113;4253:6;4250:1;4247:13;4239:113;;;4329:11;;;4323:18;4310:11;;;4303:39;4275:2;4268:10;4239:113;;;-1:-1:-1;;4386:1:1;4368:16;;4361:27;4144:250::o;4399:287::-;4528:3;4566:6;4560:13;4582:66;4641:6;4636:3;4629:4;4621:6;4617:17;4582:66;:::i;:::-;4664:16;;;;;4399:287;-1:-1:-1;;4399:287:1:o;5049:396::-;5198:2;5187:9;5180:21;5161:4;5230:6;5224:13;5273:6;5268:2;5257:9;5253:18;5246:34;5289:79;5361:6;5356:2;5345:9;5341:18;5336:2;5328:6;5324:15;5289:79;:::i;:::-;5429:2;5408:15;-1:-1:-1;;5404:29:1;5389:45;;;;5436:2;5385:54;;5049:396;-1:-1:-1;;5049:396:1:o
Metadata Hash
237681a044b94b377523433d7f89a824757c131d63900de91c5ff89f4969f7e3
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.