ERC-20
Overview
Max Total Supply
1,368.163486 CANNAVEST
Holders
3
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
StablzCannavestPool
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity = 0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "contracts/pools/common/RealWorldAssetReceipt.sol"; /// @title Stablz Cannavest - Real world asset pool contract StablzCannavestPool is RealWorldAssetReceipt, Ownable { using SafeERC20 for IERC20; address public rwaHandler; // @dev this is used to allow for decimals in the currentRewardValue as well as to convert USDT amount to 18 decimals uint private constant REWARD_FACTOR_ACCURACY = 1_000_000_000_000 ether; uint private constant LOCK_UP_PERIOD = 365 days; uint private constant ONE_USDT = 10 ** 6; uint private constant MAX_AMOUNT = 5_000_000 * ONE_USDT; uint public startedAt; bool public isDepositingEnabled; uint public finalAmount; uint public finalSupply; uint public currentRewardFactor; uint public allTimeRewards; uint public allTimeRewardsClaimed; uint public allTimeCirculatingSupplyAtDistribution; struct Reward { uint factor; uint held; } mapping(address => Reward) private _rewards; event Started(); event Ended(uint finalAmount, uint finalSupply); event RealWorldAssetHandlerUpdated(address rwaHandler); event DepositingEnabled(); event DepositingDisabled(); event Deposit(address indexed user, uint amount); event Withdraw(address indexed user, uint expected, uint actual); event Claimed(address indexed user, uint rewards); event Distributed(uint rewards, uint circulatingSupply); modifier onlyRWAHandler() { require(_msgSender() == rwaHandler, "StablzCannavestPool: Only the real world asset handler can call this function"); _; } /// @param _rwaHandler Real world asset handler constructor(address _rwaHandler) RealWorldAssetReceipt("STABLZ-CANNAVEST", "CANNAVEST") { require(_rwaHandler != address(0), "StablzCannavestPool: _rwaHandler cannot be the zero address"); rwaHandler = _rwaHandler; } /// @notice Start the pool function start() external onlyOwner { require(startedAt == 0, "StablzCannavestPool: Already started"); startedAt = block.timestamp; isDepositingEnabled = true; emit Started(); } /// @notice End the pool (after the lock up period) /// @param _amount Principal amount function end(uint _amount) external onlyOwner { require(block.timestamp > getEndDate(), "StablzCannavestPool: You cannot end before the end date"); require(!hasEnded(), "StablzCannavestPool: Already ended"); require(0 < _amount && _amount <= totalSupply(), "StablzCannavestPool: _amount must be greater than zero and less than or equal to the total staked"); isDepositingEnabled = false; finalAmount = _amount; /// @dev totalSupply is user balances + OTC finalSupply = totalSupply(); usdt.safeTransferFrom(_msgSender(), address(this), _amount); emit Ended(finalAmount, finalSupply); } /// @notice Update the real world asset handler address /// @param _rwaHandler Real world asset handler function updateRealWorldAssetHandler(address _rwaHandler) external onlyOwner { require(_rwaHandler != address(0), "StablzCannavestPool: _rwaHandler cannot be the zero address"); rwaHandler = _rwaHandler; emit RealWorldAssetHandlerUpdated(_rwaHandler); } /// @notice Enable depositing function enableDepositing() external onlyOwner { require(startedAt > 0, "StablzCannavestPool: Pool not started yet"); require(_isPoolActive(), "StablzCannavestPool: Pool has already stopped"); require(!isDepositingEnabled, "StablzCannavestPool: Depositing is already enabled"); isDepositingEnabled = true; emit DepositingEnabled(); } /// @notice Disable depositing function disableDepositing() external onlyOwner { require(isDepositingEnabled, "StablzCannavestPool: Depositing is already disabled"); isDepositingEnabled = false; emit DepositingDisabled(); } /// @notice Deposit USDT and receive STABLZ-CANNAVEST /// @param _amount USDT to deposit function deposit(uint _amount) external nonReentrant { require(_isPoolActive(), "StablzCannavestPool: Depositing is not allowed because the pool has ended"); require(isDepositingEnabled, "StablzCannavestPool: Depositing is not allowed at this time"); require(ONE_USDT <= _amount, "StablzCannavestPool: _amount must be greater than or equal to 1 USDT"); require(_amount <= usdt.balanceOf(_msgSender()), "StablzCannavestPool: Insufficient USDT balance"); require(_amount <= usdt.allowance(_msgSender(), address(this)), "StablzCannavestPool: Insufficient USDT allowance"); require(totalSupply() + _amount <= MAX_AMOUNT, "StablzCannavestPool: Max amount reached"); _mint(_msgSender(), _amount); usdt.safeTransferFrom(_msgSender(), rwaHandler, _amount); emit Deposit(_msgSender(), _amount); } /// @notice Withdraw USDT after lockup and give back STABLZ-CANNAVEST function withdraw() external nonReentrant { require(hasEnded(), "StablzCannavestPool: You can only withdraw once the pool has ended"); uint balance = balanceOf(_msgSender()); uint otc = _getUserAmountListed(_msgSender()); require(0 < balance + otc, "StablzCannavestPool: Receipt balance must be greater than zero"); uint amount = _calculateFinalAmount(_msgSender()); if (0 < balance) { _burn(_msgSender(), balance); } if (0 < otc) { _clearUserAmountListed(_msgSender()); _burn(address(this), otc); } usdt.safeTransfer(_msgSender(), amount); emit Withdraw(_msgSender(), balance, amount); } /// @notice Claim USDT rewards function claimRewards() external nonReentrant { _mergeRewards(_msgSender()); uint held = _getHeldRewards(_msgSender()); require(0 < held, "StablzCannavestPool: No rewards available to claim"); _rewards[_msgSender()].held = 0; allTimeRewardsClaimed += held; usdt.safeTransfer(_msgSender(), held); emit Claimed(_msgSender(), held); } /// @notice Distribute USDT to receipt token holders (RWA handler only) /// @param _amount Amount of USDT to distribute function distribute(uint _amount) external onlyRWAHandler { /// @dev checks !hasEnded() and not block.timestamp <= getEndDate() in case the final distribution occurs slightly after 1 year require(!hasEnded(), "StablzCannavestPool: Distributions are disabled because the pool has ended"); uint circulatingSupply = _getCirculatingSupply(); require(ONE_USDT <= circulatingSupply, "StablzCannavestPool: Total staked must be greater than 1 receipt token"); require(ONE_USDT <= _amount, "StablzCannavestPool: _amount must be greater than or equal to 1 USDT"); require(_amount <= usdt.balanceOf(rwaHandler), "StablzCannavestPool: Insufficient balance"); require(_amount <= usdt.allowance(rwaHandler, address(this)), "StablzCannavestPool: Insufficient allowance"); allTimeCirculatingSupplyAtDistribution += circulatingSupply; allTimeRewards += _amount; currentRewardFactor += REWARD_FACTOR_ACCURACY * _amount / circulatingSupply; usdt.safeTransferFrom(rwaHandler, address(this), _amount); emit Distributed(_amount, circulatingSupply); } /// @notice Get the end date /// @return uint End date function getEndDate() public view returns (uint) { require(startedAt > 0, "StablzCannavestPool: Pool has not started yet"); return startedAt + LOCK_UP_PERIOD; } /// @notice Get the current rewards for a user /// @param _user User address /// @return uint Current rewards for _user function getReward(address _user) external view returns (uint) { require(_user != address(0), "StablzCannavestPool: _user cannot equal the zero address"); return _getHeldRewards(_user) + _getCalculatedRewards(_user); } /// @notice Calculate the final amount to withdraw /// @param _user User address /// @return uint Final amount to withdraw for _user function calculateFinalAmount(address _user) external view returns (uint) { require(hasEnded(), "StablzCannavestPool: The pool has not ended yet"); require(_user != address(0), "StablzCannavestPool: _user cannot equal the zero address"); return _calculateFinalAmount(_user); } /// @notice Has the pool ended /// @return bool true - ended, false - not ended function hasEnded() public view returns (bool) { return finalAmount > 0; } /// @inheritdoc ERC20 function _beforeTokenTransfer( address _from, address _to, uint _amount ) internal override { super._beforeTokenTransfer(_from, _to, _amount); require(0 < _amount, "StablzCannavestPool: _amount must be greater than zero"); require( /// @dev mint _from == address(0) || /// @dev delist or purchase _from == address(this) || /// @dev burn _to == address(0) || /// @dev list (_to == address(this) && _inbound), "StablzCannavestPool: Receipt token is only transferrable via OTC, depositing, and withdrawing" ); if (_from != address(0) && _from != address(this)) { _mergeRewards(_from); } if (_to != address(0) && _to != address(this)) { _mergeRewards(_to); } } /// @param _user User address /// @return uint Final amount to withdraw for _user function _calculateFinalAmount(address _user) private view returns (uint) { return finalAmount * _getTotalBalance(_user) / finalSupply; } /// @param _user User address /// @return uint Balance of _user + OTC amount listed by _user function _getTotalBalance(address _user) private view returns (uint) { return balanceOf(_user) + _getUserAmountListed(_user); } /// @dev get the total amount staked (not including otc listings) /// @return uint Circulating supply function _getCirculatingSupply() private view returns (uint) { return totalSupply() - totalAmountListed; } /// @dev Merge calculated rewards with held rewards /// @param _user User address function _mergeRewards(address _user) private { /// @dev move calculated rewards into held rewards _holdCalculatedRewards(_user); /// @dev clear calculated rewards _rewards[_user].factor = currentRewardFactor; } /// @dev Convert calculated rewards into held rewards /// @dev Used when the user carries out an action that would cause their calculated rewards to change function _holdCalculatedRewards(address _user) private { uint calculatedReward = _getCalculatedRewards(_user); if (calculatedReward > 0) { _rewards[_user].held += calculatedReward; } } /// @param _user User address /// @return uint Held rewards function _getHeldRewards(address _user) private view returns (uint) { return _rewards[_user].held; } /// @param _user User address /// @return uint Calculated rewards function _getCalculatedRewards(address _user) private view returns (uint) { uint balance = balanceOf(_user); return balance * (currentRewardFactor - _rewards[_user].factor) / REWARD_FACTOR_ACCURACY; } /// @return bool true - active, false - not active function _isPoolActive() internal view override returns (bool) { /// @dev checks !hasEnded() too because block.timestamp can vary return block.timestamp <= getEndDate() && !hasEnded(); } }
//SPDX-License-Identifier: Unlicense pragma solidity = 0.8.17; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; /// @title Real world asset receipt token abstract contract RealWorldAssetReceipt is ERC20, ReentrancyGuard { using SafeERC20 for IERC20; IERC20 public immutable usdt; IERC20 public immutable receipt; address private constant USDT = 0xdAC17F958D2ee523a2206206994597C13D831ec7; uint public totalAmountListed; uint public totalListings; uint public totalDelisted; bool internal _inbound; struct User { uint amountListed; uint[] listingIds; uint[] purchasedIds; } struct Listing { uint listingId; address seller; address buyer; uint listedAt; uint purchasedAt; uint delistedAt; uint amount; uint cost; } mapping(address => User) public _users; mapping(uint => Listing) public _listings; event Listed(address indexed seller, uint indexed listingId, uint amount, uint cost); event Delisted(address indexed seller, uint indexed listingId); event PriceChanged(uint indexed oldListingId, uint indexed newListingId, uint newCost); event Purchased(address indexed buyer, uint indexed listingId); /// @param _listingId Listing ID modifier onlyActiveListing(uint _listingId) { require(_listingId < totalListings, "RealWorldAssetReceipt: Listing does not exist"); require(_listings[_listingId].purchasedAt == 0, "RealWorldAssetReceipt: Listing has already been purchased"); require(_listings[_listingId].delistedAt == 0, "RealWorldAssetReceipt: Listing has already been delisted"); _; } modifier onlyActivePool() { require(_isPoolActive(), "RealWorldAssetReceipt: OTC has closed"); _; } /// @param _name Receipt token name /// @param _symbol Receipt token symbol constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) { usdt = IERC20(USDT); receipt = IERC20(address(this)); } /// @inheritdoc ERC20 function decimals() public pure override returns (uint8) { return 6; } /// @notice List a RWA receipt tokens /// @param _amount Amount of RWA receipt tokens to list /// @param _cost Cost of _amount in USDT function list(uint _amount, uint _cost) external nonReentrant onlyActivePool { require(_amount <= balanceOf(_msgSender()), "RealWorldAssetReceipt: Insufficient balance"); require(_amount <= allowance(_msgSender(), address(this)), "RealWorldAssetReceipt: Insufficient allowance"); uint listingId = _list(_amount, _cost); totalAmountListed += _amount; _inbound = true; receipt.safeTransferFrom(_msgSender(), address(this), _amount); _inbound = false; emit Listed(_msgSender(), listingId, _amount, _cost); } /// @notice Delist your listing. If the pool has ended you don't need to delist because the pool with automatically handle it for you /// @param _listingId Listing ID function delist(uint _listingId) external nonReentrant onlyActiveListing(_listingId) onlyActivePool { uint amount = _delist(_listingId); totalAmountListed -= amount; receipt.safeTransfer(_msgSender(), amount); emit Delisted(_msgSender(), _listingId); } /// @notice Change price of a listing (delists then relists) /// @param _listingId Listing ID /// @param _newCost New cost of the listing in USDT function changePrice(uint _listingId, uint _newCost) external nonReentrant onlyActiveListing(_listingId) onlyActivePool { require(0 < _newCost, "RealWorldAssetReceipt: _cost must be greater than 0"); /// @dev Delists then relists otherwise when purchasing a user could be frontrun if they approved max uint amount = _delist(_listingId); uint newListingId = _list(amount, _newCost); emit PriceChanged(_listingId, newListingId, _newCost); } /// @notice Purchase a listing /// @param _listingId Listing ID function purchase(uint _listingId) external nonReentrant onlyActiveListing(_listingId) onlyActivePool { Listing storage listing = _listings[_listingId]; require(listing.seller != _msgSender(), "RealWorldAssetReceipt: You cannot purchase your own listing"); require(listing.cost <= usdt.balanceOf(_msgSender()), "RealWorldAssetReceipt: Insufficient USDT balance"); require(listing.cost <= usdt.allowance(_msgSender(), address(this)), "RealWorldAssetReceipt: Insufficient USDT allowance"); listing.purchasedAt = block.timestamp; listing.buyer = _msgSender(); _users[_msgSender()].purchasedIds.push(_listingId); _users[listing.seller].amountListed -= listing.amount; totalAmountListed -= listing.amount; usdt.safeTransferFrom(_msgSender(), listing.seller, listing.cost); receipt.safeTransfer(_msgSender(), listing.amount); emit Purchased(_msgSender(), _listingId); } /// @notice Get the amount listed by a user /// @param _user User address /// @return Amount listed by _user function getUserAmountListed(address _user) external view returns (uint) { require(_user != address(0), "RealWorldAssetReceipt: _user cannot equal the zero address"); return _getUserAmountListed(_user); } /// @notice Get the total number of listings by a user /// @param _user User address /// @return Total listings by _user function getUserTotalListings(address _user) public view returns (uint) { require(_user != address(0), "RealWorldAssetReceipt: _user cannot equal the zero address"); return _users[_user].listingIds.length; } /// @notice Get the total purchases by a user /// @param _user User address /// @return Total purchases by _user function getUserTotalPurchases(address _user) public view returns (uint) { require(_user != address(0), "RealWorldAssetReceipt: _user cannot equal the zero address"); return _users[_user].purchasedIds.length; } /// @notice Get listings /// @param _startIndex Start index /// @param _endIndex End index /// @return listings Listings function getListings(uint _startIndex, uint _endIndex) external view returns (Listing[] memory listings) { _validateIndexes(_startIndex, _endIndex, totalListings); listings = new Listing[](_endIndex - _startIndex + 1); uint listIndex; for (uint index = _startIndex; index <= _endIndex; index++) { listings[listIndex] = _listings[index]; listIndex++; } return listings; } /// @notice Get user listings /// @param _user User address /// @param _startIndex Start index /// @param _endIndex End index /// @return listings Listings function getUserListings(address _user, uint _startIndex, uint _endIndex) external view returns (Listing[] memory listings) { uint total = getUserTotalListings(_user); _validateIndexes(_startIndex, _endIndex, total); listings = new Listing[](_endIndex - _startIndex + 1); uint listIndex; for (uint index = _startIndex; index <= _endIndex; index++) { listings[listIndex] = _listings[_users[_user].listingIds[index]]; listIndex++; } return listings; } /// @notice Get user purchases /// @param _user User address /// @param _startIndex Start index /// @param _endIndex End index /// @return listings Listings function getUserPurchases(address _user, uint _startIndex, uint _endIndex) external view returns (Listing[] memory listings) { uint total = getUserTotalPurchases(_user); _validateIndexes(_startIndex, _endIndex, total); listings = new Listing[](_endIndex - _startIndex + 1); uint listIndex; for (uint index = _startIndex; index <= _endIndex; index++) { listings[listIndex] = _listings[_users[_user].purchasedIds[index]]; listIndex++; } return listings; } /// @param _startIndex Start index /// @param _endIndex End index /// @param _total Total function _validateIndexes(uint _startIndex, uint _endIndex, uint _total) private pure { require(_startIndex <= _endIndex, "RealWorldAssetReceipt: Start index must be less than or equal to end index"); require(_startIndex < _total, "RealWorldAssetReceipt: Invalid start index"); require(_endIndex < _total, "RealWorldAssetReceipt: Invalid end index"); } /// @param _user User address /// @return uint Amount listed by _user function _getUserAmountListed(address _user) internal view returns (uint) { return _users[_user].amountListed; } /// @dev Used when withdrawing /// @param _user User address function _clearUserAmountListed(address _user) internal { _users[_user].amountListed = 0; } /// @return bool Is pool active function _isPoolActive() internal view virtual returns (bool); /// @param _amount Amount of RWA receipt tokens to list /// @param _cost Cost of _amount in USDT /// @return uint Listing ID function _list(uint _amount, uint _cost) private returns (uint) { require(0 < _amount, "RealWorldAssetReceipt: _amount must be greater than 0"); require(0 < _cost, "RealWorldAssetReceipt: _cost must be greater than 0"); User storage user = _users[_msgSender()]; uint listingId = totalListings; _listings[listingId] = Listing(listingId, _msgSender(), address(0), block.timestamp, 0, 0, _amount, _cost); user.amountListed += _amount; user.listingIds.push(listingId); totalListings++; return listingId; } /// @param _listingId Listing ID /// @return uint Amount of RWA receipt tokens associated with _listingId function _delist(uint _listingId) private returns (uint) { Listing storage listing = _listings[_listingId]; require(listing.seller == _msgSender(), "RealWorldAssetReceipt: Only the seller can delist their listing"); listing.delistedAt = block.timestamp; User storage user = _users[_msgSender()]; user.amountListed -= listing.amount; totalDelisted++; return listing.amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @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"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_rwaHandler","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewards","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"}],"name":"Delisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[],"name":"DepositingDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"DepositingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewards","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"circulatingSupply","type":"uint256"}],"name":"Distributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"finalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"finalSupply","type":"uint256"}],"name":"Ended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cost","type":"uint256"}],"name":"Listed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"oldListingId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newListingId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"}],"name":"Purchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rwaHandler","type":"address"}],"name":"RealWorldAssetHandlerUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"Started","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"expected","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"actual","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_listings","outputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"listedAt","type":"uint256"},{"internalType":"uint256","name":"purchasedAt","type":"uint256"},{"internalType":"uint256","name":"delistedAt","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_users","outputs":[{"internalType":"uint256","name":"amountListed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allTimeCirculatingSupplyAtDistribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allTimeRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allTimeRewardsClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"calculateFinalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentRewardFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"}],"name":"delist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableDepositing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableDepositing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"end","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startIndex","type":"uint256"},{"internalType":"uint256","name":"_endIndex","type":"uint256"}],"name":"getListings","outputs":[{"components":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"listedAt","type":"uint256"},{"internalType":"uint256","name":"purchasedAt","type":"uint256"},{"internalType":"uint256","name":"delistedAt","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"}],"internalType":"struct RealWorldAssetReceipt.Listing[]","name":"listings","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserAmountListed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_startIndex","type":"uint256"},{"internalType":"uint256","name":"_endIndex","type":"uint256"}],"name":"getUserListings","outputs":[{"components":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"listedAt","type":"uint256"},{"internalType":"uint256","name":"purchasedAt","type":"uint256"},{"internalType":"uint256","name":"delistedAt","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"}],"internalType":"struct RealWorldAssetReceipt.Listing[]","name":"listings","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_startIndex","type":"uint256"},{"internalType":"uint256","name":"_endIndex","type":"uint256"}],"name":"getUserPurchases","outputs":[{"components":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"listedAt","type":"uint256"},{"internalType":"uint256","name":"purchasedAt","type":"uint256"},{"internalType":"uint256","name":"delistedAt","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"}],"internalType":"struct RealWorldAssetReceipt.Listing[]","name":"listings","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserTotalListings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserTotalPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isDepositingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"receipt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rwaHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAmountListed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalListings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rwaHandler","type":"address"}],"name":"updateRealWorldAssetHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162004e4e38038062004e4e8339810160408190526200003491620001cb565b6040518060400160405280601081526020016f14d5105093168b50d0539390559154d560821b8152506040518060400160405280600981526020016810d0539390559154d560ba1b81525081818160039081620000929190620002a2565b506004620000a18282620002a2565b50506001600555505073dac17f958d2ee523a2206206994597c13d831ec7608052503060a052620000d23362000179565b6001600160a01b038116620001535760405162461bcd60e51b815260206004820152603b60248201527f537461626c7a43616e6e6176657374506f6f6c3a205f72776148616e646c657260448201527f2063616e6e6f7420626520746865207a65726f20616464726573730000000000606482015260840160405180910390fd5b600d80546001600160a01b0319166001600160a01b03929092169190911790556200036e565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208284031215620001de57600080fd5b81516001600160a01b0381168114620001f657600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022857607f821691505b6020821081036200024957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029d57600081815260208120601f850160051c81016020861015620002785750805b601f850160051c820191505b81811015620002995782815560010162000284565b5050505b505050565b81516001600160401b03811115620002be57620002be620001fd565b620002d681620002cf845462000213565b846200024f565b602080601f8311600181146200030e5760008415620002f55750858301515b600019600386901b1c1916600185901b17855562000299565b600085815260208120601f198616915b828110156200033f578886015182559484019460019091019084016200031e565b50858210156200035e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051614a58620003f6600039600081816107480152818161117001528181611f4a01526133a30152600081816103fa01528181610be701528181610d5701528181611a4f01528181611b7201528181611cce0152818161261801528181612725015281816128e101528181613092015281816131a301526133660152614a586000f3fe608060405234801561001057600080fd5b50600436106103575760003560e01c806391c05b0b116101c8578063c4b0451811610104578063ec81532a116100a2578063efef39a11161007c578063efef39a11461078a578063f21f537d1461079d578063f2fde38b146107a6578063f95049eb146107b957600080fd5b8063ec81532a1461076a578063ecb70fb714610777578063ecf5ac891461078157600080fd5b8063dd62ed3e116100de578063dd62ed3e14610652578063df76dbc91461068b578063dfe3c67114610730578063e1e6b8981461074357600080fd5b8063c4b0451814610623578063c78b616c14610636578063cbc45f371461063f57600080fd5b8063a7b0e7d511610171578063b3de019c1161014b578063b3de019c146105e2578063b6b55f25146105f5578063be9a655514610608578063c00007b01461061057600080fd5b8063a7b0e7d5146105be578063a9059cbb146105c7578063b1356488146105da57600080fd5b8063a14739d6116101a2578063a14739d61461059a578063a457c2d7146105a3578063a5d87d6c146105b657600080fd5b806391c05b0b1461056c57806395d89b411461057f578063964bc33f1461058757600080fd5b80633ccfd60b11610297578063703ff49e1161024057806380594fef1161021a57806380594fef1461051557806381b73a8a146105285780638da5cb5b146105485780638e68d2421461055957600080fd5b8063703ff49e146104d157806370a08231146104e4578063715018a61461050d57600080fd5b8063695917a711610271578063695917a7146104a2578063699a6510146104b55780636bd8fbf3146104be57600080fd5b80633ccfd60b1461047e57806350fd73671461048657806361a04abe1461049957600080fd5b806323b872dd11610304578063313ce567116102de578063313ce56714610434578063372500ab14610443578063395093511461044b5780633cacd7d61461045e57600080fd5b806323b872dd146103d95780632baabbf7146103ec5780632f48ab7d146103f557600080fd5b8063095ea7b311610335578063095ea7b31461039b5780630ad24528146103be57806318160ddd146103d157600080fd5b806304d7ba151461035c57806306fdde0314610366578063082a279314610384575b600080fd5b6103646107c2565b005b61036e610972565b60405161037b91906146cd565b60405180910390f35b61038d60135481565b60405190815260200161037b565b6103ae6103a936600461471c565b610a04565b604051901515815260200161037b565b6103646103cc366004614746565b610a1e565b60025461038d565b6103ae6103e736600461475f565b610c60565b61038d60115481565b61041c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161037b565b6040516006815260200161037b565b610364610c84565b6103ae61045936600461471c565b610dc0565b61038d61046c36600461479b565b600a6020526000908152604090205481565b610364610dff565b6103646104943660046147b6565b610fb2565b61038d60125481565b61038d6104b036600461479b565b6111ee565b61038d60155481565b61038d6104cc36600461479b565b61128b565b6103646104df36600461479b565b611327565b61038d6104f236600461479b565b6001600160a01b031660009081526020819052604090205490565b610364611406565b61038d61052336600461479b565b611418565b61053b6105363660046147d8565b6114b5565b60405161037b919061480b565b600c546001600160a01b031661041c565b61038d61056736600461479b565b611693565b61036461057a366004614746565b611797565b61036e611d35565b610364610595366004614746565b611d44565b61038d60145481565b6103ae6105b136600461471c565b611fb5565b61036461205f565b61038d60085481565b6103ae6105d536600461471c565b612114565b61038d612122565b6103646105f03660046147b6565b6121b2565b610364610603366004614746565b612467565b61036461294a565b61038d61061e36600461479b565b612a03565b61053b6106313660046147b6565b612ab1565b61038d60075481565b61053b61064d3660046147d8565b612c46565b61038d6106603660046148a4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106e9610699366004614746565b600b602052600090815260409020805460018201546002830154600384015460048501546005860154600687015460079097015495966001600160a01b0395861696949095169492939192909188565b604080519889526001600160a01b0397881660208a015295909616948701949094526060860192909252608085015260a084015260c083015260e08201526101000161037b565b600d5461041c906001600160a01b031681565b61041c7f000000000000000000000000000000000000000000000000000000000000000081565b600f546103ae9060ff1681565b60105415156103ae565b61038d60105481565b610364610798366004614746565b612e1a565b61038d600e5481565b6103646107b436600461479b565b613403565b61038d60065481565b6107ca613490565b6000600e54116108475760405162461bcd60e51b815260206004820152602960248201527f537461626c7a43616e6e6176657374506f6f6c3a20506f6f6c206e6f7420737460448201527f617274656420796574000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61084f6134ea565b6108c15760405162461bcd60e51b815260206004820152602d60248201527f537461626c7a43616e6e6176657374506f6f6c3a20506f6f6c2068617320616c60448201527f72656164792073746f7070656400000000000000000000000000000000000000606482015260840161083e565b600f5460ff161561093a5760405162461bcd60e51b815260206004820152603260248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f697320616c726561647920656e61626c65640000000000000000000000000000606482015260840161083e565b600f805460ff191660011790556040517f8d8235615e2606a7fbb90e968cf1f1d51deafcb5ec8e6c339883b812cf5e0c0c90600090a1565b606060038054610981906148d7565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906148d7565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b600033610a12818585613506565b60019150505b92915050565b610a26613490565b610a2e612122565b4211610aa25760405162461bcd60e51b815260206004820152603760248201527f537461626c7a43616e6e6176657374506f6f6c3a20596f752063616e6e6f742060448201527f656e64206265666f72652074686520656e642064617465000000000000000000606482015260840161083e565b60105415610afd5760405162461bcd60e51b815260206004820152602260248201527f537461626c7a43616e6e6176657374506f6f6c3a20416c726561647920656e64604482015261195960f21b606482015260840161083e565b806000108015610b0f57506002548111155b610bcd5760405162461bcd60e51b815260206004820152606160248201527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d757360448201527f742062652067726561746572207468616e207a65726f20616e64206c6573732060648201527f7468616e206f7220657175616c20746f2074686520746f74616c207374616b6560848201527f640000000000000000000000000000000000000000000000000000000000000060a482015260c40161083e565b600f805460ff191690556010819055600254601155610c177f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633308461365e565b7feadd714b167a6d432dd3d920fddab9ad589f3ccb20b9aa2c0850c7b56b43a442601054601154604051610c55929190918252602082015260400190565b60405180910390a150565b600033610c6e8582856136fd565b610c79858585613789565b506001949350505050565b610c8c613981565b610c95336139da565b3360009081526016602052604090206001015480610d1b5760405162461bcd60e51b815260206004820152603260248201527f537461626c7a43616e6e6176657374506f6f6c3a204e6f20726577617264732060448201527f617661696c61626c6520746f20636c61696d0000000000000000000000000000606482015260840161083e565b33600090815260166020526040812060010181905560148054839290610d42908490614927565b90915550610d7e9050335b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169083613a02565b60405181815233907fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a9060200160405180910390a250610dbe6001600555565b565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610a129082908690610dfa908790614927565b613506565b610e07613981565b601054610e875760405162461bcd60e51b815260206004820152604260248201527f537461626c7a43616e6e6176657374506f6f6c3a20596f752063616e206f6e6c60448201527f79207769746864726177206f6e63652074686520706f6f6c2068617320656e64606482015261195960f21b608482015260a40161083e565b6000610e92336104f2565b336000908152600a6020526040902054909150610eaf8183614927565b600010610f245760405162461bcd60e51b815260206004820152603e60248201527f537461626c7a43616e6e6176657374506f6f6c3a20526563656970742062616c60448201527f616e6365206d7573742062652067726561746572207468616e207a65726f0000606482015260840161083e565b6000610f2f33613a50565b90508215610f4157610f413384613a75565b8115610f6157336000908152600a6020526040812055610f613083613a75565b610f6a33610d4d565b604080518481526020810183905233917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a2505050610dbe6001600555565b610fba613981565b610fc26134ea565b61101c5760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b611025336104f2565b82111561109a5760405162461bcd60e51b815260206004820152602b60248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e742062616c616e6365000000000000000000000000000000000000000000606482015260840161083e565b33600090815260016020908152604080832030845290915290205482111561112a5760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e7420616c6c6f77616e636500000000000000000000000000000000000000606482015260840161083e565b60006111368383613bea565b9050826006600082825461114a9190614927565b90915550506009805460ff191660011790556111986111663390565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690308661365e565b6009805460ff191690556040805184815260208101849052829133917f03dec9cb5eb28fc88294be525eef5c4e1c3f2ca49fbe9c31a5ae6f11945aaec1910160405180910390a3506111ea6001600555565b5050565b60006001600160a01b03821661126c5760405162461bcd60e51b815260206004820152603a60248201527f5265616c576f726c644173736574526563656970743a205f757365722063616e60448201527f6e6f7420657175616c20746865207a65726f2061646472657373000000000000606482015260840161083e565b506001600160a01b03166000908152600a602052604090206002015490565b60006001600160a01b0382166113095760405162461bcd60e51b815260206004820152603a60248201527f5265616c576f726c644173736574526563656970743a205f757365722063616e60448201527f6e6f7420657175616c20746865207a65726f2061646472657373000000000000606482015260840161083e565b6001600160a01b0382166000908152600a6020526040902054610a18565b61132f613490565b6001600160a01b0381166113ab5760405162461bcd60e51b815260206004820152603b60248201527f537461626c7a43616e6e6176657374506f6f6c3a205f72776148616e646c657260448201527f2063616e6e6f7420626520746865207a65726f20616464726573730000000000606482015260840161083e565b600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f65777b2d4be9c29ab309d1c5b43ef7d5766421e5810cfd46881523b8d472c8cc90602001610c55565b61140e613490565b610dbe6000613def565b60006001600160a01b0382166114965760405162461bcd60e51b815260206004820152603a60248201527f5265616c576f726c644173736574526563656970743a205f757365722063616e60448201527f6e6f7420657175616c20746865207a65726f2061646472657373000000000000606482015260840161083e565b506001600160a01b03166000908152600a602052604090206001015490565b606060006114c285611418565b90506114cf848483613e4e565b6114d9848461493a565b6114e4906001614927565b67ffffffffffffffff8111156114fc576114fc61494d565b60405190808252806020026020018201604052801561158757816020015b6115746040518061010001604052806000815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b81526020019060019003908161151a5790505b5091506000845b848111611689576001600160a01b0387166000908152600a602052604081206001018054600b929190849081106115c7576115c7614963565b6000918252602080832090910154835282810193909352604091820190208151610100810183528154815260018201546001600160a01b03908116948201949094526002820154909316918301919091526003810154606083015260048101546080830152600581015460a0830152600681015460c08301526007015460e0820152845185908490811061165d5761165d614963565b6020026020010181905250818061167390614979565b925050808061168190614979565b91505061158e565b5050509392505050565b60006116a0601054151590565b6117125760405162461bcd60e51b815260206004820152602f60248201527f537461626c7a43616e6e6176657374506f6f6c3a2054686520706f6f6c20686160448201527f73206e6f7420656e646564207965740000000000000000000000000000000000606482015260840161083e565b6001600160a01b03821661178e5760405162461bcd60e51b815260206004820152603860248201527f537461626c7a43616e6e6176657374506f6f6c3a205f757365722063616e6e6f60448201527f7420657175616c20746865207a65726f20616464726573730000000000000000606482015260840161083e565b610a1882613a50565b600d546001600160a01b0316336001600160a01b0316146118465760405162461bcd60e51b815260206004820152604d60248201527f537461626c7a43616e6e6176657374506f6f6c3a204f6e6c792074686520726560448201527f616c20776f726c642061737365742068616e646c65722063616e2063616c6c2060648201527f746869732066756e6374696f6e00000000000000000000000000000000000000608482015260a40161083e565b601054156118e25760405162461bcd60e51b815260206004820152604a60248201527f537461626c7a43616e6e6176657374506f6f6c3a20446973747269627574696f60448201527f6e73206172652064697361626c656420626563617573652074686520706f6f6c60648201527f2068617320656e64656400000000000000000000000000000000000000000000608482015260a40161083e565b60006118ec613fd4565b905080620f4240111561198d5760405162461bcd60e51b815260206004820152604660248201527f537461626c7a43616e6e6176657374506f6f6c3a20546f74616c207374616b6560448201527f64206d7573742062652067726561746572207468616e2031207265636569707460648201527f20746f6b656e0000000000000000000000000000000000000000000000000000608482015260a40161083e565b81620f42401115611a145760405162461bcd60e51b8152602060048201526044602482018190527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d7573908201527f742062652067726561746572207468616e206f7220657175616c20746f2031206064820152631554d11560e21b608482015260a40161083e565b600d546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201527f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190614992565b821115611b315760405162461bcd60e51b815260206004820152602960248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f742062616c616e63650000000000000000000000000000000000000000000000606482015260840161083e565b600d546040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201523060248201527f00000000000000000000000000000000000000000000000000000000000000009091169063dd62ed3e90604401602060405180830381865afa158015611bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdf9190614992565b821115611c545760405162461bcd60e51b815260206004820152602b60248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f7420616c6c6f77616e6365000000000000000000000000000000000000000000606482015260840161083e565b8060156000828254611c669190614927565b925050819055508160136000828254611c7f9190614927565b90915550819050611c9d836c0c9f2c9cd04674edea400000006149ab565b611ca791906149c2565b60126000828254611cb89190614927565b9091555050600d54611cf8906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169116308561365e565b60408051838152602081018390527f97791d3ac1343e05805a2f905fa80b249c2ca58cf9fef455d4fa7ec13ce58321910160405180910390a15050565b606060048054610981906148d7565b611d4c613981565b806007548110611db45760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b606482015260840161083e565b6000818152600b602052604090206004015415611e395760405162461bcd60e51b815260206004820152603960248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2070757263686173656400000000000000606482015260840161083e565b6000818152600b602052604090206005015415611ebe5760405162461bcd60e51b815260206004820152603860248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2064656c69737465640000000000000000606482015260840161083e565b611ec66134ea565b611f205760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b6000611f2b83613fec565b90508060066000828254611f3f919061493a565b90915550611f7990507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163383613a02565b604051839033907f070be797ebb4cddc2d58b4fe8de5939531dd771aaed937a59fbe5c9dc8a5d09990600090a35050611fb26001600555565b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156120525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161083e565b610c798286868403613506565b612067613490565b600f5460ff166120df5760405162461bcd60e51b815260206004820152603360248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f697320616c72656164792064697361626c656400000000000000000000000000606482015260840161083e565b600f805460ff191690556040517f1d2df1f82541c9ce547cfbcb99cb9ea10d959f53ca0c7b47e17640932dadc42090600090a1565b600033610a12818585613789565b600080600e541161219b5760405162461bcd60e51b815260206004820152602d60248201527f537461626c7a43616e6e6176657374506f6f6c3a20506f6f6c20686173206e6f60448201527f7420737461727465642079657400000000000000000000000000000000000000606482015260840161083e565b6301e13380600e546121ad9190614927565b905090565b6121ba613981565b8160075481106122225760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b606482015260840161083e565b6000818152600b6020526040902060040154156122a75760405162461bcd60e51b815260206004820152603960248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2070757263686173656400000000000000606482015260840161083e565b6000818152600b60205260409020600501541561232c5760405162461bcd60e51b815260206004820152603860248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2064656c69737465640000000000000000606482015260840161083e565b6123346134ea565b61238e5760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b816000106124045760405162461bcd60e51b815260206004820152603360248201527f5265616c576f726c644173736574526563656970743a205f636f7374206d757360448201527f742062652067726561746572207468616e203000000000000000000000000000606482015260840161083e565b600061240f84613fec565b9050600061241d8285613bea565b905080857f2bce37c591c5b0d254c3056688b080a088f160fff82b6e79f456c8a20d5570f68660405161245291815260200190565b60405180910390a35050506111ea6001600555565b61246f613981565b6124776134ea565b61250f5760405162461bcd60e51b815260206004820152604960248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f6973206e6f7420616c6c6f77656420626563617573652074686520706f6f6c2060648201527f68617320656e6465640000000000000000000000000000000000000000000000608482015260a40161083e565b600f5460ff166125875760405162461bcd60e51b815260206004820152603b60248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f6973206e6f7420616c6c6f77656420617420746869732074696d650000000000606482015260840161083e565b80620f4240111561260e5760405162461bcd60e51b8152602060048201526044602482018190527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d7573908201527f742062652067726561746572207468616e206f7220657175616c20746f2031206064820152631554d11560e21b608482015260a40161083e565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a69190614992565b81111561271b5760405162461bcd60e51b815260206004820152602e60248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f7420555344542062616c616e6365000000000000000000000000000000000000606482015260840161083e565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663dd62ed3e336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015612795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b99190614992565b81111561282e5760405162461bcd60e51b815260206004820152603060248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f74205553445420616c6c6f77616e636500000000000000000000000000000000606482015260840161083e565b61283e620f4240624c4b406149ab565b8161284860025490565b6128529190614927565b11156128c65760405162461bcd60e51b815260206004820152602760248201527f537461626c7a43616e6e6176657374506f6f6c3a204d617820616d6f756e742060448201527f7265616368656400000000000000000000000000000000000000000000000000606482015260840161083e565b6128d033826140cf565b61290b33600d546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169291168461365e565b60405181815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2611fb26001600555565b612952613490565b600e54156129c75760405162461bcd60e51b8152602060048201526024808201527f537461626c7a43616e6e6176657374506f6f6c3a20416c72656164792073746160448201527f7274656400000000000000000000000000000000000000000000000000000000606482015260840161083e565b42600e55600f805460ff191660011790556040517fd8cea0ecd56872ff072e771658b5682ffe4de16d752947f79597d600ea56f7a990600090a1565b60006001600160a01b038216612a815760405162461bcd60e51b815260206004820152603860248201527f537461626c7a43616e6e6176657374506f6f6c3a205f757365722063616e6e6f60448201527f7420657175616c20746865207a65726f20616464726573730000000000000000606482015260840161083e565b612a8a8261419a565b6001600160a01b0383166000908152601660205260409020600101545b610a189190614927565b6060612ac08383600754613e4e565b612aca838361493a565b612ad5906001614927565b67ffffffffffffffff811115612aed57612aed61494d565b604051908082528060200260200182016040528015612b7857816020015b612b656040518061010001604052806000815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b815260200190600190039081612b0b5790505b5090506000835b838111612c3e576000818152600b60209081526040918290208251610100810184528154815260018201546001600160a01b03908116938201939093526002820154909216928201929092526003820154606082015260048201546080820152600582015460a0820152600682015460c082015260079091015460e08201528351849084908110612c1257612c12614963565b60200260200101819052508180612c2890614979565b9250508080612c3690614979565b915050612b7f565b505092915050565b60606000612c53856111ee565b9050612c60848483613e4e565b612c6a848461493a565b612c75906001614927565b67ffffffffffffffff811115612c8d57612c8d61494d565b604051908082528060200260200182016040528015612d1857816020015b612d056040518061010001604052806000815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b815260200190600190039081612cab5790505b5091506000845b848111611689576001600160a01b0387166000908152600a602052604081206002018054600b92919084908110612d5857612d58614963565b6000918252602080832090910154835282810193909352604091820190208151610100810183528154815260018201546001600160a01b03908116948201949094526002820154909316918301919091526003810154606083015260048101546080830152600581015460a0830152600681015460c08301526007015460e08201528451859084908110612dee57612dee614963565b60200260200101819052508180612e0490614979565b9250508080612e1290614979565b915050612d1f565b612e22613981565b806007548110612e8a5760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b606482015260840161083e565b6000818152600b602052604090206004015415612f0f5760405162461bcd60e51b815260206004820152603960248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2070757263686173656400000000000000606482015260840161083e565b6000818152600b602052604090206005015415612f945760405162461bcd60e51b815260206004820152603860248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2064656c69737465640000000000000000606482015260840161083e565b612f9c6134ea565b612ff65760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b6000828152600b602052604090206001810154336001600160a01b03909116036130885760405162461bcd60e51b815260206004820152603b60248201527f5265616c576f726c644173736574526563656970743a20596f752063616e6e6f60448201527f7420707572636861736520796f7572206f776e206c697374696e670000000000606482015260840161083e565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156130fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131209190614992565b816007015411156131995760405162461bcd60e51b815260206004820152603060248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e7420555344542062616c616e636500000000000000000000000000000000606482015260840161083e565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663dd62ed3e336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015613213573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132379190614992565b816007015411156132b05760405162461bcd60e51b815260206004820152603260248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e74205553445420616c6c6f77616e63650000000000000000000000000000606482015260840161083e565b4260048201556002808201805473ffffffffffffffffffffffffffffffffffffffff1916339081179091556000908152600a602090815260408083209093018054600181810183559184529183209091018690556006840154908401546001600160a01b03168252918120805490919061332b90849061493a565b92505081905550806006015460066000828254613348919061493a565b90915550613390905033600183015460078401546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169392169061365e565b6133ca3360068301546001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190613a02565b604051839033907fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b90600090a35050611fb26001600555565b61340b613490565b6001600160a01b0381166134875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161083e565b611fb281613def565b600c546001600160a01b03163314610dbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161083e565b60006134f4612122565b42111580156121ad5750506010541590565b6001600160a01b0383166135815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0382166135fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6040516001600160a01b03808516602483015283166044820152606481018290526136f79085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909316929092179091526141f2565b50505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146136f7578181101561377c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161083e565b6136f78484848403613506565b6001600160a01b0383166138055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0382166138815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161083e565b61388c8383836142d7565b6001600160a01b0383166000908152602081905260409020548181101561391b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36136f7565b6002600554036139d35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083e565b6002600555565b6139e381614493565b6012546001600160a01b03909116600090815260166020526040902055565b6040516001600160a01b038316602482015260448101829052613a4b9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016136ab565b505050565b6000601154613a5e836144da565b601054613a6b91906149ab565b610a1891906149c2565b6001600160a01b038216613af15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161083e565b613afd826000836142d7565b6001600160a01b03821660009081526020819052604090205481811015613b8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600082600010613c625760405162461bcd60e51b815260206004820152603560248201527f5265616c576f726c644173736574526563656970743a205f616d6f756e74206d60448201527f7573742062652067726561746572207468616e20300000000000000000000000606482015260840161083e565b81600010613cd85760405162461bcd60e51b815260206004820152603360248201527f5265616c576f726c644173736574526563656970743a205f636f7374206d757360448201527f742062652067726561746572207468616e203000000000000000000000000000606482015260840161083e565b336000818152600a602090815260408083206007805483516101008101855281815280860197885280850187815242606083019081526080830189815260a084018a815260c085018f815260e086018f8152878d52600b909b52988b20945185559a5160018501805473ffffffffffffffffffffffffffffffffffffffff199081166001600160a01b0393841617909155935160028601805490951691161790925551600383015551600482015596516005880155925160068701559251949092019390935580549092918691849190613db3908490614927565b90915550506001808301805491820181556000908152602081209091018290556007805491613de183614979565b909155509095945050505050565b600c80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b81831115613eea5760405162461bcd60e51b815260206004820152604a60248201527f5265616c576f726c644173736574526563656970743a20537461727420696e6460448201527f6578206d757374206265206c657373207468616e206f7220657175616c20746f60648201527f20656e6420696e64657800000000000000000000000000000000000000000000608482015260a40161083e565b808310613f5f5760405162461bcd60e51b815260206004820152602a60248201527f5265616c576f726c644173736574526563656970743a20496e76616c6964207360448201527f7461727420696e64657800000000000000000000000000000000000000000000606482015260840161083e565b808210613a4b5760405162461bcd60e51b815260206004820152602860248201527f5265616c576f726c644173736574526563656970743a20496e76616c6964206560448201527f6e6420696e646578000000000000000000000000000000000000000000000000606482015260840161083e565b6000600654613fe260025490565b6121ad919061493a565b6000818152600b6020526040812060018101546001600160a01b0316331461407c5760405162461bcd60e51b815260206004820152603f60248201527f5265616c576f726c644173736574526563656970743a204f6e6c79207468652060448201527f73656c6c65722063616e2064656c697374207468656972206c697374696e6700606482015260840161083e565b426005820155336000908152600a6020526040812060068301548154919290918391906140aa90849061493a565b9091555050600880549060006140bf83614979565b9091555050506006015492915050565b6001600160a01b0382166141255760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161083e565b614131600083836142d7565b80600260008282546141439190614927565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0381166000908152602081815260408083205460169092528220546012546c0c9f2c9cd04674edea40000000916141d79161493a565b6141e190836149ab565b6141eb91906149c2565b9392505050565b6000614247826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166145029092919063ffffffff16565b805190915015613a4b578080602001905181019061426591906149e4565b613a4b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161083e565b8060001061434d5760405162461bcd60e51b815260206004820152603660248201527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d757360448201527f742062652067726561746572207468616e207a65726f00000000000000000000606482015260840161083e565b6001600160a01b038316158061436b57506001600160a01b03831630145b8061437d57506001600160a01b038216155b8061439d57506001600160a01b0382163014801561439d575060095460ff165b6144355760405162461bcd60e51b815260206004820152605d60248201527f537461626c7a43616e6e6176657374506f6f6c3a205265636569707420746f6b60448201527f656e206973206f6e6c79207472616e736665727261626c6520766961204f544360648201527f2c206465706f736974696e672c20616e64207769746864726177696e67000000608482015260a40161083e565b6001600160a01b0383161580159061445657506001600160a01b0383163014155b1561446457614464836139da565b6001600160a01b0382161580159061448557506001600160a01b0382163014155b15613a4b57613a4b826139da565b600061449e8261419a565b905080156111ea576001600160a01b038216600090815260166020526040812060010180548392906144d1908490614927565b90915550505050565b6001600160a01b0381166000908152600a602090815260408083205491839052822054612aa7565b60606145118484600085614519565b949350505050565b6060824710156145915760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161083e565b600080866001600160a01b031685876040516145ad9190614a06565b60006040518083038185875af1925050503d80600081146145ea576040519150601f19603f3d011682016040523d82523d6000602084013e6145ef565b606091505b50915091506146008783838761460b565b979650505050505050565b6060831561467a578251600003614673576001600160a01b0385163b6146735760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161083e565b5081614511565b614511838381511561468f5781518083602001fd5b8060405162461bcd60e51b815260040161083e91906146cd565b60005b838110156146c45781810151838201526020016146ac565b50506000910152565b60208152600082518060208401526146ec8160408501602087016146a9565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461471757600080fd5b919050565b6000806040838503121561472f57600080fd5b61473883614700565b946020939093013593505050565b60006020828403121561475857600080fd5b5035919050565b60008060006060848603121561477457600080fd5b61477d84614700565b925061478b60208501614700565b9150604084013590509250925092565b6000602082840312156147ad57600080fd5b6141eb82614700565b600080604083850312156147c957600080fd5b50508035926020909101359150565b6000806000606084860312156147ed57600080fd5b6147f684614700565b95602085013595506040909401359392505050565b602080825282518282018190526000919060409081850190868401855b8281101561489757815180518552868101516001600160a01b0390811688870152868201511686860152606080820151908601526080808201519086015260a0808201519086015260c0808201519086015260e090810151908501526101009093019290850190600101614828565b5091979650505050505050565b600080604083850312156148b757600080fd5b6148c083614700565b91506148ce60208401614700565b90509250929050565b600181811c908216806148eb57607f821691505b60208210810361490b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a1857610a18614911565b81810381811115610a1857610a18614911565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006001820161498b5761498b614911565b5060010190565b6000602082840312156149a457600080fd5b5051919050565b8082028115828204841417610a1857610a18614911565b6000826149df57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156149f657600080fd5b815180151581146141eb57600080fd5b60008251614a188184602087016146a9565b919091019291505056fea264697066735822122062fa7b6652b7c19de3536a19675dc08119443a4ce4c3388455622b59604ccfee64736f6c6343000811003300000000000000000000000080b6012d6fabbd45e7521d77cbd9ebb26fc51229
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103575760003560e01c806391c05b0b116101c8578063c4b0451811610104578063ec81532a116100a2578063efef39a11161007c578063efef39a11461078a578063f21f537d1461079d578063f2fde38b146107a6578063f95049eb146107b957600080fd5b8063ec81532a1461076a578063ecb70fb714610777578063ecf5ac891461078157600080fd5b8063dd62ed3e116100de578063dd62ed3e14610652578063df76dbc91461068b578063dfe3c67114610730578063e1e6b8981461074357600080fd5b8063c4b0451814610623578063c78b616c14610636578063cbc45f371461063f57600080fd5b8063a7b0e7d511610171578063b3de019c1161014b578063b3de019c146105e2578063b6b55f25146105f5578063be9a655514610608578063c00007b01461061057600080fd5b8063a7b0e7d5146105be578063a9059cbb146105c7578063b1356488146105da57600080fd5b8063a14739d6116101a2578063a14739d61461059a578063a457c2d7146105a3578063a5d87d6c146105b657600080fd5b806391c05b0b1461056c57806395d89b411461057f578063964bc33f1461058757600080fd5b80633ccfd60b11610297578063703ff49e1161024057806380594fef1161021a57806380594fef1461051557806381b73a8a146105285780638da5cb5b146105485780638e68d2421461055957600080fd5b8063703ff49e146104d157806370a08231146104e4578063715018a61461050d57600080fd5b8063695917a711610271578063695917a7146104a2578063699a6510146104b55780636bd8fbf3146104be57600080fd5b80633ccfd60b1461047e57806350fd73671461048657806361a04abe1461049957600080fd5b806323b872dd11610304578063313ce567116102de578063313ce56714610434578063372500ab14610443578063395093511461044b5780633cacd7d61461045e57600080fd5b806323b872dd146103d95780632baabbf7146103ec5780632f48ab7d146103f557600080fd5b8063095ea7b311610335578063095ea7b31461039b5780630ad24528146103be57806318160ddd146103d157600080fd5b806304d7ba151461035c57806306fdde0314610366578063082a279314610384575b600080fd5b6103646107c2565b005b61036e610972565b60405161037b91906146cd565b60405180910390f35b61038d60135481565b60405190815260200161037b565b6103ae6103a936600461471c565b610a04565b604051901515815260200161037b565b6103646103cc366004614746565b610a1e565b60025461038d565b6103ae6103e736600461475f565b610c60565b61038d60115481565b61041c7f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781565b6040516001600160a01b03909116815260200161037b565b6040516006815260200161037b565b610364610c84565b6103ae61045936600461471c565b610dc0565b61038d61046c36600461479b565b600a6020526000908152604090205481565b610364610dff565b6103646104943660046147b6565b610fb2565b61038d60125481565b61038d6104b036600461479b565b6111ee565b61038d60155481565b61038d6104cc36600461479b565b61128b565b6103646104df36600461479b565b611327565b61038d6104f236600461479b565b6001600160a01b031660009081526020819052604090205490565b610364611406565b61038d61052336600461479b565b611418565b61053b6105363660046147d8565b6114b5565b60405161037b919061480b565b600c546001600160a01b031661041c565b61038d61056736600461479b565b611693565b61036461057a366004614746565b611797565b61036e611d35565b610364610595366004614746565b611d44565b61038d60145481565b6103ae6105b136600461471c565b611fb5565b61036461205f565b61038d60085481565b6103ae6105d536600461471c565b612114565b61038d612122565b6103646105f03660046147b6565b6121b2565b610364610603366004614746565b612467565b61036461294a565b61038d61061e36600461479b565b612a03565b61053b6106313660046147b6565b612ab1565b61038d60075481565b61053b61064d3660046147d8565b612c46565b61038d6106603660046148a4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106e9610699366004614746565b600b602052600090815260409020805460018201546002830154600384015460048501546005860154600687015460079097015495966001600160a01b0395861696949095169492939192909188565b604080519889526001600160a01b0397881660208a015295909616948701949094526060860192909252608085015260a084015260c083015260e08201526101000161037b565b600d5461041c906001600160a01b031681565b61041c7f000000000000000000000000a030f3e984a08b5ada0377a9f4eaaf846e6a2cb081565b600f546103ae9060ff1681565b60105415156103ae565b61038d60105481565b610364610798366004614746565b612e1a565b61038d600e5481565b6103646107b436600461479b565b613403565b61038d60065481565b6107ca613490565b6000600e54116108475760405162461bcd60e51b815260206004820152602960248201527f537461626c7a43616e6e6176657374506f6f6c3a20506f6f6c206e6f7420737460448201527f617274656420796574000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61084f6134ea565b6108c15760405162461bcd60e51b815260206004820152602d60248201527f537461626c7a43616e6e6176657374506f6f6c3a20506f6f6c2068617320616c60448201527f72656164792073746f7070656400000000000000000000000000000000000000606482015260840161083e565b600f5460ff161561093a5760405162461bcd60e51b815260206004820152603260248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f697320616c726561647920656e61626c65640000000000000000000000000000606482015260840161083e565b600f805460ff191660011790556040517f8d8235615e2606a7fbb90e968cf1f1d51deafcb5ec8e6c339883b812cf5e0c0c90600090a1565b606060038054610981906148d7565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906148d7565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b600033610a12818585613506565b60019150505b92915050565b610a26613490565b610a2e612122565b4211610aa25760405162461bcd60e51b815260206004820152603760248201527f537461626c7a43616e6e6176657374506f6f6c3a20596f752063616e6e6f742060448201527f656e64206265666f72652074686520656e642064617465000000000000000000606482015260840161083e565b60105415610afd5760405162461bcd60e51b815260206004820152602260248201527f537461626c7a43616e6e6176657374506f6f6c3a20416c726561647920656e64604482015261195960f21b606482015260840161083e565b806000108015610b0f57506002548111155b610bcd5760405162461bcd60e51b815260206004820152606160248201527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d757360448201527f742062652067726561746572207468616e207a65726f20616e64206c6573732060648201527f7468616e206f7220657175616c20746f2074686520746f74616c207374616b6560848201527f640000000000000000000000000000000000000000000000000000000000000060a482015260c40161083e565b600f805460ff191690556010819055600254601155610c177f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec76001600160a01b031633308461365e565b7feadd714b167a6d432dd3d920fddab9ad589f3ccb20b9aa2c0850c7b56b43a442601054601154604051610c55929190918252602082015260400190565b60405180910390a150565b600033610c6e8582856136fd565b610c79858585613789565b506001949350505050565b610c8c613981565b610c95336139da565b3360009081526016602052604090206001015480610d1b5760405162461bcd60e51b815260206004820152603260248201527f537461626c7a43616e6e6176657374506f6f6c3a204e6f20726577617264732060448201527f617661696c61626c6520746f20636c61696d0000000000000000000000000000606482015260840161083e565b33600090815260166020526040812060010181905560148054839290610d42908490614927565b90915550610d7e9050335b6001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7169083613a02565b60405181815233907fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a9060200160405180910390a250610dbe6001600555565b565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610a129082908690610dfa908790614927565b613506565b610e07613981565b601054610e875760405162461bcd60e51b815260206004820152604260248201527f537461626c7a43616e6e6176657374506f6f6c3a20596f752063616e206f6e6c60448201527f79207769746864726177206f6e63652074686520706f6f6c2068617320656e64606482015261195960f21b608482015260a40161083e565b6000610e92336104f2565b336000908152600a6020526040902054909150610eaf8183614927565b600010610f245760405162461bcd60e51b815260206004820152603e60248201527f537461626c7a43616e6e6176657374506f6f6c3a20526563656970742062616c60448201527f616e6365206d7573742062652067726561746572207468616e207a65726f0000606482015260840161083e565b6000610f2f33613a50565b90508215610f4157610f413384613a75565b8115610f6157336000908152600a6020526040812055610f613083613a75565b610f6a33610d4d565b604080518481526020810183905233917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a2505050610dbe6001600555565b610fba613981565b610fc26134ea565b61101c5760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b611025336104f2565b82111561109a5760405162461bcd60e51b815260206004820152602b60248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e742062616c616e6365000000000000000000000000000000000000000000606482015260840161083e565b33600090815260016020908152604080832030845290915290205482111561112a5760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e7420616c6c6f77616e636500000000000000000000000000000000000000606482015260840161083e565b60006111368383613bea565b9050826006600082825461114a9190614927565b90915550506009805460ff191660011790556111986111663390565b6001600160a01b037f000000000000000000000000a030f3e984a08b5ada0377a9f4eaaf846e6a2cb01690308661365e565b6009805460ff191690556040805184815260208101849052829133917f03dec9cb5eb28fc88294be525eef5c4e1c3f2ca49fbe9c31a5ae6f11945aaec1910160405180910390a3506111ea6001600555565b5050565b60006001600160a01b03821661126c5760405162461bcd60e51b815260206004820152603a60248201527f5265616c576f726c644173736574526563656970743a205f757365722063616e60448201527f6e6f7420657175616c20746865207a65726f2061646472657373000000000000606482015260840161083e565b506001600160a01b03166000908152600a602052604090206002015490565b60006001600160a01b0382166113095760405162461bcd60e51b815260206004820152603a60248201527f5265616c576f726c644173736574526563656970743a205f757365722063616e60448201527f6e6f7420657175616c20746865207a65726f2061646472657373000000000000606482015260840161083e565b6001600160a01b0382166000908152600a6020526040902054610a18565b61132f613490565b6001600160a01b0381166113ab5760405162461bcd60e51b815260206004820152603b60248201527f537461626c7a43616e6e6176657374506f6f6c3a205f72776148616e646c657260448201527f2063616e6e6f7420626520746865207a65726f20616464726573730000000000606482015260840161083e565b600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f65777b2d4be9c29ab309d1c5b43ef7d5766421e5810cfd46881523b8d472c8cc90602001610c55565b61140e613490565b610dbe6000613def565b60006001600160a01b0382166114965760405162461bcd60e51b815260206004820152603a60248201527f5265616c576f726c644173736574526563656970743a205f757365722063616e60448201527f6e6f7420657175616c20746865207a65726f2061646472657373000000000000606482015260840161083e565b506001600160a01b03166000908152600a602052604090206001015490565b606060006114c285611418565b90506114cf848483613e4e565b6114d9848461493a565b6114e4906001614927565b67ffffffffffffffff8111156114fc576114fc61494d565b60405190808252806020026020018201604052801561158757816020015b6115746040518061010001604052806000815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b81526020019060019003908161151a5790505b5091506000845b848111611689576001600160a01b0387166000908152600a602052604081206001018054600b929190849081106115c7576115c7614963565b6000918252602080832090910154835282810193909352604091820190208151610100810183528154815260018201546001600160a01b03908116948201949094526002820154909316918301919091526003810154606083015260048101546080830152600581015460a0830152600681015460c08301526007015460e0820152845185908490811061165d5761165d614963565b6020026020010181905250818061167390614979565b925050808061168190614979565b91505061158e565b5050509392505050565b60006116a0601054151590565b6117125760405162461bcd60e51b815260206004820152602f60248201527f537461626c7a43616e6e6176657374506f6f6c3a2054686520706f6f6c20686160448201527f73206e6f7420656e646564207965740000000000000000000000000000000000606482015260840161083e565b6001600160a01b03821661178e5760405162461bcd60e51b815260206004820152603860248201527f537461626c7a43616e6e6176657374506f6f6c3a205f757365722063616e6e6f60448201527f7420657175616c20746865207a65726f20616464726573730000000000000000606482015260840161083e565b610a1882613a50565b600d546001600160a01b0316336001600160a01b0316146118465760405162461bcd60e51b815260206004820152604d60248201527f537461626c7a43616e6e6176657374506f6f6c3a204f6e6c792074686520726560448201527f616c20776f726c642061737365742068616e646c65722063616e2063616c6c2060648201527f746869732066756e6374696f6e00000000000000000000000000000000000000608482015260a40161083e565b601054156118e25760405162461bcd60e51b815260206004820152604a60248201527f537461626c7a43616e6e6176657374506f6f6c3a20446973747269627574696f60448201527f6e73206172652064697361626c656420626563617573652074686520706f6f6c60648201527f2068617320656e64656400000000000000000000000000000000000000000000608482015260a40161083e565b60006118ec613fd4565b905080620f4240111561198d5760405162461bcd60e51b815260206004820152604660248201527f537461626c7a43616e6e6176657374506f6f6c3a20546f74616c207374616b6560448201527f64206d7573742062652067726561746572207468616e2031207265636569707460648201527f20746f6b656e0000000000000000000000000000000000000000000000000000608482015260a40161083e565b81620f42401115611a145760405162461bcd60e51b8152602060048201526044602482018190527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d7573908201527f742062652067726561746572207468616e206f7220657175616c20746f2031206064820152631554d11560e21b608482015260a40161083e565b600d546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201527f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7909116906370a0823190602401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190614992565b821115611b315760405162461bcd60e51b815260206004820152602960248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f742062616c616e63650000000000000000000000000000000000000000000000606482015260840161083e565b600d546040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201523060248201527f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec79091169063dd62ed3e90604401602060405180830381865afa158015611bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdf9190614992565b821115611c545760405162461bcd60e51b815260206004820152602b60248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f7420616c6c6f77616e6365000000000000000000000000000000000000000000606482015260840161083e565b8060156000828254611c669190614927565b925050819055508160136000828254611c7f9190614927565b90915550819050611c9d836c0c9f2c9cd04674edea400000006149ab565b611ca791906149c2565b60126000828254611cb89190614927565b9091555050600d54611cf8906001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781169116308561365e565b60408051838152602081018390527f97791d3ac1343e05805a2f905fa80b249c2ca58cf9fef455d4fa7ec13ce58321910160405180910390a15050565b606060048054610981906148d7565b611d4c613981565b806007548110611db45760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b606482015260840161083e565b6000818152600b602052604090206004015415611e395760405162461bcd60e51b815260206004820152603960248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2070757263686173656400000000000000606482015260840161083e565b6000818152600b602052604090206005015415611ebe5760405162461bcd60e51b815260206004820152603860248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2064656c69737465640000000000000000606482015260840161083e565b611ec66134ea565b611f205760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b6000611f2b83613fec565b90508060066000828254611f3f919061493a565b90915550611f7990507f000000000000000000000000a030f3e984a08b5ada0377a9f4eaaf846e6a2cb06001600160a01b03163383613a02565b604051839033907f070be797ebb4cddc2d58b4fe8de5939531dd771aaed937a59fbe5c9dc8a5d09990600090a35050611fb26001600555565b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156120525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161083e565b610c798286868403613506565b612067613490565b600f5460ff166120df5760405162461bcd60e51b815260206004820152603360248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f697320616c72656164792064697361626c656400000000000000000000000000606482015260840161083e565b600f805460ff191690556040517f1d2df1f82541c9ce547cfbcb99cb9ea10d959f53ca0c7b47e17640932dadc42090600090a1565b600033610a12818585613789565b600080600e541161219b5760405162461bcd60e51b815260206004820152602d60248201527f537461626c7a43616e6e6176657374506f6f6c3a20506f6f6c20686173206e6f60448201527f7420737461727465642079657400000000000000000000000000000000000000606482015260840161083e565b6301e13380600e546121ad9190614927565b905090565b6121ba613981565b8160075481106122225760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b606482015260840161083e565b6000818152600b6020526040902060040154156122a75760405162461bcd60e51b815260206004820152603960248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2070757263686173656400000000000000606482015260840161083e565b6000818152600b60205260409020600501541561232c5760405162461bcd60e51b815260206004820152603860248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2064656c69737465640000000000000000606482015260840161083e565b6123346134ea565b61238e5760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b816000106124045760405162461bcd60e51b815260206004820152603360248201527f5265616c576f726c644173736574526563656970743a205f636f7374206d757360448201527f742062652067726561746572207468616e203000000000000000000000000000606482015260840161083e565b600061240f84613fec565b9050600061241d8285613bea565b905080857f2bce37c591c5b0d254c3056688b080a088f160fff82b6e79f456c8a20d5570f68660405161245291815260200190565b60405180910390a35050506111ea6001600555565b61246f613981565b6124776134ea565b61250f5760405162461bcd60e51b815260206004820152604960248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f6973206e6f7420616c6c6f77656420626563617573652074686520706f6f6c2060648201527f68617320656e6465640000000000000000000000000000000000000000000000608482015260a40161083e565b600f5460ff166125875760405162461bcd60e51b815260206004820152603b60248201527f537461626c7a43616e6e6176657374506f6f6c3a204465706f736974696e672060448201527f6973206e6f7420616c6c6f77656420617420746869732074696d650000000000606482015260840161083e565b80620f4240111561260e5760405162461bcd60e51b8152602060048201526044602482018190527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d7573908201527f742062652067726561746572207468616e206f7220657175616c20746f2031206064820152631554d11560e21b608482015260a40161083e565b6001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a69190614992565b81111561271b5760405162461bcd60e51b815260206004820152602e60248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f7420555344542062616c616e6365000000000000000000000000000000000000606482015260840161083e565b6001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec71663dd62ed3e336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015612795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b99190614992565b81111561282e5760405162461bcd60e51b815260206004820152603060248201527f537461626c7a43616e6e6176657374506f6f6c3a20496e73756666696369656e60448201527f74205553445420616c6c6f77616e636500000000000000000000000000000000606482015260840161083e565b61283e620f4240624c4b406149ab565b8161284860025490565b6128529190614927565b11156128c65760405162461bcd60e51b815260206004820152602760248201527f537461626c7a43616e6e6176657374506f6f6c3a204d617820616d6f756e742060448201527f7265616368656400000000000000000000000000000000000000000000000000606482015260840161083e565b6128d033826140cf565b61290b33600d546001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781169291168461365e565b60405181815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2611fb26001600555565b612952613490565b600e54156129c75760405162461bcd60e51b8152602060048201526024808201527f537461626c7a43616e6e6176657374506f6f6c3a20416c72656164792073746160448201527f7274656400000000000000000000000000000000000000000000000000000000606482015260840161083e565b42600e55600f805460ff191660011790556040517fd8cea0ecd56872ff072e771658b5682ffe4de16d752947f79597d600ea56f7a990600090a1565b60006001600160a01b038216612a815760405162461bcd60e51b815260206004820152603860248201527f537461626c7a43616e6e6176657374506f6f6c3a205f757365722063616e6e6f60448201527f7420657175616c20746865207a65726f20616464726573730000000000000000606482015260840161083e565b612a8a8261419a565b6001600160a01b0383166000908152601660205260409020600101545b610a189190614927565b6060612ac08383600754613e4e565b612aca838361493a565b612ad5906001614927565b67ffffffffffffffff811115612aed57612aed61494d565b604051908082528060200260200182016040528015612b7857816020015b612b656040518061010001604052806000815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b815260200190600190039081612b0b5790505b5090506000835b838111612c3e576000818152600b60209081526040918290208251610100810184528154815260018201546001600160a01b03908116938201939093526002820154909216928201929092526003820154606082015260048201546080820152600582015460a0820152600682015460c082015260079091015460e08201528351849084908110612c1257612c12614963565b60200260200101819052508180612c2890614979565b9250508080612c3690614979565b915050612b7f565b505092915050565b60606000612c53856111ee565b9050612c60848483613e4e565b612c6a848461493a565b612c75906001614927565b67ffffffffffffffff811115612c8d57612c8d61494d565b604051908082528060200260200182016040528015612d1857816020015b612d056040518061010001604052806000815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b815260200190600190039081612cab5790505b5091506000845b848111611689576001600160a01b0387166000908152600a602052604081206002018054600b92919084908110612d5857612d58614963565b6000918252602080832090910154835282810193909352604091820190208151610100810183528154815260018201546001600160a01b03908116948201949094526002820154909316918301919091526003810154606083015260048101546080830152600581015460a0830152600681015460c08301526007015460e08201528451859084908110612dee57612dee614963565b60200260200101819052508180612e0490614979565b9250508080612e1290614979565b915050612d1f565b612e22613981565b806007548110612e8a5760405162461bcd60e51b815260206004820152602d60248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b606482015260840161083e565b6000818152600b602052604090206004015415612f0f5760405162461bcd60e51b815260206004820152603960248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2070757263686173656400000000000000606482015260840161083e565b6000818152600b602052604090206005015415612f945760405162461bcd60e51b815260206004820152603860248201527f5265616c576f726c644173736574526563656970743a204c697374696e67206860448201527f617320616c7265616479206265656e2064656c69737465640000000000000000606482015260840161083e565b612f9c6134ea565b612ff65760405162461bcd60e51b815260206004820152602560248201527f5265616c576f726c644173736574526563656970743a204f54432068617320636044820152641b1bdcd95960da1b606482015260840161083e565b6000828152600b602052604090206001810154336001600160a01b03909116036130885760405162461bcd60e51b815260206004820152603b60248201527f5265616c576f726c644173736574526563656970743a20596f752063616e6e6f60448201527f7420707572636861736520796f7572206f776e206c697374696e670000000000606482015260840161083e565b6001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156130fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131209190614992565b816007015411156131995760405162461bcd60e51b815260206004820152603060248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e7420555344542062616c616e636500000000000000000000000000000000606482015260840161083e565b6001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec71663dd62ed3e336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015613213573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132379190614992565b816007015411156132b05760405162461bcd60e51b815260206004820152603260248201527f5265616c576f726c644173736574526563656970743a20496e7375666669636960448201527f656e74205553445420616c6c6f77616e63650000000000000000000000000000606482015260840161083e565b4260048201556002808201805473ffffffffffffffffffffffffffffffffffffffff1916339081179091556000908152600a602090815260408083209093018054600181810183559184529183209091018690556006840154908401546001600160a01b03168252918120805490919061332b90849061493a565b92505081905550806006015460066000828254613348919061493a565b90915550613390905033600183015460078401546001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781169392169061365e565b6133ca3360068301546001600160a01b037f000000000000000000000000a030f3e984a08b5ada0377a9f4eaaf846e6a2cb0169190613a02565b604051839033907fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b90600090a35050611fb26001600555565b61340b613490565b6001600160a01b0381166134875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161083e565b611fb281613def565b600c546001600160a01b03163314610dbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161083e565b60006134f4612122565b42111580156121ad5750506010541590565b6001600160a01b0383166135815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0382166135fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6040516001600160a01b03808516602483015283166044820152606481018290526136f79085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909316929092179091526141f2565b50505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146136f7578181101561377c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161083e565b6136f78484848403613506565b6001600160a01b0383166138055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0382166138815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161083e565b61388c8383836142d7565b6001600160a01b0383166000908152602081905260409020548181101561391b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36136f7565b6002600554036139d35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083e565b6002600555565b6139e381614493565b6012546001600160a01b03909116600090815260166020526040902055565b6040516001600160a01b038316602482015260448101829052613a4b9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016136ab565b505050565b6000601154613a5e836144da565b601054613a6b91906149ab565b610a1891906149c2565b6001600160a01b038216613af15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161083e565b613afd826000836142d7565b6001600160a01b03821660009081526020819052604090205481811015613b8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161083e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600082600010613c625760405162461bcd60e51b815260206004820152603560248201527f5265616c576f726c644173736574526563656970743a205f616d6f756e74206d60448201527f7573742062652067726561746572207468616e20300000000000000000000000606482015260840161083e565b81600010613cd85760405162461bcd60e51b815260206004820152603360248201527f5265616c576f726c644173736574526563656970743a205f636f7374206d757360448201527f742062652067726561746572207468616e203000000000000000000000000000606482015260840161083e565b336000818152600a602090815260408083206007805483516101008101855281815280860197885280850187815242606083019081526080830189815260a084018a815260c085018f815260e086018f8152878d52600b909b52988b20945185559a5160018501805473ffffffffffffffffffffffffffffffffffffffff199081166001600160a01b0393841617909155935160028601805490951691161790925551600383015551600482015596516005880155925160068701559251949092019390935580549092918691849190613db3908490614927565b90915550506001808301805491820181556000908152602081209091018290556007805491613de183614979565b909155509095945050505050565b600c80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b81831115613eea5760405162461bcd60e51b815260206004820152604a60248201527f5265616c576f726c644173736574526563656970743a20537461727420696e6460448201527f6578206d757374206265206c657373207468616e206f7220657175616c20746f60648201527f20656e6420696e64657800000000000000000000000000000000000000000000608482015260a40161083e565b808310613f5f5760405162461bcd60e51b815260206004820152602a60248201527f5265616c576f726c644173736574526563656970743a20496e76616c6964207360448201527f7461727420696e64657800000000000000000000000000000000000000000000606482015260840161083e565b808210613a4b5760405162461bcd60e51b815260206004820152602860248201527f5265616c576f726c644173736574526563656970743a20496e76616c6964206560448201527f6e6420696e646578000000000000000000000000000000000000000000000000606482015260840161083e565b6000600654613fe260025490565b6121ad919061493a565b6000818152600b6020526040812060018101546001600160a01b0316331461407c5760405162461bcd60e51b815260206004820152603f60248201527f5265616c576f726c644173736574526563656970743a204f6e6c79207468652060448201527f73656c6c65722063616e2064656c697374207468656972206c697374696e6700606482015260840161083e565b426005820155336000908152600a6020526040812060068301548154919290918391906140aa90849061493a565b9091555050600880549060006140bf83614979565b9091555050506006015492915050565b6001600160a01b0382166141255760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161083e565b614131600083836142d7565b80600260008282546141439190614927565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0381166000908152602081815260408083205460169092528220546012546c0c9f2c9cd04674edea40000000916141d79161493a565b6141e190836149ab565b6141eb91906149c2565b9392505050565b6000614247826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166145029092919063ffffffff16565b805190915015613a4b578080602001905181019061426591906149e4565b613a4b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161083e565b8060001061434d5760405162461bcd60e51b815260206004820152603660248201527f537461626c7a43616e6e6176657374506f6f6c3a205f616d6f756e74206d757360448201527f742062652067726561746572207468616e207a65726f00000000000000000000606482015260840161083e565b6001600160a01b038316158061436b57506001600160a01b03831630145b8061437d57506001600160a01b038216155b8061439d57506001600160a01b0382163014801561439d575060095460ff165b6144355760405162461bcd60e51b815260206004820152605d60248201527f537461626c7a43616e6e6176657374506f6f6c3a205265636569707420746f6b60448201527f656e206973206f6e6c79207472616e736665727261626c6520766961204f544360648201527f2c206465706f736974696e672c20616e64207769746864726177696e67000000608482015260a40161083e565b6001600160a01b0383161580159061445657506001600160a01b0383163014155b1561446457614464836139da565b6001600160a01b0382161580159061448557506001600160a01b0382163014155b15613a4b57613a4b826139da565b600061449e8261419a565b905080156111ea576001600160a01b038216600090815260166020526040812060010180548392906144d1908490614927565b90915550505050565b6001600160a01b0381166000908152600a602090815260408083205491839052822054612aa7565b60606145118484600085614519565b949350505050565b6060824710156145915760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161083e565b600080866001600160a01b031685876040516145ad9190614a06565b60006040518083038185875af1925050503d80600081146145ea576040519150601f19603f3d011682016040523d82523d6000602084013e6145ef565b606091505b50915091506146008783838761460b565b979650505050505050565b6060831561467a578251600003614673576001600160a01b0385163b6146735760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161083e565b5081614511565b614511838381511561468f5781518083602001fd5b8060405162461bcd60e51b815260040161083e91906146cd565b60005b838110156146c45781810151838201526020016146ac565b50506000910152565b60208152600082518060208401526146ec8160408501602087016146a9565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461471757600080fd5b919050565b6000806040838503121561472f57600080fd5b61473883614700565b946020939093013593505050565b60006020828403121561475857600080fd5b5035919050565b60008060006060848603121561477457600080fd5b61477d84614700565b925061478b60208501614700565b9150604084013590509250925092565b6000602082840312156147ad57600080fd5b6141eb82614700565b600080604083850312156147c957600080fd5b50508035926020909101359150565b6000806000606084860312156147ed57600080fd5b6147f684614700565b95602085013595506040909401359392505050565b602080825282518282018190526000919060409081850190868401855b8281101561489757815180518552868101516001600160a01b0390811688870152868201511686860152606080820151908601526080808201519086015260a0808201519086015260c0808201519086015260e090810151908501526101009093019290850190600101614828565b5091979650505050505050565b600080604083850312156148b757600080fd5b6148c083614700565b91506148ce60208401614700565b90509250929050565b600181811c908216806148eb57607f821691505b60208210810361490b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a1857610a18614911565b81810381811115610a1857610a18614911565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006001820161498b5761498b614911565b5060010190565b6000602082840312156149a457600080fd5b5051919050565b8082028115828204841417610a1857610a18614911565b6000826149df57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156149f657600080fd5b815180151581146141eb57600080fd5b60008251614a188184602087016146a9565b919091019291505056fea264697066735822122062fa7b6652b7c19de3536a19675dc08119443a4ce4c3388455622b59604ccfee64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000080b6012d6fabbd45e7521d77cbd9ebb26fc51229
-----Decoded View---------------
Arg [0] : _rwaHandler (address): 0x80b6012d6fabBd45e7521D77CbD9eBb26Fc51229
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000080b6012d6fabbd45e7521d77cbd9ebb26fc51229
Deployed Bytecode Sourcemap
229:11736:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3478:377;;;:::i;:::-;;2154:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;880:26:10;;;;;;;;;816:25:11;;;804:2;789:18;880:26:10;670:177:11;4431:197:2;;;;;;:::i;:::-;;:::i;:::-;;;1477:14:11;;1470:22;1452:41;;1440:2;1425:18;4431:197:2;1312:187:11;2379:660:10;;;;;;:::i;:::-;;:::i;3242:106:2:-;3329:12;;3242:106;;5190:286;;;;;;:::i;:::-;;:::i;814:23:10:-;;;;;;398:28:9;;;;;;;;-1:-1:-1;;;;;2200:55:11;;;2182:74;;2170:2;2155:18;398:28:9;2022:240:11;2236:82:9;;;2310:1;2409:36:11;;2397:2;2382:18;2236:82:9;2267:184:11;5919:391:10;;;:::i;5871:234:2:-;;;;;;:::i;:::-;;:::i;996:38:9:-;;;;;;:::i;:::-;;;;;;;;;;;;;;5162:716:10;;;:::i;2471:572:9:-;;;;;;:::i;:::-;;:::i;843:31:10:-;;;;;;6047:230:9;;;;;;:::i;:::-;;:::i;951:50:10:-;;;;;;5326:224:9;;;;;;:::i;:::-;;:::i;3157:281:10:-;;;;;;:::i;:::-;;:::i;3406:125:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:2;3480:7;3506:18;;;;;;;;;;;;3406:125;1831:101:0;;;:::i;5689:227:9:-;;;;;;:::i;:::-;;:::i;7048:533::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1201:85:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;1201:85;;8348:304:10;;;;;;:::i;:::-;;:::i;6444:1128::-;;;;;;:::i;:::-;;:::i;2365:102:2:-;;;:::i;3224:288:9:-;;;;;;:::i;:::-;;:::i;912:33:10:-;;;;;;6592:427:2;;;;;;:::i;:::-;;:::i;3896:220:10:-;;;:::i;615:25:9:-;;;;;;3727:189:2;;;;;;:::i;:::-;;:::i;7641:180:10:-;;;:::i;3676:482:9:-;;;;;;:::i;:::-;;:::i;4219:863:10:-;;;;;;:::i;:::-;;:::i;2064:213::-;;;:::i;7959:238::-;;;;;;:::i;:::-;;:::i;6420:446:9:-;;;;;;:::i;:::-;;:::i;584:25::-;;;;;;7764:537;;;;;;:::i;:::-;;:::i;3974:149:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4089:18:2;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149;1040:41:9;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1040:41:9;;;;;;;;;;;;;;;;;;;;;5444:25:11;;;-1:-1:-1;;;;;5566:15:11;;;5561:2;5546:18;;5539:43;5618:15;;;;5598:18;;;5591:43;;;;5665:2;5650:18;;5643:34;;;;5708:3;5693:19;;5686:35;5752:3;5737:19;;5730:35;5796:3;5781:19;;5774:35;5840:3;5825:19;;5818:35;5431:3;5416:19;1040:41:9;5101:758:11;332:25:10;;;;;-1:-1:-1;;;;;332:25:10;;;432:31:9;;;;;748::10;;;;;;;;;8746:86;8810:11;;:15;;8746:86;;785:23;;;;;;4236:963:9;;;;;;:::i;:::-;;:::i;721:21:10:-;;;;;;2081:198:0;;;;;;:::i;:::-;;:::i;549:29:9:-;;;;;;3478:377:10;1094:13:0;:11;:13::i;:::-;3555:1:10::1;3543:9;;:13;3535:67;;;::::0;-1:-1:-1;;;3535:67:10;;6066:2:11;3535:67:10::1;::::0;::::1;6048:21:11::0;6105:2;6085:18;;;6078:30;6144:34;6124:18;;;6117:62;6215:11;6195:18;;;6188:39;6244:19;;3535:67:10::1;;;;;;;;;3620:15;:13;:15::i;:::-;3612:73;;;::::0;-1:-1:-1;;;3612:73:10;;6476:2:11;3612:73:10::1;::::0;::::1;6458:21:11::0;6515:2;6495:18;;;6488:30;6554:34;6534:18;;;6527:62;6625:15;6605:18;;;6598:43;6658:19;;3612:73:10::1;6274:409:11::0;3612:73:10::1;3704:19;::::0;::::1;;3703:20;3695:83;;;::::0;-1:-1:-1;;;3695:83:10;;6890:2:11;3695:83:10::1;::::0;::::1;6872:21:11::0;6929:2;6909:18;;;6902:30;6968:34;6948:18;;;6941:62;7039:20;7019:18;;;7012:48;7077:19;;3695:83:10::1;6688:414:11::0;3695:83:10::1;3788:19;:26:::0;;-1:-1:-1;;3788:26:10::1;3810:4;3788:26;::::0;;3829:19:::1;::::0;::::1;::::0;3788::::1;::::0;3829::::1;3478:377::o:0;2154:98:2:-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:8;4568:32:2;719:10:8;4584:7:2;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;;:::o;2379:660:10:-;1094:13:0;:11;:13::i;:::-;2461:12:10::1;:10;:12::i;:::-;2443:15;:30;2435:98;;;::::0;-1:-1:-1;;;2435:98:10;;7751:2:11;2435:98:10::1;::::0;::::1;7733:21:11::0;7790:2;7770:18;;;7763:30;7829:34;7809:18;;;7802:62;7900:25;7880:18;;;7873:53;7943:19;;2435:98:10::1;7549:419:11::0;2435:98:10::1;8810:11:::0;;:15;2543:58:::1;;;::::0;-1:-1:-1;;;2543:58:10;;8175:2:11;2543:58:10::1;::::0;::::1;8157:21:11::0;8214:2;8194:18;;;8187:30;8253:34;8233:18;;;8226:62;-1:-1:-1;;;8304:18:11;;;8297:32;8346:19;;2543:58:10::1;7973:398:11::0;2543:58:10::1;2623:7;2619:1;:11;:39;;;;-1:-1:-1::0;3329:12:2;;2634:7:10::1;:24;;2619:39;2611:149;;;::::0;-1:-1:-1;;;2611:149:10;;8578:2:11;2611:149:10::1;::::0;::::1;8560:21:11::0;8617:2;8597:18;;;8590:30;8656:34;8636:18;;;8629:62;8727:34;8707:18;;;8700:62;8799:34;8778:19;;;8771:63;8871:3;8850:19;;;8843:32;8892:19;;2611:149:10::1;8376:541:11::0;2611:149:10::1;2770:19;:27:::0;;-1:-1:-1;;2770:27:10::1;::::0;;2807:11:::1;:21:::0;;;3329:12:2;;2890:11:10::1;:27:::0;2927:59:::1;:4;-1:-1:-1::0;;;;;2927:21:10::1;719:10:8::0;2971:4:10::1;2807:21:::0;2927::::1;:59::i;:::-;3001:31;3007:11;;3020;;3001:31;;;;;;9096:25:11::0;;;9152:2;9137:18;;9130:34;9084:2;9069:18;;8922:248;3001:31:10::1;;;;;;;;2379:660:::0;:::o;5190:286:2:-;5317:4;719:10:8;5373:38:2;5389:4;719:10:8;5404:6:2;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:2;;5190:286;-1:-1:-1;;;;5190:286:2:o;5919:391:10:-;2261:21:1;:19;:21::i;:::-;5975:27:10::1;719:10:8::0;5975:13:10::1;:27::i;:::-;719:10:8::0;6012:9:10::1;11369:15:::0;;;:8;:15;;;;;:20;;;6071:8;6063:71:::1;;;::::0;-1:-1:-1;;;6063:71:10;;9377:2:11;6063:71:10::1;::::0;::::1;9359:21:11::0;9416:2;9396:18;;;9389:30;9455:34;9435:18;;;9428:62;9526:20;9506:18;;;9499:48;9564:19;;6063:71:10::1;9175:414:11::0;6063:71:10::1;719:10:8::0;6174:1:10::1;6144:22:::0;;;:8:::1;:22;::::0;;;;:27:::1;;:31:::0;;;6185:21:::1;:29:::0;;6210:4;;6174:1;6185:29:::1;::::0;6210:4;;6185:29:::1;:::i;:::-;::::0;;;-1:-1:-1;6224:37:10::1;::::0;-1:-1:-1;719:10:8;6242:12:10::1;-1:-1:-1::0;;;;;6224:4:10::1;:17;::::0;6256:4;6224:17:::1;:37::i;:::-;6276:27;::::0;816:25:11;;;719:10:8;;6276:27:10::1;::::0;804:2:11;789:18;6276:27:10::1;;;;;;;5965:345;2303:20:1::0;1716:1;2809:7;:22;2629:209;2303:20;5919:391:10:o;5871:234:2:-;719:10:8;5959:4:2;4089:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4089:27:2;;;;;;;;;;5959:4;;719:10:8;6013:64:2;;719:10:8;;4089:27:2;;6038:38;;6066:10;;6038:38;:::i;:::-;6013:8;:64::i;5162:716:10:-;2261:21:1;:19;:21::i;:::-;8810:11:10;;5214:89:::1;;;::::0;-1:-1:-1;;;5214:89:10;;10115:2:11;5214:89:10::1;::::0;::::1;10097:21:11::0;10154:2;10134:18;;;10127:30;10193:34;10173:18;;;10166:62;10264:34;10244:18;;;10237:62;-1:-1:-1;;;10315:19:11;;;10308:33;10358:19;;5214:89:10::1;9913:470:11::0;5214:89:10::1;5313:12;5328:23;719:10:8::0;5338:12:10::1;640:96:8::0;5328:23:10::1;719:10:8::0;5361:8:10::1;8964:13:9::0;;;:6;:13;;;;;:26;5313:38:10;;-1:-1:-1;5428:13:10::1;8964:26:9::0;5313:38:10;5428:13:::1;:::i;:::-;5424:1;:17;5416:92;;;::::0;-1:-1:-1;;;5416:92:10;;10590:2:11;5416:92:10::1;::::0;::::1;10572:21:11::0;10629:2;10609:18;;;10602:30;10668:34;10648:18;;;10641:62;10739:32;10719:18;;;10712:60;10789:19;;5416:92:10::1;10388:426:11::0;5416:92:10::1;5518:11;5532:35;719:10:8::0;5532:21:10::1;:35::i;:::-;5518:49:::0;-1:-1:-1;5581:11:10;;5577:70:::1;;5608:28;719:10:8::0;5628:7:10::1;5608:5;:28::i;:::-;5660:7:::0;;5656:113:::1;;719:10:8::0;9167:1:9;9138:13;;;:6;:13;;;;;:30;5733:25:10::1;5747:4;5754:3;5733:5;:25::i;:::-;5778:39;719:10:8::0;5796:12:10::1;640:96:8::0;5778:39:10::1;5832;::::0;;9096:25:11;;;9152:2;9137:18;;9130:34;;;719:10:8;;5832:39:10::1;::::0;9069:18:11;5832:39:10::1;;;;;;;5204:674;;;2303:20:1::0;1716:1;2809:7;:22;2629:209;2471:572:9;2261:21:1;:19;:21::i;:::-;1884:15:9::1;:13;:15::i;:::-;1876:65;;;::::0;-1:-1:-1;;;1876:65:9;;11021:2:11;1876:65:9::1;::::0;::::1;11003:21:11::0;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;-1:-1:-1;;;11150:18:11;;;11143:35;11195:19;;1876:65:9::1;10819:401:11::0;1876:65:9::1;2577:23:::2;719:10:8::0;2587:12:9::2;640:96:8::0;2577:23:9::2;2566:7;:34;;2558:90;;;::::0;-1:-1:-1;;;2558:90:9;;11427:2:11;2558:90:9::2;::::0;::::2;11409:21:11::0;11466:2;11446:18;;;11439:30;11505:34;11485:18;;;11478:62;11576:13;11556:18;;;11549:41;11607:19;;2558:90:9::2;11225:407:11::0;2558:90:9::2;719:10:8::0;4063:7:2;4089:18;;;:11;:18;;;;;;;;2709:4:9::2;4089:27:2::0;;;;;;;;2666:7:9::2;:49;;2658:107;;;::::0;-1:-1:-1;;;2658:107:9;;11839:2:11;2658:107:9::2;::::0;::::2;11821:21:11::0;11878:2;11858:18;;;11851:30;11917:34;11897:18;;;11890:62;11988:15;11968:18;;;11961:43;12021:19;;2658:107:9::2;11637:409:11::0;2658:107:9::2;2775:14;2792:21;2798:7;2807:5;2792;:21::i;:::-;2775:38;;2844:7;2823:17;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;2861:8:9::2;:15:::0;;-1:-1:-1;;2861:15:9::2;2872:4;2861:15;::::0;;2886:62:::2;2911:12;719:10:8::0;;640:96;2911:12:9::2;-1:-1:-1::0;;;;;2886:7:9::2;:24;::::0;2933:4:::2;2940:7:::0;2886:24:::2;:62::i;:::-;2958:8;:16:::0;;-1:-1:-1;;2958:16:9::2;::::0;;2989:47:::2;::::0;;9096:25:11;;;9152:2;9137:18;;9130:34;;;3010:9:9;;719:10:8;;2989:47:9::2;::::0;9069:18:11;2989:47:9::2;;;;;;;2548:495;2303:20:1::0;1716:1;2809:7;:22;2629:209;2303:20;2471:572:9;;:::o;6047:230::-;6114:4;-1:-1:-1;;;;;6138:19:9;;6130:90;;;;-1:-1:-1;;;6130:90:9;;12253:2:11;6130:90:9;;;12235:21:11;12292:2;12272:18;;;12265:30;12331:34;12311:18;;;12304:62;12402:28;12382:18;;;12375:56;12448:19;;6130:90:9;12051:422:11;6130:90:9;-1:-1:-1;;;;;;6237:13:9;;;;;:6;:13;;;;;:26;;:33;;6047:230::o;5326:224::-;5393:4;-1:-1:-1;;;;;5417:19:9;;5409:90;;;;-1:-1:-1;;;5409:90:9;;12253:2:11;5409:90:9;;;12235:21:11;12292:2;12272:18;;;12265:30;12331:34;12311:18;;;12304:62;12402:28;12382:18;;;12375:56;12448:19;;5409:90:9;12051:422:11;5409:90:9;-1:-1:-1;;;;;8964:13:9;;8941:4;8964:13;;;:6;:13;;;;;:26;5516:27;8873:124;3157:281:10;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;3252:25:10;::::1;3244:97;;;::::0;-1:-1:-1;;;3244:97:10;;12680:2:11;3244:97:10::1;::::0;::::1;12662:21:11::0;12719:2;12699:18;;;12692:30;12758:34;12738:18;;;12731:62;12829:29;12809:18;;;12802:57;12876:19;;3244:97:10::1;12478:423:11::0;3244:97:10::1;3351:10;:24:::0;;-1:-1:-1;;3351:24:10::1;-1:-1:-1::0;;;;;3351:24:10;::::1;::::0;;::::1;::::0;;;3390:41:::1;::::0;2182:74:11;;;3390:41:10::1;::::0;2170:2:11;2155:18;3390:41:10::1;2022:240:11::0;1831:101:0;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;5689:227:9:-:0;5755:4;-1:-1:-1;;;;;5779:19:9;;5771:90;;;;-1:-1:-1;;;5771:90:9;;12253:2:11;5771:90:9;;;12235:21:11;12292:2;12272:18;;;12265:30;12331:34;12311:18;;;12304:62;12402:28;12382:18;;;12375:56;12448:19;;5771:90:9;12051:422:11;5771:90:9;-1:-1:-1;;;;;;5878:13:9;;;;;:6;:13;;;;;:24;;:31;;5689:227::o;7048:533::-;7145:25;7182:10;7195:27;7216:5;7195:20;:27::i;:::-;7182:40;;7232:47;7249:11;7262:9;7273:5;7232:16;:47::i;:::-;7314:23;7326:11;7314:9;:23;:::i;:::-;:27;;7340:1;7314:27;:::i;:::-;7300:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7300:42:9;;;;;;;;;;;;;;;;-1:-1:-1;7289:53:9;-1:-1:-1;7352:14:9;7394:11;7376:174;7416:9;7407:5;:18;7376:174;;-1:-1:-1;;;;;7482:13:9;;7472:42;7482:13;;;:6;:13;;;;;:24;;:31;;7472:9;;:42;7482:24;7507:5;;7482:31;;;;;;:::i;:::-;;;;;;;;;;;;;7472:42;;;;;;;;;;;;;;;7450:64;;;;;;;;;;;;;;;-1:-1:-1;;;;;7450:64:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:19;;:8;;7459:9;;7450:19;;;;;;:::i;:::-;;;;;;:64;;;;7528:11;;;;;:::i;:::-;;;;7427:7;;;;;:::i;:::-;;;;7376:174;;;;7559:15;;7048:533;;;;;:::o;8348:304:10:-;8416:4;8440:10;8810:11;;:15;;;8746:86;8440:10;8432:70;;;;-1:-1:-1;;;8432:70:10;;13759:2:11;8432:70:10;;;13741:21:11;13798:2;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13908:17;13888:18;;;13881:45;13943:19;;8432:70:10;13557:411:11;8432:70:10;-1:-1:-1;;;;;8520:19:10;;8512:88;;;;-1:-1:-1;;;8512:88:10;;14175:2:11;8512:88:10;;;14157:21:11;14214:2;14194:18;;;14187:30;14253:34;14233:18;;;14226:62;14324:26;14304:18;;;14297:54;14368:19;;8512:88:10;13973:420:11;8512:88:10;8617:28;8639:5;8617:21;:28::i;6444:1128::-;1623:10;;-1:-1:-1;;;;;1623:10:10;719::8;-1:-1:-1;;;;;1607:26:10;;1599:116;;;;-1:-1:-1;;;1599:116:10;;14600:2:11;1599:116:10;;;14582:21:11;14639:2;14619:18;;;14612:30;14678:34;14658:18;;;14651:62;14749:34;14729:18;;;14722:62;14821:15;14800:19;;;14793:44;14854:19;;1599:116:10;14398:481:11;1599:116:10;8810:11;;:15;6648:98:::1;;;::::0;-1:-1:-1;;;6648:98:10;;15086:2:11;6648:98:10::1;::::0;::::1;15068:21:11::0;15125:2;15105:18;;;15098:30;15164:34;15144:18;;;15137:62;15235:34;15215:18;;;15208:62;15307:12;15286:19;;;15279:41;15337:19;;6648:98:10::1;14884:478:11::0;6648:98:10::1;6756:22;6781:23;:21;:23::i;:::-;6756:48;;6834:17;647:7;6822:29;;6814:112;;;::::0;-1:-1:-1;;;6814:112:10;;15569:2:11;6814:112:10::1;::::0;::::1;15551:21:11::0;15608:2;15588:18;;;15581:30;15647:34;15627:18;;;15620:62;15718:34;15698:18;;;15691:62;15790:8;15769:19;;;15762:37;15816:19;;6814:112:10::1;15367:474:11::0;6814:112:10::1;6956:7;647;6944:19;;6936:100;;;::::0;-1:-1:-1;;;6936:100:10;;16048:2:11;6936:100:10::1;::::0;::::1;16030:21:11::0;16087:2;16067:18;;;16060:30;;;16126:34;16106:18;;;16099:62;16197:34;16177:18;;;16170:62;-1:-1:-1;;;16248:19:11;;;16241:35;16293:19;;6936:100:10::1;15846:472:11::0;6936:100:10::1;7080:10;::::0;7065:26:::1;::::0;;;;-1:-1:-1;;;;;7080:10:10;;::::1;7065:26;::::0;::::1;2182:74:11::0;7065:4:10::1;:14:::0;;::::1;::::0;::::1;::::0;2155:18:11;;7065:26:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7054:7;:37;;7046:91;;;::::0;-1:-1:-1;;;7046:91:10;;16714:2:11;7046:91:10::1;::::0;::::1;16696:21:11::0;16753:2;16733:18;;;16726:30;16792:34;16772:18;;;16765:62;16863:11;16843:18;;;16836:39;16892:19;;7046:91:10::1;16512:405:11::0;7046:91:10::1;7181:10;::::0;7166:41:::1;::::0;;;;-1:-1:-1;;;;;7181:10:10;;::::1;7166:41;::::0;::::1;17157:34:11::0;7201:4:10::1;17207:18:11::0;;;17200:43;7166:4:10::1;:14:::0;;::::1;::::0;::::1;::::0;17069:18:11;;7166:41:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7155:7;:52;;7147:108;;;::::0;-1:-1:-1;;;7147:108:10;;17456:2:11;7147:108:10::1;::::0;::::1;17438:21:11::0;17495:2;17475:18;;;17468:30;17534:34;17514:18;;;17507:62;17605:13;17585:18;;;17578:41;17636:19;;7147:108:10::1;17254:407:11::0;7147:108:10::1;7307:17;7265:38;;:59;;;;;;;:::i;:::-;;;;;;;;7352:7;7334:14;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;7427:17:10;;-1:-1:-1;7392:32:10::1;7417:7:::0;532:23:::1;7392:32;:::i;:::-;:52;;;;:::i;:::-;7369:19;;:75;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;7476:10:10::1;::::0;7454:57:::1;::::0;-1:-1:-1;;;;;7454:4:10::1;:21:::0;::::1;::::0;7476:10:::1;7496:4;7503:7:::0;7454:21:::1;:57::i;:::-;7526:39;::::0;;9096:25:11;;;9152:2;9137:18;;9130:34;;;7526:39:10::1;::::0;9069:18:11;7526:39:10::1;;;;;;;6502:1070;6444:1128:::0;:::o;2365:102:2:-;2421:13;2453:7;2446:14;;;;;:::i;3224:288:9:-;2261:21:1;:19;:21::i;:::-;3297:10:9::1;1519:13;;1506:10;:26;1498:84;;;::::0;-1:-1:-1;;;1498:84:9;;18320:2:11;1498:84:9::1;::::0;::::1;18302:21:11::0;18359:2;18339:18;;;18332:30;18398:34;18378:18;;;18371:62;-1:-1:-1;;;18449:18:11;;;18442:43;18502:19;;1498:84:9::1;18118:409:11::0;1498:84:9::1;1600:21;::::0;;;:9:::1;:21;::::0;;;;:33:::1;;::::0;:38;1592:108:::1;;;::::0;-1:-1:-1;;;1592:108:9;;18734:2:11;1592:108:9::1;::::0;::::1;18716:21:11::0;18773:2;18753:18;;;18746:30;18812:34;18792:18;;;18785:62;18883:27;18863:18;;;18856:55;18928:19;;1592:108:9::1;18532:421:11::0;1592:108:9::1;1718:21;::::0;;;:9:::1;:21;::::0;;;;:32:::1;;::::0;:37;1710:106:::1;;;::::0;-1:-1:-1;;;1710:106:9;;19160:2:11;1710:106:9::1;::::0;::::1;19142:21:11::0;19199:2;19179:18;;;19172:30;19238:34;19218:18;;;19211:62;19309:26;19289:18;;;19282:54;19353:19;;1710:106:9::1;18958:420:11::0;1710:106:9::1;1884:15:::2;:13;:15::i;:::-;1876:65;;;::::0;-1:-1:-1;;;1876:65:9;;11021:2:11;1876:65:9::2;::::0;::::2;11003:21:11::0;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;-1:-1:-1;;;11150:18:11;;;11143:35;11195:19;;1876:65:9::2;10819:401:11::0;1876:65:9::2;3334:11:::3;3348:19;3356:10;3348:7;:19::i;:::-;3334:33;;3398:6;3377:17;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;3414:42:9::3;::::0;-1:-1:-1;3414:7:9::3;-1:-1:-1::0;;;;;3414:20:9::3;719:10:8::0;3449:6:9;3414:20:::3;:42::i;:::-;3471:34;::::0;3494:10;;719::8;;3471:34:9::3;::::0;;;::::3;3324:188;2292:1:1::1;2303:20:::0;1716:1;2809:7;:22;2629:209;2303:20;3224:288:9;:::o;6592:427:2:-;719:10:8;6685:4:2;4089:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4089:27:2;;;;;;;;;;6685:4;;719:10:8;6829:15:2;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:2;;19585:2:11;6801:85:2;;;19567:21:11;19624:2;19604:18;;;19597:30;19663:34;19643:18;;;19636:62;19734:7;19714:18;;;19707:35;19759:19;;6801:85:2;19383:401:11;6801:85:2;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;3896:220:10:-;1094:13:0;:11;:13::i;:::-;3962:19:10::1;::::0;::::1;;3954:83;;;::::0;-1:-1:-1;;;3954:83:10;;19991:2:11;3954:83:10::1;::::0;::::1;19973:21:11::0;20030:2;20010:18;;;20003:30;20069:34;20049:18;;;20042:62;20140:21;20120:18;;;20113:49;20179:19;;3954:83:10::1;19789:415:11::0;3954:83:10::1;4047:19;:27:::0;;-1:-1:-1;;4047:27:10::1;::::0;;4089:20:::1;::::0;::::1;::::0;4069:5:::1;::::0;4089:20:::1;3896:220::o:0;3727:189:2:-;3806:4;719:10:8;3860:28:2;719:10:8;3877:2:2;3881:6;3860:9;:28::i;7641:180:10:-;7684:4;7720:1;7708:9;;:13;7700:71;;;;-1:-1:-1;;;7700:71:10;;20411:2:11;7700:71:10;;;20393:21:11;20450:2;20430:18;;;20423:30;20489:34;20469:18;;;20462:62;20560:15;20540:18;;;20533:43;20593:19;;7700:71:10;20209:409:11;7700:71:10;600:8;7788:9;;:26;;;;:::i;:::-;7781:33;;7641:180;:::o;3676:482:9:-;2261:21:1;:19;:21::i;:::-;3769:10:9::1;1519:13;;1506:10;:26;1498:84;;;::::0;-1:-1:-1;;;1498:84:9;;18320:2:11;1498:84:9::1;::::0;::::1;18302:21:11::0;18359:2;18339:18;;;18332:30;18398:34;18378:18;;;18371:62;-1:-1:-1;;;18449:18:11;;;18442:43;18502:19;;1498:84:9::1;18118:409:11::0;1498:84:9::1;1600:21;::::0;;;:9:::1;:21;::::0;;;;:33:::1;;::::0;:38;1592:108:::1;;;::::0;-1:-1:-1;;;1592:108:9;;18734:2:11;1592:108:9::1;::::0;::::1;18716:21:11::0;18773:2;18753:18;;;18746:30;18812:34;18792:18;;;18785:62;18883:27;18863:18;;;18856:55;18928:19;;1592:108:9::1;18532:421:11::0;1592:108:9::1;1718:21;::::0;;;:9:::1;:21;::::0;;;;:32:::1;;::::0;:37;1710:106:::1;;;::::0;-1:-1:-1;;;1710:106:9;;19160:2:11;1710:106:9::1;::::0;::::1;19142:21:11::0;19199:2;19179:18;;;19172:30;19238:34;19218:18;;;19211:62;19309:26;19289:18;;;19282:54;19353:19;;1710:106:9::1;18958:420:11::0;1710:106:9::1;1884:15:::2;:13;:15::i;:::-;1876:65;;;::::0;-1:-1:-1;;;1876:65:9;;11021:2:11;1876:65:9::2;::::0;::::2;11003:21:11::0;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;-1:-1:-1;;;11150:18:11;;;11143:35;11195:19;;1876:65:9::2;10819:401:11::0;1876:65:9::2;3818:8:::3;3814:1;:12;3806:76;;;::::0;-1:-1:-1;;;3806:76:9;;20825:2:11;3806:76:9::3;::::0;::::3;20807:21:11::0;20864:2;20844:18;;;20837:30;20903:34;20883:18;;;20876:62;20974:21;20954:18;;;20947:49;21013:19;;3806:76:9::3;20623:415:11::0;3806:76:9::3;4002:11;4016:19;4024:10;4016:7;:19::i;:::-;4002:33;;4045:17;4065:23;4071:6;4079:8;4065:5;:23::i;:::-;4045:43;;4128:12;4116:10;4103:48;4142:8;4103:48;;;;816:25:11::0;;804:2;789:18;;670:177;4103:48:9::3;;;;;;;;3796:362;;2292:1:1::1;2303:20:::0;1716:1;2809:7;:22;2629:209;4219:863:10;2261:21:1;:19;:21::i;:::-;4290:15:10::1;:13;:15::i;:::-;4282:101;;;::::0;-1:-1:-1;;;4282:101:10;;21245:2:11;4282:101:10::1;::::0;::::1;21227:21:11::0;21284:2;21264:18;;;21257:30;21323:34;21303:18;;;21296:62;21394:34;21374:18;;;21367:62;21466:11;21445:19;;;21438:40;21495:19;;4282:101:10::1;21043:477:11::0;4282:101:10::1;4401:19;::::0;::::1;;4393:91;;;::::0;-1:-1:-1;;;4393:91:10;;21727:2:11;4393:91:10::1;::::0;::::1;21709:21:11::0;21766:2;21746:18;;;21739:30;21805:34;21785:18;;;21778:62;21876:29;21856:18;;;21849:57;21923:19;;4393:91:10::1;21525:423:11::0;4393:91:10::1;4514:7;647;4502:19;;4494:100;;;::::0;-1:-1:-1;;;4494:100:10;;16048:2:11;4494:100:10::1;::::0;::::1;16030:21:11::0;16087:2;16067:18;;;16060:30;;;16126:34;16106:18;;;16099:62;16197:34;16177:18;;;16170:62;-1:-1:-1;;;16248:19:11;;;16241:35;16293:19;;4494:100:10::1;15846:472:11::0;4494:100:10::1;-1:-1:-1::0;;;;;4623:4:10::1;:14;;719:10:8::0;4623:28:10::1;::::0;-1:-1:-1;;;;;;4623:28:10::1;::::0;;;;;;-1:-1:-1;;;;;2200:55:11;;;4623:28:10::1;::::0;::::1;2182:74:11::0;2155:18;;4623:28:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4612:7;:39;;4604:98;;;::::0;-1:-1:-1;;;4604:98:10;;22155:2:11;4604:98:10::1;::::0;::::1;22137:21:11::0;22194:2;22174:18;;;22167:30;22233:34;22213:18;;;22206:62;22304:16;22284:18;;;22277:44;22338:19;;4604:98:10::1;21953:410:11::0;4604:98:10::1;-1:-1:-1::0;;;;;4731:4:10::1;:14;;719:10:8::0;4731:43:10::1;::::0;-1:-1:-1;;;;;;4731:43:10::1;::::0;;;;;;-1:-1:-1;;;;;17175:15:11;;;4731:43:10::1;::::0;::::1;17157:34:11::0;4768:4:10::1;17207:18:11::0;;;17200:43;17069:18;;4731:43:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4720:7;:54;;4712:115;;;::::0;-1:-1:-1;;;4712:115:10;;22570:2:11;4712:115:10::1;::::0;::::1;22552:21:11::0;22609:2;22589:18;;;22582:30;22648:34;22628:18;;;22621:62;22719:18;22699;;;22692:46;22755:19;;4712:115:10::1;22368:412:11::0;4712:115:10::1;695:20;647:7;695:9;:20;:::i;:::-;4861:7;4845:13;3329:12:2::0;;;3242:106;4845:13:10::1;:23;;;;:::i;:::-;:37;;4837:89;;;::::0;-1:-1:-1;;;4837:89:10;;22987:2:11;4837:89:10::1;::::0;::::1;22969:21:11::0;23026:2;23006:18;;;22999:30;23065:34;23045:18;;;23038:62;23136:9;23116:18;;;23109:37;23163:19;;4837:89:10::1;22785:403:11::0;4837:89:10::1;4936:28;719:10:8::0;4956:7:10::1;4936:5;:28::i;:::-;4974:56;719:10:8::0;5010::10::1;::::0;-1:-1:-1;;;;;4974:4:10::1;:21:::0;::::1;::::0;;5010:10:::1;5022:7:::0;4974:21:::1;:56::i;:::-;5045:30;::::0;816:25:11;;;719:10:8;;5045:30:10::1;::::0;804:2:11;789:18;5045:30:10::1;;;;;;;2303:20:1::0;1716:1;2809:7;:22;2629:209;2064:213:10;1094:13:0;:11;:13::i;:::-;2118:9:10::1;::::0;:14;2110:63:::1;;;::::0;-1:-1:-1;;;2110:63:10;;23395:2:11;2110:63:10::1;::::0;::::1;23377:21:11::0;23434:2;23414:18;;;23407:30;23473:34;23453:18;;;23446:62;23544:6;23524:18;;;23517:34;23568:19;;2110:63:10::1;23193:400:11::0;2110:63:10::1;2195:15;2183:9;:27:::0;2220:19:::1;:26:::0;;-1:-1:-1;;2220:26:10::1;2242:4;2220:26;::::0;;2261:9:::1;::::0;::::1;::::0;2220:19:::1;::::0;2261:9:::1;2064:213::o:0;7959:238::-;8016:4;-1:-1:-1;;;;;8040:19:10;;8032:88;;;;-1:-1:-1;;;8032:88:10;;14175:2:11;8032:88:10;;;14157:21:11;14214:2;14194:18;;;14187:30;14253:34;14233:18;;;14226:62;14324:26;14304:18;;;14297:54;14368:19;;8032:88:10;13973:420:11;8032:88:10;8162:28;8184:5;8162:21;:28::i;:::-;-1:-1:-1;;;;;11369:15:10;;11346:4;11369:15;;;:8;:15;;;;;:20;;;8137:22;:53;;;;:::i;6420:446:9:-;6498:25;6535:55;6552:11;6565:9;6576:13;;6535:16;:55::i;:::-;6625:23;6637:11;6625:9;:23;:::i;:::-;:27;;6651:1;6625:27;:::i;:::-;6611:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6611:42:9;;;;;;;;;;;;;;;;-1:-1:-1;6600:53:9;-1:-1:-1;6663:14:9;6705:11;6687:148;6727:9;6718:5;:18;6687:148;;6783:16;;;;:9;:16;;;;;;;;;6761:38;;;;;;;;;;;;;;;-1:-1:-1;;;;;6761:38:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:19;;:8;;6770:9;;6761:19;;;;;;:::i;:::-;;;;;;:38;;;;6813:11;;;;;:::i;:::-;;;;6738:7;;;;;:::i;:::-;;;;6687:148;;;;6844:15;6420:446;;;;:::o;7764:537::-;7862:25;7899:10;7912:28;7934:5;7912:21;:28::i;:::-;7899:41;;7950:47;7967:11;7980:9;7991:5;7950:16;:47::i;:::-;8032:23;8044:11;8032:9;:23;:::i;:::-;:27;;8058:1;8032:27;:::i;:::-;8018:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8018:42:9;;;;;;;;;;;;;;;;-1:-1:-1;8007:53:9;-1:-1:-1;8070:14:9;8112:11;8094:176;8134:9;8125:5;:18;8094:176;;-1:-1:-1;;;;;8200:13:9;;8190:44;8200:13;;;:6;:13;;;;;:26;;:33;;8190:9;;:44;8200:26;8227:5;;8200:33;;;;;;:::i;:::-;;;;;;;;;;;;;8190:44;;;;;;;;;;;;;;;8168:66;;;;;;;;;;;;;;;-1:-1:-1;;;;;8168:66:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:19;;:8;;8177:9;;8168:19;;;;;;:::i;:::-;;;;;;:66;;;;8248:11;;;;;:::i;:::-;;;;8145:7;;;;;:::i;:::-;;;;8094:176;;4236:963;2261:21:1;:19;:21::i;:::-;4311:10:9::1;1519:13;;1506:10;:26;1498:84;;;::::0;-1:-1:-1;;;1498:84:9;;18320:2:11;1498:84:9::1;::::0;::::1;18302:21:11::0;18359:2;18339:18;;;18332:30;18398:34;18378:18;;;18371:62;-1:-1:-1;;;18449:18:11;;;18442:43;18502:19;;1498:84:9::1;18118:409:11::0;1498:84:9::1;1600:21;::::0;;;:9:::1;:21;::::0;;;;:33:::1;;::::0;:38;1592:108:::1;;;::::0;-1:-1:-1;;;1592:108:9;;18734:2:11;1592:108:9::1;::::0;::::1;18716:21:11::0;18773:2;18753:18;;;18746:30;18812:34;18792:18;;;18785:62;18883:27;18863:18;;;18856:55;18928:19;;1592:108:9::1;18532:421:11::0;1592:108:9::1;1718:21;::::0;;;:9:::1;:21;::::0;;;;:32:::1;;::::0;:37;1710:106:::1;;;::::0;-1:-1:-1;;;1710:106:9;;19160:2:11;1710:106:9::1;::::0;::::1;19142:21:11::0;19199:2;19179:18;;;19172:30;19238:34;19218:18;;;19211:62;19309:26;19289:18;;;19282:54;19353:19;;1710:106:9::1;18958:420:11::0;1710:106:9::1;1884:15:::2;:13;:15::i;:::-;1876:65;;;::::0;-1:-1:-1;;;1876:65:9;;11021:2:11;1876:65:9::2;::::0;::::2;11003:21:11::0;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;-1:-1:-1;;;11150:18:11;;;11143:35;11195:19;;1876:65:9::2;10819:401:11::0;1876:65:9::2;4348:23:::3;4374:21:::0;;;:9:::3;:21;::::0;;;;4413:14:::3;::::0;::::3;::::0;719:10:8;-1:-1:-1;;;;;4413:14:9;;::::3;:30:::0;4405:102:::3;;;::::0;-1:-1:-1;;;4405:102:9;;23800:2:11;4405:102:9::3;::::0;::::3;23782:21:11::0;23839:2;23819:18;;;23812:30;23878:34;23858:18;;;23851:62;23949:29;23929:18;;;23922:57;23996:19;;4405:102:9::3;23598:423:11::0;4405:102:9::3;-1:-1:-1::0;;;;;4541:4:9::3;:14;;719:10:8::0;4541:28:9::3;::::0;-1:-1:-1;;;;;;4541:28:9::3;::::0;;;;;;-1:-1:-1;;;;;2200:55:11;;;4541:28:9::3;::::0;::::3;2182:74:11::0;2155:18;;4541:28:9::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4525:7;:12;;;:44;;4517:105;;;::::0;-1:-1:-1;;;4517:105:9;;24228:2:11;4517:105:9::3;::::0;::::3;24210:21:11::0;24267:2;24247:18;;;24240:30;24306:34;24286:18;;;24279:62;24377:18;24357;;;24350:46;24413:19;;4517:105:9::3;24026:412:11::0;4517:105:9::3;-1:-1:-1::0;;;;;4656:4:9::3;:14;;719:10:8::0;4656:43:9::3;::::0;-1:-1:-1;;;;;;4656:43:9::3;::::0;;;;;;-1:-1:-1;;;;;17175:15:11;;;4656:43:9::3;::::0;::::3;17157:34:11::0;4693:4:9::3;17207:18:11::0;;;17200:43;17069:18;;4656:43:9::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4640:7;:12;;;:59;;4632:122;;;::::0;-1:-1:-1;;;4632:122:9;;24645:2:11;4632:122:9::3;::::0;::::3;24627:21:11::0;24684:2;24664:18;;;24657:30;24723:34;24703:18;;;24696:62;24794:20;24774:18;;;24767:48;24832:19;;4632:122:9::3;24443:414:11::0;4632:122:9::3;4786:15;4764:19;::::0;::::3;:37:::0;4811:13:::3;::::0;;::::3;:28:::0;;-1:-1:-1;;4811:28:9::3;719:10:8::0;4811:28:9;;::::3;::::0;;;-1:-1:-1;4849:20:9;;;:6:::3;:20;::::0;;;;;;;:33;;::::3;:50:::0;;-1:-1:-1;4849:50:9;;::::3;::::0;;;;;;;;;;::::3;::::0;;;4948:14:::3;::::0;::::3;::::0;4916;;::::3;::::0;-1:-1:-1;;;;;4916:14:9::3;4909:22:::0;;;;;:53;;:22;;-1:-1:-1;4909:53:9::3;::::0;4948:14;;4909:53:::3;:::i;:::-;;;;;;;;4993:7;:14;;;4972:17;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;5017:65:9::3;::::0;-1:-1:-1;719:10:8;5053:14:9::3;::::0;::::3;::::0;5069:12:::3;::::0;::::3;::::0;-1:-1:-1;;;;;5017:4:9::3;:21:::0;::::3;::::0;;5053:14:::3;::::0;5017:21:::3;:65::i;:::-;5092:50;719:10:8::0;5127:14:9::3;::::0;::::3;::::0;-1:-1:-1;;;;;5092:7:9::3;:20;::::0;:50;:20:::3;:50::i;:::-;5157:35;::::0;5181:10;;719::8;;5157:35:9::3;::::0;;;::::3;4338:861;2292:1:1::1;2303:20:::0;1716:1;2809:7;:22;2629:209;2081:198:0;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;25064:2:11;2161:73:0::1;::::0;::::1;25046:21:11::0;25103:2;25083:18;;;25076:30;25142:34;25122:18;;;25115:62;25213:8;25193:18;;;25186:36;25239:19;;2161:73:0::1;24862:402:11::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;1359:130::-:0;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:8;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;25471:2:11;1414:68:0;;;25453:21:11;;;25490:18;;;25483:30;25549:34;25529:18;;;25522:62;25601:18;;1414:68:0;25269:356:11;11757:206:10;11814:4;11929:12;:10;:12::i;:::-;11910:15;:31;;:46;;;;-1:-1:-1;;8810:11:10;;:15;;11757:206::o;10504:370:2:-;-1:-1:-1;;;;;10635:19:2;;10627:68;;;;-1:-1:-1;;;10627:68:2;;25832:2:11;10627:68:2;;;25814:21:11;25871:2;25851:18;;;25844:30;25910:34;25890:18;;;25883:62;25981:6;25961:18;;;25954:34;26005:19;;10627:68:2;25630:400:11;10627:68:2;-1:-1:-1;;;;;10713:21:2;;10705:68;;;;-1:-1:-1;;;10705:68:2;;26237:2:11;10705:68:2;;;26219:21:11;26276:2;26256:18;;;26249:30;26315:34;26295:18;;;26288:62;26386:4;26366:18;;;26359:32;26408:19;;10705:68:2;26035:398:11;10705:68:2;-1:-1:-1;;;;;10784:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;816:25:11;;;10835:32:2;;789:18:11;10835:32:2;;;;;;;10504:370;;;:::o;974:241:6:-;1139:68;;-1:-1:-1;;;;;26719:15:11;;;1139:68:6;;;26701:34:11;26771:15;;26751:18;;;26744:43;26803:18;;;26796:34;;;1112:96:6;;1132:5;;1162:27;;26613:18:11;;1139:68:6;;;;-1:-1:-1;;1139:68:6;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1139:68:6;;;;;;;;;;1112:19;:96::i;:::-;974:241;;;;:::o;11155:441:2:-;-1:-1:-1;;;;;4089:18:2;;;11285:24;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;11351:37:2;;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:2;;27043:2:11;11404:68:2;;;27025:21:11;27082:2;27062:18;;;27055:30;27121:31;27101:18;;;27094:59;27170:18;;11404:68:2;26841:353:11;11404:68:2;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;7473:818::-;-1:-1:-1;;;;;7599:18:2;;7591:68;;;;-1:-1:-1;;;7591:68:2;;27401:2:11;7591:68:2;;;27383:21:11;27440:2;27420:18;;;27413:30;27479:34;27459:18;;;27452:62;27550:7;27530:18;;;27523:35;27575:19;;7591:68:2;27199:401:11;7591:68:2;-1:-1:-1;;;;;7677:16:2;;7669:64;;;;-1:-1:-1;;;7669:64:2;;27807:2:11;7669:64:2;;;27789:21:11;27846:2;27826:18;;;27819:30;27885:34;27865:18;;;27858:62;27956:5;27936:18;;;27929:33;27979:19;;7669:64:2;27605:399:11;7669:64:2;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;-1:-1:-1;;;;;7815:15:2;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:2;;28211:2:11;7840:72:2;;;28193:21:11;28250:2;28230:18;;;28223:30;28289:34;28269:18;;;28262:62;28360:8;28340:18;;;28333:36;28386:19;;7840:72:2;28009:402:11;7840:72:2;-1:-1:-1;;;;;7946:15:2;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;816:25:11;;;8161:13:2;;8210:26;;789:18:11;8210:26:2;;;;;;;8247:37;763:205:6;2336:287:1;1759:1;2468:7;;:19;2460:63;;;;-1:-1:-1;;;2460:63:1;;28618:2:11;2460:63:1;;;28600:21:11;28657:2;28637:18;;;28630:30;28696:33;28676:18;;;28669:61;28747:18;;2460:63:1;28416:355:11;2460:63:1;1759:1;2598:7;:18;2336:287::o;10569:247:10:-;10684:29;10707:5;10684:22;:29::i;:::-;10790:19;;-1:-1:-1;;;;;10765:15:10;;;;;;;:8;:15;;;;;:44;10569:247::o;763:205:6:-;902:58;;-1:-1:-1;;;;;28968:55:11;;902:58:6;;;28950:74:11;29040:18;;;29033:34;;;875:86:6;;895:5;;925:23;;28923:18:11;;902:58:6;28776:297:11;875:86:6;763:205;;;:::o;9844:149:10:-;9912:4;9975:11;;9949:23;9966:5;9949:16;:23::i;:::-;9935:11;;:37;;;;:::i;:::-;:51;;;;:::i;9422:659:2:-;-1:-1:-1;;;;;9505:21:2;;9497:67;;;;-1:-1:-1;;;9497:67:2;;29280:2:11;9497:67:2;;;29262:21:11;29319:2;29299:18;;;29292:30;29358:34;29338:18;;;29331:62;29429:3;29409:18;;;29402:31;29450:19;;9497:67:2;29078:397:11;9497:67:2;9575:49;9596:7;9613:1;9617:6;9575:20;:49::i;:::-;-1:-1:-1;;;;;9660:18:2;;9635:22;9660:18;;;;;;;;;;;9696:24;;;;9688:71;;;;-1:-1:-1;;;9688:71:2;;29682:2:11;9688:71:2;;;29664:21:11;29721:2;29701:18;;;29694:30;29760:34;29740:18;;;29733:62;29831:4;29811:18;;;29804:32;29853:19;;9688:71:2;29480:398:11;9688:71:2;-1:-1:-1;;;;;9793:18:2;;:9;:18;;;;;;;;;;;9814:23;;;9793:44;;9930:12;:22;;;;;;;9978:37;816:25:11;;;9793:9:2;;:18;9978:37;;789:18:11;9978:37:2;;;;;;;763:205:6;;;:::o;9422:577:9:-;9480:4;9508:7;9504:1;:11;9496:77;;;;-1:-1:-1;;;9496:77:9;;30085:2:11;9496:77:9;;;30067:21:11;30124:2;30104:18;;;30097:30;30163:34;30143:18;;;30136:62;30234:23;30214:18;;;30207:51;30275:19;;9496:77:9;29883:417:11;9496:77:9;9595:5;9591:1;:9;9583:73;;;;-1:-1:-1;;;9583:73:9;;20825:2:11;9583:73:9;;;20807:21:11;20864:2;20844:18;;;20837:30;20903:34;20883:18;;;20876:62;20974:21;20954:18;;;20947:49;21013:19;;9583:73:9;20623:415:11;9583:73:9;719:10:8;9666:17:9;9686:20;;;:6;:20;;;;;;;;9733:13;;;9779:83;;;;;;;;;;;;;;;;;;;;;;9824:15;9779:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9756:20;;;:9;:20;;;;;;:106;;;;;;;;;;;-1:-1:-1;;9756:106:9;;;-1:-1:-1;;;;;9756:106:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9872:28;;9686:20;;9733:13;9779:83;;9686:20;;9666:17;9872:28;;9779:83;;9872:28;:::i;:::-;;;;-1:-1:-1;;9910:15:9;;;;:31;;;;;;;-1:-1:-1;9910:31:9;;;;;;;;;;;;9951:13;:15;;;;;;:::i;:::-;;;;-1:-1:-1;9983:9:9;;9422:577;-1:-1:-1;;;;;9422:577:9:o;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;8409:380:9:-;8528:9;8513:11;:24;;8505:111;;;;-1:-1:-1;;;8505:111:9;;30507:2:11;8505:111:9;;;30489:21:11;30546:2;30526:18;;;30519:30;30585:34;30565:18;;;30558:62;30656:34;30636:18;;;30629:62;30728:12;30707:19;;;30700:41;30758:19;;8505:111:9;30305:478:11;8505:111:9;8648:6;8634:11;:20;8626:75;;;;-1:-1:-1;;;8626:75:9;;30990:2:11;8626:75:9;;;30972:21:11;31029:2;31009:18;;;31002:30;31068:34;31048:18;;;31041:62;31139:12;31119:18;;;31112:40;31169:19;;8626:75:9;30788:406:11;8626:75:9;8731:6;8719:9;:18;8711:71;;;;-1:-1:-1;;;8711:71:9;;31401:2:11;8711:71:9;;;31383:21:11;31440:2;31420:18;;;31413:30;31479:34;31459:18;;;31452:62;31550:10;31530:18;;;31523:38;31578:19;;8711:71:9;31199:404:11;10355:118:10;10410:4;10449:17;;10433:13;3329:12:2;;;3242:106;10433:13:10;:33;;;;:::i;10119:434:9:-;10170:4;10212:21;;;:9;:21;;;;;10251:14;;;;-1:-1:-1;;;;;10251:14:9;719:10:8;10251:30:9;10243:106;;;;-1:-1:-1;;;10243:106:9;;31810:2:11;10243:106:9;;;31792:21:11;31849:2;31829:18;;;31822:30;31888:34;31868:18;;;31861:62;31959:33;31939:18;;;31932:61;32010:19;;10243:106:9;31608:427:11;10243:106:9;10380:15;10359:18;;;:36;719:10:8;10405:17:9;10425:20;;;:6;:20;;;;;10476:14;;;;10455:35;;10425:20;;10476:14;;10425:20;;10405:17;10455:35;;10476:14;;10455:35;:::i;:::-;;;;-1:-1:-1;;10500:13:9;:15;;;:13;:15;;;:::i;:::-;;;;-1:-1:-1;;;10532:14:9;;;;10119:434;-1:-1:-1;;10119:434:9:o;8567:535:2:-;-1:-1:-1;;;;;8650:21:2;;8642:65;;;;-1:-1:-1;;;8642:65:2;;32242:2:11;8642:65:2;;;32224:21:11;32281:2;32261:18;;;32254:30;32320:33;32300:18;;;32293:61;32371:18;;8642:65:2;32040:355:11;8642:65:2;8718:49;8747:1;8751:7;8760:6;8718:20;:49::i;:::-;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8946:18:2;;:9;:18;;;;;;;;;;;:28;;;;;;8999:37;816:25:11;;;8999:37:2;;789:18:11;8999:37:2;;;;;;;2471:572:9;;:::o;11476:220:10:-;-1:-1:-1;;;;;3506:18:2;;11544:4:10;3506:18:2;;;;;;;;;;;;11641:8:10;:15;;;;;:22;11619:19;;532:23;;11619:44;;;:::i;:::-;11608:56;;:7;:56;:::i;:::-;:81;;;;:::i;:::-;11601:88;11476:220;-1:-1:-1;;;11476:220:10:o;3747:706:6:-;4166:23;4192:69;4220:4;4192:69;;;;;;;;;;;;;;;;;4200:5;-1:-1:-1;;;;;4192:27:6;;;:69;;;;;:::i;:::-;4275:17;;4166:95;;-1:-1:-1;4275:21:6;4271:176;;4370:10;4359:30;;;;;;;;;;;;:::i;:::-;4351:85;;;;-1:-1:-1;;;4351:85:6;;32884:2:11;4351:85:6;;;32866:21:11;32923:2;32903:18;;;32896:30;32962:34;32942:18;;;32935:62;33033:12;33013:18;;;33006:40;33063:19;;4351:85:6;32682:406:11;8864:884:10;9063:7;9059:1;:11;9051:78;;;;-1:-1:-1;;;9051:78:10;;33295:2:11;9051:78:10;;;33277:21:11;33334:2;33314:18;;;33307:30;33373:34;33353:18;;;33346:62;33444:24;33424:18;;;33417:52;33486:19;;9051:78:10;33093:418:11;9051:78:10;-1:-1:-1;;;;;9186:19:10;;;;:97;;-1:-1:-1;;;;;;9261:22:10;;9278:4;9261:22;9186:97;:156;;;-1:-1:-1;;;;;;9325:17:10;;;9186:156;:232;;;-1:-1:-1;;;;;;9385:20:10;;9400:4;9385:20;:32;;;;-1:-1:-1;9409:8:10;;;;9385:32;9139:398;;;;-1:-1:-1;;;9139:398:10;;33718:2:11;9139:398:10;;;33700:21:11;33757:2;33737:18;;;33730:30;33796:34;33776:18;;;33769:62;33867:34;33847:18;;;33840:62;33939:31;33918:19;;;33911:60;33988:19;;9139:398:10;33516:497:11;9139:398:10;-1:-1:-1;;;;;9551:19:10;;;;;;:45;;-1:-1:-1;;;;;;9574:22:10;;9591:4;9574:22;;9551:45;9547:96;;;9612:20;9626:5;9612:13;:20::i;:::-;-1:-1:-1;;;;;9656:17:10;;;;;;:41;;-1:-1:-1;;;;;;9677:20:10;;9692:4;9677:20;;9656:41;9652:90;;;9713:18;9727:3;9713:13;:18::i;10986:224::-;11051:21;11075:28;11097:5;11075:21;:28::i;:::-;11051:52;-1:-1:-1;11117:20:10;;11113:91;;-1:-1:-1;;;;;11153:15:10;;;;;;:8;:15;;;;;:20;;:40;;11177:16;;11153:15;:40;;11177:16;;11153:40;:::i;:::-;;;;-1:-1:-1;;11041:169:10;10986:224;:::o;10100:139::-;-1:-1:-1;;;;;8964:13:9;;10163:4:10;8964:13:9;;;:6;:13;;;;;;;;:26;3506:18:2;;;;;;;10186:16:10;3406:125:2;3873:223:7;4006:12;4037:52;4059:6;4067:4;4073:1;4076:12;4037:21;:52::i;:::-;4030:59;3873:223;-1:-1:-1;;;;3873:223:7:o;4960:446::-;5125:12;5182:5;5157:21;:30;;5149:81;;;;-1:-1:-1;;;5149:81:7;;34220:2:11;5149:81:7;;;34202:21:11;34259:2;34239:18;;;34232:30;34298:34;34278:18;;;34271:62;34369:8;34349:18;;;34342:36;34395:19;;5149:81:7;34018:402:11;5149:81:7;5241:12;5255:23;5282:6;-1:-1:-1;;;;;5282:11:7;5301:5;5308:4;5282:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5240:73;;;;5330:69;5357:6;5365:7;5374:10;5386:12;5330:26;:69::i;:::-;5323:76;4960:446;-1:-1:-1;;;;;;;4960:446:7:o;7466:628::-;7646:12;7674:7;7670:418;;;7701:10;:17;7722:1;7701:22;7697:286;;-1:-1:-1;;;;;1465:19:7;;;7908:60;;;;-1:-1:-1;;;7908:60:7;;34919:2:11;7908:60:7;;;34901:21:11;34958:2;34938:18;;;34931:30;34997:31;34977:18;;;34970:59;35046:18;;7908:60:7;34717:353:11;7908:60:7;-1:-1:-1;8003:10:7;7996:17;;7670:418;8044:33;8052:10;8064:12;8775:17;;:21;8771:379;;9003:10;8997:17;9059:15;9046:10;9042:2;9038:19;9031:44;8771:379;9126:12;9119:20;;-1:-1:-1;;;9119:20:7;;;;;;;;:::i;14:250:11:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:11;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:11;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:11:o;852:196::-;920:20;;-1:-1:-1;;;;;969:54:11;;959:65;;949:93;;1038:1;1035;1028:12;949:93;852:196;;;:::o;1053:254::-;1121:6;1129;1182:2;1170:9;1161:7;1157:23;1153:32;1150:52;;;1198:1;1195;1188:12;1150:52;1221:29;1240:9;1221:29;:::i;:::-;1211:39;1297:2;1282:18;;;;1269:32;;-1:-1:-1;;;1053:254:11:o;1504:180::-;1563:6;1616:2;1604:9;1595:7;1591:23;1587:32;1584:52;;;1632:1;1629;1622:12;1584:52;-1:-1:-1;1655:23:11;;1504:180;-1:-1:-1;1504:180:11:o;1689:328::-;1766:6;1774;1782;1835:2;1823:9;1814:7;1810:23;1806:32;1803:52;;;1851:1;1848;1841:12;1803:52;1874:29;1893:9;1874:29;:::i;:::-;1864:39;;1922:38;1956:2;1945:9;1941:18;1922:38;:::i;:::-;1912:48;;2007:2;1996:9;1992:18;1979:32;1969:42;;1689:328;;;;;:::o;2456:186::-;2515:6;2568:2;2556:9;2547:7;2543:23;2539:32;2536:52;;;2584:1;2581;2574:12;2536:52;2607:29;2626:9;2607:29;:::i;2647:248::-;2715:6;2723;2776:2;2764:9;2755:7;2751:23;2747:32;2744:52;;;2792:1;2789;2782:12;2744:52;-1:-1:-1;;2815:23:11;;;2885:2;2870:18;;;2857:32;;-1:-1:-1;2647:248:11:o;2900:322::-;2977:6;2985;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3085:29;3104:9;3085:29;:::i;:::-;3075:39;3161:2;3146:18;;3133:32;;-1:-1:-1;3212:2:11;3197:18;;;3184:32;;2900:322;-1:-1:-1;;;2900:322:11:o;3227:1373::-;3448:2;3500:21;;;3570:13;;3473:18;;;3592:22;;;3419:4;;3448:2;3633;;3651:18;;;;3692:15;;;3419:4;3735:839;3749:6;3746:1;3743:13;3735:839;;;3808:13;;3846:9;;3834:22;;3895:11;;;3889:18;-1:-1:-1;;;;;4006:21:11;;;3992:12;;;3985:43;4072:11;;;4066:18;4062:27;4048:12;;;4041:49;4113:4;4157:11;;;4151:18;4137:12;;;4130:40;4193:4;4237:11;;;4231:18;4217:12;;;4210:40;4273:4;4317:11;;;4311:18;4297:12;;;4290:40;4353:4;4397:11;;;4391:18;4377:12;;;4370:40;4433:4;4477:11;;;4471:18;4457:12;;;4450:40;4519:6;4510:16;;;;4549:15;;;;3771:1;3764:9;3735:839;;;-1:-1:-1;4591:3:11;;3227:1373;-1:-1:-1;;;;;;;3227:1373:11:o;4836:260::-;4904:6;4912;4965:2;4953:9;4944:7;4940:23;4936:32;4933:52;;;4981:1;4978;4971:12;4933:52;5004:29;5023:9;5004:29;:::i;:::-;4994:39;;5052:38;5086:2;5075:9;5071:18;5052:38;:::i;:::-;5042:48;;4836:260;;;;;:::o;7107:437::-;7186:1;7182:12;;;;7229;;;7250:61;;7304:4;7296:6;7292:17;7282:27;;7250:61;7357:2;7349:6;7346:14;7326:18;7323:38;7320:218;;-1:-1:-1;;;7391:1:11;7384:88;7495:4;7492:1;7485:15;7523:4;7520:1;7513:15;7320:218;;7107:437;;;:::o;9594:184::-;-1:-1:-1;;;9643:1:11;9636:88;9743:4;9740:1;9733:15;9767:4;9764:1;9757:15;9783:125;9848:9;;;9869:10;;;9866:36;;;9882:18;;:::i;12906:128::-;12973:9;;;12994:11;;;12991:37;;;13008:18;;:::i;13039:184::-;-1:-1:-1;;;13088:1:11;13081:88;13188:4;13185:1;13178:15;13212:4;13209:1;13202:15;13228:184;-1:-1:-1;;;13277:1:11;13270:88;13377:4;13374:1;13367:15;13401:4;13398:1;13391:15;13417:135;13456:3;13477:17;;;13474:43;;13497:18;;:::i;:::-;-1:-1:-1;13544:1:11;13533:13;;13417:135::o;16323:184::-;16393:6;16446:2;16434:9;16425:7;16421:23;16417:32;16414:52;;;16462:1;16459;16452:12;16414:52;-1:-1:-1;16485:16:11;;16323:184;-1:-1:-1;16323:184:11:o;17666:168::-;17739:9;;;17770;;17787:15;;;17781:22;;17767:37;17757:71;;17808:18;;:::i;17839:274::-;17879:1;17905;17895:189;;-1:-1:-1;;;17937:1:11;17930:88;18041:4;18038:1;18031:15;18069:4;18066:1;18059:15;17895:189;-1:-1:-1;18098:9:11;;17839:274::o;32400:277::-;32467:6;32520:2;32508:9;32499:7;32495:23;32491:32;32488:52;;;32536:1;32533;32526:12;32488:52;32568:9;32562:16;32621:5;32614:13;32607:21;32600:5;32597:32;32587:60;;32643:1;32640;32633:12;34425:287;34554:3;34592:6;34586:13;34608:66;34667:6;34662:3;34655:4;34647:6;34643:17;34608:66;:::i;:::-;34690:16;;;;;34425:287;-1:-1:-1;;34425:287:11:o
Swarm Source
ipfs://62fa7b6652b7c19de3536a19675dc08119443a4ce4c3388455622b59604ccfee
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.