Source Code
Latest 16 from a total of 16 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Release | 15001186 | 1361 days ago | IN | 0 ETH | 0.00098899 | ||||
| Release | 14519426 | 1439 days ago | IN | 0 ETH | 0.00471986 | ||||
| Release | 14443115 | 1451 days ago | IN | 0 ETH | 0.00408642 | ||||
| Release | 14176815 | 1492 days ago | IN | 0 ETH | 0.00439399 | ||||
| Release | 13626868 | 1578 days ago | IN | 0 ETH | 0.00787451 | ||||
| Release | 13365319 | 1619 days ago | IN | 0 ETH | 0.00690741 | ||||
| Release | 13094880 | 1661 days ago | IN | 0 ETH | 0.00715008 | ||||
| Release | 12830509 | 1702 days ago | IN | 0 ETH | 0.00330691 | ||||
| Release | 12643988 | 1731 days ago | IN | 0 ETH | 0.00098313 | ||||
| Release | 12451612 | 1761 days ago | IN | 0 ETH | 0.00634569 | ||||
| Release | 12056155 | 1822 days ago | IN | 0 ETH | 0.0128553 | ||||
| Release | 11866053 | 1851 days ago | IN | 0 ETH | 0.00859802 | ||||
| Release | 11742831 | 1870 days ago | IN | 0 ETH | 0.00472684 | ||||
| Transfer Ownersh... | 9971707 | 2143 days ago | IN | 0 ETH | 0.00070205 | ||||
| Claim Beneficiar... | 8290847 | 2412 days ago | IN | 0 ETH | 0.0003778 | ||||
| Transfer Benefic... | 8290689 | 2412 days ago | IN | 0 ETH | 0.0101987 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
|||
|---|---|---|---|---|---|---|---|---|
| Transfer | 15001186 | 1361 days ago | 0 ETH | |||||
| Balance Of | 15001186 | 1361 days ago | 0 ETH | |||||
| Transfer | 14519426 | 1439 days ago | 0 ETH | |||||
| Balance Of | 14519426 | 1439 days ago | 0 ETH | |||||
| Transfer | 14443115 | 1451 days ago | 0 ETH | |||||
| Balance Of | 14443115 | 1451 days ago | 0 ETH | |||||
| Transfer | 14176815 | 1492 days ago | 0 ETH | |||||
| Balance Of | 14176815 | 1492 days ago | 0 ETH | |||||
| Transfer | 13626868 | 1578 days ago | 0 ETH | |||||
| Balance Of | 13626868 | 1578 days ago | 0 ETH | |||||
| Transfer | 13365319 | 1619 days ago | 0 ETH | |||||
| Balance Of | 13365319 | 1619 days ago | 0 ETH | |||||
| Transfer | 13094880 | 1661 days ago | 0 ETH | |||||
| Balance Of | 13094880 | 1661 days ago | 0 ETH | |||||
| Transfer | 12830509 | 1702 days ago | 0 ETH | |||||
| Balance Of | 12830509 | 1702 days ago | 0 ETH | |||||
| Transfer | 12643988 | 1731 days ago | 0 ETH | |||||
| Balance Of | 12643988 | 1731 days ago | 0 ETH | |||||
| Transfer | 12451612 | 1761 days ago | 0 ETH | |||||
| Balance Of | 12451612 | 1761 days ago | 0 ETH | |||||
| Transfer | 12056155 | 1822 days ago | 0 ETH | |||||
| Balance Of | 12056155 | 1822 days ago | 0 ETH | |||||
| Transfer | 11866053 | 1851 days ago | 0 ETH | |||||
| Balance Of | 11866053 | 1851 days ago | 0 ETH | |||||
| Transfer | 11742831 | 1870 days ago | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x1d44b41A...15a59f248 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AkropolisTokenVesting
Compiler Version
v0.5.9+commit.e560f70d
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-08-05
*/
pragma solidity ^0.5.9;
// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see `ERC20Detailed`.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a `Transfer` event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through `transferFrom`. This is
* zero by default.
*
* This value changes when `approve` or `transferFrom` are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* > Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an `Approval` event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a `Transfer` event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to `approve`. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: openzeppelin-solidity/contracts/math/SafeMath.sol
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, "SafeMath: division by zero");
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "SafeMath: modulo by zero");
return a % b;
}
}
// File: openzeppelin-solidity/contracts/utils/Address.sol
/**
* @dev Collection of functions related to the address type,
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* This test is non-exhaustive, and there may be false-negatives: during the
* execution of a contract's constructor, its address will be reported as
* not containing a contract.
*
* > It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*/
function isContract(address account) internal view returns (bool) {
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/SafeERC20.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 ERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
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));
}
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'
// solhint-disable-next-line max-line-length
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).add(value);
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value);
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @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.
// A Solidity high level call has three parts:
// 1. The target address is checked to verify it contains contract code
// 2. The call itself is made, and success asserted
// 3. The return value is decoded, which in turn checks the size of the returned data.
// solhint-disable-next-line max-line-length
require(address(token).isContract(), "SafeERC20: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = address(token).call(data);
require(success, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: openzeppelin-solidity/contracts/ownership/Ownable.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.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be aplied to your functions to restrict their use to
* the owner.
*/
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
_owner = msg.sender;
emit OwnershipTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return msg.sender == _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 onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = 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 onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: contracts/openzeppelin/TokenVesting.sol
/**
* @title TokenVesting
* @dev A token holder contract that can release its token balance gradually like a
* typical vesting scheme, with a cliff and vesting period. Optionally revocable by the
* owner.
*/
contract TokenVesting is Ownable {
// The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is
// therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore,
// it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a
// cliff period of a year and a duration of four years, are safe to use.
// solhint-disable not-rely-on-time
using SafeMath for uint256;
using SafeERC20 for IERC20;
event TokensReleased(address token, uint256 amount);
event TokenVestingRevoked(address token);
// beneficiary of tokens after they are released
address private _beneficiary;
// Durations and timestamps are expressed in UNIX time, the same units as block.timestamp.
uint256 private _cliff;
uint256 private _start;
uint256 private _duration;
bool private _revocable;
mapping (address => uint256) private _released;
mapping (address => bool) private _revoked;
/**
* @dev Creates a vesting contract that vests its balance of any ERC20 token to the
* beneficiary, gradually in a linear fashion until start + duration. By then all
* of the balance will have vested.
* @param beneficiary address of the beneficiary to whom vested tokens are transferred
* @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest
* @param start the time (as Unix time) at which point vesting starts
* @param duration duration in seconds of the period in which the tokens will vest
* @param revocable whether the vesting is revocable or not
*/
constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public {
require(beneficiary != address(0), "TokenVesting: beneficiary is the zero address");
// solhint-disable-next-line max-line-length
require(cliffDuration <= duration, "TokenVesting: cliff is longer than duration");
require(duration > 0, "TokenVesting: duration is 0");
// solhint-disable-next-line max-line-length
require(start.add(duration) > block.timestamp, "TokenVesting: final time is before current time");
_beneficiary = beneficiary;
_revocable = revocable;
_duration = duration;
_cliff = start.add(cliffDuration);
_start = start;
}
/**
* @return the beneficiary of the tokens.
*/
function beneficiary() public view returns (address) {
return _beneficiary;
}
/**
* @return the cliff time of the token vesting.
*/
function cliff() public view returns (uint256) {
return _cliff;
}
/**
* @return the start time of the token vesting.
*/
function start() public view returns (uint256) {
return _start;
}
/**
* @return the duration of the token vesting.
*/
function duration() public view returns (uint256) {
return _duration;
}
/**
* @return true if the vesting is revocable.
*/
function revocable() public view returns (bool) {
return _revocable;
}
/**
* @return the amount of the token released.
*/
function released(address token) public view returns (uint256) {
return _released[token];
}
/**
* @return true if the token is revoked.
*/
function revoked(address token) public view returns (bool) {
return _revoked[token];
}
/**
* @notice Transfers vested tokens to beneficiary.
* @param token ERC20 token which is being vested
*/
function release(IERC20 token) public {
uint256 unreleased = _releasableAmount(token);
require(unreleased > 0, "TokenVesting: no tokens are due");
_released[address(token)] = _released[address(token)].add(unreleased);
token.safeTransfer(_beneficiary, unreleased);
emit TokensReleased(address(token), unreleased);
}
/**
* @notice Allows the owner to revoke the vesting. Tokens already vested
* remain in the contract, the rest are returned to the owner.
* @param token ERC20 token which is being vested
*/
function revoke(IERC20 token) public onlyOwner {
require(_revocable, "TokenVesting: cannot revoke");
require(!_revoked[address(token)], "TokenVesting: token already revoked");
uint256 balance = token.balanceOf(address(this));
uint256 unreleased = _releasableAmount(token);
uint256 refund = balance.sub(unreleased);
_revoked[address(token)] = true;
token.safeTransfer(owner(), refund);
emit TokenVestingRevoked(address(token));
}
/**
* @dev Calculates the amount that has already vested but hasn't been released yet.
* @param token ERC20 token which is being vested
*/
function _releasableAmount(IERC20 token) private view returns (uint256) {
return _vestedAmount(token).sub(_released[address(token)]);
}
/**
* @dev Calculates the amount that has already vested.
* @param token ERC20 token which is being vested
*/
function _vestedAmount(IERC20 token) private view returns (uint256) {
uint256 currentBalance = token.balanceOf(address(this));
uint256 totalBalance = currentBalance.add(_released[address(token)]);
if (block.timestamp < _cliff) {
return 0;
} else if (block.timestamp >= _start.add(_duration) || _revoked[address(token)]) {
return totalBalance;
} else {
return totalBalance.mul(block.timestamp.sub(_start)).div(_duration);
}
}
/**
* @return change the beneficiary of tokens
*/
function _changeBeneficiary(address _newBeneficiary) internal {
_beneficiary = _newBeneficiary;
}
}
// File: contracts/helpers/BeneficiaryOperations.sol
/*
License: MIT
Copyright Bitclave, 2018
It's modified contract BeneficiaryOperations from https://github.com/bitclave/BeneficiaryOperations
*/
contract BeneficiaryOperations {
using SafeMath for uint256;
using SafeMath for uint8;
// VARIABLES
uint256 public beneficiariesGeneration;
uint256 public howManyBeneficiariesDecide;
address[] public beneficiaries;
bytes32[] public allOperations;
address internal insideCallSender;
uint256 internal insideCallCount;
// Reverse lookup tables for beneficiaries and allOperations
mapping(address => uint8) public beneficiariesIndices; // Starts from 1, size 255
mapping(bytes32 => uint) public allOperationsIndicies;
// beneficiaries voting mask per operations
mapping(bytes32 => uint256) public votesMaskByOperation;
mapping(bytes32 => uint256) public votesCountByOperation;
//operation -> beneficiaryIndex
mapping(bytes32 => uint8) internal operationsByBeneficiaryIndex;
mapping(uint8 => uint8) internal operationsCountByBeneficiaryIndex;
// EVENTS
event BeneficiaryshipTransferred(address[] previousbeneficiaries, uint howManyBeneficiariesDecide, address[] newBeneficiaries, uint newHowManybeneficiarysDecide);
event OperationCreated(bytes32 operation, uint howMany, uint beneficiariesCount, address proposer);
event OperationUpvoted(bytes32 operation, uint votes, uint howMany, uint beneficiariesCount, address upvoter);
event OperationPerformed(bytes32 operation, uint howMany, uint beneficiariesCount, address performer);
event OperationDownvoted(bytes32 operation, uint votes, uint beneficiariesCount, address downvoter);
event OperationCancelled(bytes32 operation, address lastCanceller);
// ACCESSORS
function isExistBeneficiary(address wallet) public view returns(bool) {
return beneficiariesIndices[wallet] > 0;
}
function beneficiariesCount() public view returns(uint) {
return beneficiaries.length;
}
function allOperationsCount() public view returns(uint) {
return allOperations.length;
}
/*
Internal functions
*/
function _operationLimitByBeneficiaryIndex(uint8 beneficiaryIndex) internal view returns(bool) {
return (operationsCountByBeneficiaryIndex[beneficiaryIndex] <= 3);
}
function _cancelAllPending() internal {
for (uint i = 0; i < allOperations.length; i++) {
delete(allOperationsIndicies[allOperations[i]]);
delete(votesMaskByOperation[allOperations[i]]);
delete(votesCountByOperation[allOperations[i]]);
//delete operation->beneficiaryIndex
delete(operationsByBeneficiaryIndex[allOperations[i]]);
}
allOperations.length = 0;
//delete operations count for beneficiary
for (uint8 j = 0; j < beneficiaries.length; j++) {
operationsCountByBeneficiaryIndex[j] = 0;
}
}
// MODIFIERS
/**
* @dev Allows to perform method by any of the beneficiaries
*/
modifier onlyAnyBeneficiary {
if (checkHowManyBeneficiaries(1)) {
bool update = (insideCallSender == address(0));
if (update) {
insideCallSender = msg.sender;
insideCallCount = 1;
}
_;
if (update) {
insideCallSender = address(0);
insideCallCount = 0;
}
}
}
/**
* @dev Allows to perform method only after many beneficiaries call it with the same arguments
*/
modifier onlyManyBeneficiaries {
if (checkHowManyBeneficiaries(howManyBeneficiariesDecide)) {
bool update = (insideCallSender == address(0));
if (update) {
insideCallSender = msg.sender;
insideCallCount = howManyBeneficiariesDecide;
}
_;
if (update) {
insideCallSender = address(0);
insideCallCount = 0;
}
}
}
/**
* @dev Allows to perform method only after all beneficiaries call it with the same arguments
*/
modifier onlyAllBeneficiaries {
if (checkHowManyBeneficiaries(beneficiaries.length)) {
bool update = (insideCallSender == address(0));
if (update) {
insideCallSender = msg.sender;
insideCallCount = beneficiaries.length;
}
_;
if (update) {
insideCallSender = address(0);
insideCallCount = 0;
}
}
}
/**
* @dev Allows to perform method only after some beneficiaries call it with the same arguments
*/
modifier onlySomeBeneficiaries(uint howMany) {
require(howMany > 0, "onlySomeBeneficiaries: howMany argument is zero");
require(howMany <= beneficiaries.length, "onlySomeBeneficiaries: howMany argument exceeds the number of Beneficiaries");
if (checkHowManyBeneficiaries(howMany)) {
bool update = (insideCallSender == address(0));
if (update) {
insideCallSender = msg.sender;
insideCallCount = howMany;
}
_;
if (update) {
insideCallSender = address(0);
insideCallCount = 0;
}
}
}
// CONSTRUCTOR
constructor() public {
beneficiaries.push(msg.sender);
beneficiariesIndices[msg.sender] = 1;
howManyBeneficiariesDecide = 1;
}
// INTERNAL METHODS
/**
* @dev onlyManybeneficiaries modifier helper
*/
function checkHowManyBeneficiaries(uint howMany) internal returns(bool) {
if (insideCallSender == msg.sender) {
require(howMany <= insideCallCount, "checkHowManyBeneficiaries: nested beneficiaries modifier check require more beneficiarys");
return true;
}
require((isExistBeneficiary(msg.sender) && (beneficiariesIndices[msg.sender] <= beneficiaries.length)), "checkHowManyBeneficiaries: msg.sender is not an beneficiary");
uint beneficiaryIndex = beneficiariesIndices[msg.sender].sub(1);
bytes32 operation = keccak256(abi.encodePacked(msg.data, beneficiariesGeneration));
require((votesMaskByOperation[operation] & (2 ** beneficiaryIndex)) == 0, "checkHowManyBeneficiaries: beneficiary already voted for the operation");
//check limit for operation
require(_operationLimitByBeneficiaryIndex(uint8(beneficiaryIndex)), "checkHowManyBeneficiaries: operation limit is reached for this beneficiary");
votesMaskByOperation[operation] |= (2 ** beneficiaryIndex);
uint operationVotesCount = votesCountByOperation[operation].add(1);
votesCountByOperation[operation] = operationVotesCount;
if (operationVotesCount == 1) {
allOperationsIndicies[operation] = allOperations.length;
operationsByBeneficiaryIndex[operation] = uint8(beneficiaryIndex);
operationsCountByBeneficiaryIndex[uint8(beneficiaryIndex)] = uint8(operationsCountByBeneficiaryIndex[uint8(beneficiaryIndex)].add(1));
allOperations.push(operation);
emit OperationCreated(operation, howMany, beneficiaries.length, msg.sender);
}
emit OperationUpvoted(operation, operationVotesCount, howMany, beneficiaries.length, msg.sender);
// If enough beneficiaries confirmed the same operation
if (votesCountByOperation[operation] == howMany) {
deleteOperation(operation);
emit OperationPerformed(operation, howMany, beneficiaries.length, msg.sender);
return true;
}
return false;
}
/**
* @dev Used to delete cancelled or performed operation
* @param operation defines which operation to delete
*/
function deleteOperation(bytes32 operation) internal {
uint index = allOperationsIndicies[operation];
if (index < allOperations.length - 1) { // Not last
allOperations[index] = allOperations[allOperations.length.sub(1)];
allOperationsIndicies[allOperations[index]] = index;
}
allOperations.length = allOperations.length.sub(1);
uint8 beneficiaryIndex = uint8(operationsByBeneficiaryIndex[operation]);
operationsCountByBeneficiaryIndex[beneficiaryIndex] = uint8(operationsCountByBeneficiaryIndex[beneficiaryIndex].sub(1));
delete votesMaskByOperation[operation];
delete votesCountByOperation[operation];
delete allOperationsIndicies[operation];
delete operationsByBeneficiaryIndex[operation];
}
// PUBLIC METHODS
/**
* @dev Allows beneficiaries to change their mind by cancelling votesMaskByOperation operations
* @param operation defines which operation to delete
*/
function cancelPending(bytes32 operation) public onlyAnyBeneficiary {
require((isExistBeneficiary(msg.sender) && (beneficiariesIndices[msg.sender] <= beneficiaries.length)), "checkHowManyBeneficiaries: msg.sender is not an beneficiary");
uint beneficiaryIndex = beneficiariesIndices[msg.sender].sub(1);
require((votesMaskByOperation[operation] & (2 ** beneficiaryIndex)) != 0, "cancelPending: operation not found for this user");
votesMaskByOperation[operation] &= ~(2 ** beneficiaryIndex);
uint operationVotesCount = votesCountByOperation[operation].sub(1);
votesCountByOperation[operation] = operationVotesCount;
emit OperationDownvoted(operation, operationVotesCount, beneficiaries.length, msg.sender);
if (operationVotesCount == 0) {
deleteOperation(operation);
emit OperationCancelled(operation, msg.sender);
}
}
/**
* @dev Allows beneficiaries to change their mind by cancelling all operations
*/
function cancelAllPending() public onlyManyBeneficiaries {
_cancelAllPending();
}
/**Переписать*/
/**
* @dev Allows beneficiaries to change beneficiariesship
* @param newBeneficiaries defines array of addresses of new beneficiaries
*/
function transferBeneficiaryShip(address[] memory newBeneficiaries) public {
transferBeneficiaryShipWithHowMany(newBeneficiaries, newBeneficiaries.length);
}
/**
* @dev Allows beneficiaries to change beneficiaryShip
* @param newBeneficiaries defines array of addresses of new beneficiaries
* @param newHowManyBeneficiariesDecide defines how many beneficiaries can decide
*/
function transferBeneficiaryShipWithHowMany(address[] memory newBeneficiaries, uint256 newHowManyBeneficiariesDecide) public onlyManyBeneficiaries {
require(newBeneficiaries.length > 0, "transferBeneficiaryShipWithHowMany: beneficiaries array is empty");
require(newBeneficiaries.length < 256, "transferBeneficiaryshipWithHowMany: beneficiaries count is greater then 255");
require(newHowManyBeneficiariesDecide > 0, "transferBeneficiaryshipWithHowMany: newHowManybeneficiarysDecide equal to 0");
require(newHowManyBeneficiariesDecide <= newBeneficiaries.length, "transferBeneficiaryShipWithHowMany: newHowManybeneficiarysDecide exceeds the number of beneficiarys");
// Reset beneficiaries reverse lookup table
for (uint j = 0; j < beneficiaries.length; j++) {
delete beneficiariesIndices[beneficiaries[j]];
}
for (uint i = 0; i < newBeneficiaries.length; i++) {
require(newBeneficiaries[i] != address(0), "transferBeneficiaryShipWithHowMany: beneficiaries array contains zero");
require(beneficiariesIndices[newBeneficiaries[i]] == 0, "transferBeneficiaryShipWithHowMany: beneficiaries array contains duplicates");
beneficiariesIndices[newBeneficiaries[i]] = uint8(i.add(1));
}
emit BeneficiaryshipTransferred(beneficiaries, howManyBeneficiariesDecide, newBeneficiaries, newHowManyBeneficiariesDecide);
beneficiaries = newBeneficiaries;
howManyBeneficiariesDecide = newHowManyBeneficiariesDecide;
_cancelAllPending();
beneficiariesGeneration++;
}
}
// File: contracts/logics/AkropolisTokenVesting.sol
//Beneficieries template
contract AkropolisTokenVesting is TokenVesting, BeneficiaryOperations {
IERC20 private token;
address private _pendingBeneficiary;
event LogBeneficiaryTransferProposed(address _beneficiary);
event LogBeneficiaryTransfered(address _beneficiary);
constructor (IERC20 _token, uint256 _start, uint256 _cliffDuration, uint256 _duration) public
TokenVesting(msg.sender, _start, _cliffDuration, _duration, false) {
token = _token;
}
/**
* @notice Transfers vested tokens to beneficiary.
*/
function release() public {
super.release(token);
}
/**
* @return the token being held.
*/
function tokenAddress() public view returns (IERC20) {
return token;
}
// MODIFIERS
/**
* @dev Allows to perform method by existing beneficiary
*/
modifier onlyExistingBeneficiary(address _beneficiary) {
require(isExistBeneficiary(_beneficiary), "address is not in beneficiary array");
_;
}
/**
* @dev Allows to perform method by pending beneficiary
*/
modifier onlyPendingBeneficiary {
require(msg.sender == _pendingBeneficiary, "Unpermitted operation.");
_;
}
function pendingBeneficiary() public view returns (address) {
return _pendingBeneficiary;
}
/**
* @dev Allows beneficiaries to change beneficiaryShip and set first beneficiary as default
* @param _newBeneficiaries defines array of addresses of new beneficiaries
*/
function transferBeneficiaryShip(address[] memory _newBeneficiaries) public {
super.transferBeneficiaryShip(_newBeneficiaries);
_setPendingBeneficiary(beneficiaries[0]);
}
/**
* @dev Allows beneficiaries to change beneficiaryShip and set first beneficiary as default
* @param _newBeneficiaries defines array of addresses of new beneficiaries
* @param _newHowManyBeneficiariesDecide defines how many beneficiaries can decide
*/
function transferBeneficiaryShipWithHowMany(address[] memory _newBeneficiaries, uint256 _newHowManyBeneficiariesDecide) public {
super.transferBeneficiaryShipWithHowMany(_newBeneficiaries, _newHowManyBeneficiariesDecide);
_setPendingBeneficiary(beneficiaries[0]);
}
/**
* @dev Allows beneficiaries to change beneficiary as default
* @param _newBeneficiary defines address of new beneficiary
*/
function changeBeneficiary(address _newBeneficiary) public onlyManyBeneficiaries {
_setPendingBeneficiary(_newBeneficiary);
}
/**
* @dev Claim Beneficiary
*/
function claimBeneficiary() public onlyPendingBeneficiary {
_changeBeneficiary(_pendingBeneficiary);
emit LogBeneficiaryTransfered(_pendingBeneficiary);
_pendingBeneficiary = address(0);
}
/*
* Internal Functions
*
*/
/**
* @dev Set pending Beneficiary address
* @param _newBeneficiary defines address of new beneficiary
*/
function _setPendingBeneficiary(address _newBeneficiary) internal onlyExistingBeneficiary(_newBeneficiary) {
_pendingBeneficiary = _newBeneficiary;
emit LogBeneficiaryTransferProposed(_newBeneficiary);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"duration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cliff","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newBeneficiaries","type":"address[]"}],"name":"transferBeneficiaryShip","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"allOperationsCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"cancelAllPending","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"beneficiariesGeneration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingBeneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"allOperations","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimBeneficiary","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"votesMaskByOperation","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"beneficiariesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"revoke","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newBeneficiaries","type":"address[]"},{"name":"_newHowManyBeneficiariesDecide","type":"uint256"}],"name":"transferBeneficiaryShipWithHowMany","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"revocable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"operation","type":"bytes32"}],"name":"cancelPending","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"beneficiariesIndices","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"howManyBeneficiariesDecide","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"votesCountByOperation","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"}],"name":"released","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"wallet","type":"address"}],"name":"isExistBeneficiary","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newBeneficiary","type":"address"}],"name":"changeBeneficiary","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"allOperationsIndicies","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"beneficiaries","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"}],"name":"revoked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_token","type":"address"},{"name":"_start","type":"uint256"},{"name":"_cliffDuration","type":"uint256"},{"name":"_duration","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"}],"name":"LogBeneficiaryTransferProposed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"}],"name":"LogBeneficiaryTransfered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"previousbeneficiaries","type":"address[]"},{"indexed":false,"name":"howManyBeneficiariesDecide","type":"uint256"},{"indexed":false,"name":"newBeneficiaries","type":"address[]"},{"indexed":false,"name":"newHowManybeneficiarysDecide","type":"uint256"}],"name":"BeneficiaryshipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"howMany","type":"uint256"},{"indexed":false,"name":"beneficiariesCount","type":"uint256"},{"indexed":false,"name":"proposer","type":"address"}],"name":"OperationCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"votes","type":"uint256"},{"indexed":false,"name":"howMany","type":"uint256"},{"indexed":false,"name":"beneficiariesCount","type":"uint256"},{"indexed":false,"name":"upvoter","type":"address"}],"name":"OperationUpvoted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"howMany","type":"uint256"},{"indexed":false,"name":"beneficiariesCount","type":"uint256"},{"indexed":false,"name":"performer","type":"address"}],"name":"OperationPerformed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"votes","type":"uint256"},{"indexed":false,"name":"beneficiariesCount","type":"uint256"},{"indexed":false,"name":"downvoter","type":"address"}],"name":"OperationDownvoted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"lastCanceller","type":"address"}],"name":"OperationCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokensReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"}],"name":"TokenVestingRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]Contract Creation Code
0x60806040523480156200001157600080fd5b506040516200418a3803806200418a833981810160405260808110156200003757600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050338383836000336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620001b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018062004132602d913960400191505060405180910390fd5b818311156200020b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806200415f602b913960400191505060405180910390fd5b6000821162000282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f546f6b656e56657374696e673a206475726174696f6e2069732030000000000081525060200191505060405180910390fd5b426200029d83866200049560201b62001d331790919060201c565b11620002f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018062004103602f913960400191505060405180910390fd5b84600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600560006101000a81548160ff021916908315150217905550816004819055506200037183856200049560201b62001d331790919060201c565b600281905550836003819055505050505050600a3390806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160098190555083601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050506200051e565b60008082840190508381101562000514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b613bd5806200052e6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806386d1a69f1161011a5780639852595c116100ad578063dc0706571161007c578063dc0706571461086e578063ea1a2644146108b2578063efeb5e58146108f4578063f2fde38b14610962578063fa01dc06146109a6576101fb565b80639852595c146107525780639d76ea58146107aa578063aa54822e146107f4578063be9a655514610850576101fb565b80638c0a964c116100e95780638c0a964c146106865780638da5cb5b146106a45780638f32d59b146106ee57806390a5308514610710576101fb565b806386d1a69f146105ce578063872a7810146105d8578063893372ca146105fa5780638a57ee5014610628576101fb565b8063427db380116101925780636e616a4c116101615780636e616a4c146104a0578063715018a6146104be57806374a8f103146104c85780638339df641461050c576101fb565b8063427db380146103c8578063431ab2331461041257806348d89b6b14610454578063568b59151461045e576101fb565b806322f2f89a116101ce57806322f2f89a1461033857806329866a671461035657806338af3eed146103605780633f8ac33e146103aa576101fb565b80630fb5a6b41461020057806313d033c01461021e578063191655871461023c5780632173f5bd14610280575b600080fd5b610208610a02565b6040518082815260200191505060405180910390f35b610226610a0c565b6040518082815260200191505060405180910390f35b61027e6004803603602081101561025257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a16565b005b6103366004803603602081101561029657600080fd5b81019080803590602001906401000000008111156102b357600080fd5b8201836020820111156102c557600080fd5b803590602001918460208302840111640100000000831117156102e757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610bea565b005b610340610c37565b6040518082815260200191505060405180910390f35b61035e610c44565b005b610368610d57565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103b2610d81565b6040518082815260200191505060405180910390f35b6103d0610d87565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61043e6004803603602081101561042857600080fd5b8101908080359060200190929190505050610db1565b6040518082815260200191505060405180910390f35b61045c610dd2565b005b61048a6004803603602081101561047457600080fd5b8101908080359060200190929190505050610f89565b6040518082815260200191505060405180910390f35b6104a8610fa1565b6040518082815260200191505060405180910390f35b6104c6610fae565b005b61050a600480360360208110156104de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110e7565b005b6105cc6004803603604081101561052257600080fd5b810190808035906020019064010000000081111561053f57600080fd5b82018360208201111561055157600080fd5b8035906020019184602083028401116401000000008311171561057357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611459565b005b6105d66114a8565b005b6105e06114d5565b604051808215151515815260200191505060405180910390f35b6106266004803603602081101561061057600080fd5b81019080803590602001909291905050506114ec565b005b61066a6004803603602081101561063e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118f5565b604051808260ff1660ff16815260200191505060405180910390f35b61068e611915565b6040518082815260200191505060405180910390f35b6106ac61191b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f6611944565b604051808215151515815260200191505060405180910390f35b61073c6004803603602081101561072657600080fd5b810190808035906020019092919050505061199b565b6040518082815260200191505060405180910390f35b6107946004803603602081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b3565b6040518082815260200191505060405180910390f35b6107b26119fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108366004803603602081101561080a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a26565b604051808215151515815260200191505060405180910390f35b610858611a81565b6040518082815260200191505060405180910390f35b6108b06004803603602081101561088457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a8b565b005b6108de600480360360208110156108c857600080fd5b8101908080359060200190929190505050611ba0565b6040518082815260200191505060405180910390f35b6109206004803603602081101561090a57600080fd5b8101908080359060200190929190505050611bb8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109a46004803603602081101561097857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bf4565b005b6109e8600480360360208110156109bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7a565b604051808215151515815260200191505060405180910390f35b6000600454905090565b6000600254905090565b6000610a2182611cd0565b905060008111610a99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546f6b656e56657374696e673a206e6f20746f6b656e7320617265206475650081525060200191505060405180910390fd5b610aeb81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3390919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b7b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff16611dbb9092919063ffffffff16565b7fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df931798282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b610bf381611e8c565b610c34600a600081548110610c0457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e9a565b50565b6000600b80549050905090565b610c4f600954611fa1565b15610d555760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490508015610cfa5733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d819055505b610d026125a8565b8015610d53576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8181548110610dbe57fe5b906000526020600020016000915090505481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f556e7065726d6974746564206f7065726174696f6e2e0000000000000000000081525060200191505060405180910390fd5b610ec0601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166126f6565b7ff7821b6291bcfb92e2d1515512558fe2c562c57f8f35eedab1ae196f6b8b9451601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a16000601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60106020528060005260406000206000915090505481565b6000600a80549050905090565b610fb6611944565b611028576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6110ef611944565b611161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560009054906101000a900460ff166111e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f546f6b656e56657374696e673a2063616e6e6f74207265766f6b65000000000081525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611286576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b7e6023913960400191505060405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561130557600080fd5b505afa158015611319573d6000803e3d6000fd5b505050506040513d602081101561132f57600080fd5b81019080805190602001909291905050509050600061134d83611cd0565b90506000611364828461273a90919063ffffffff16565b90506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113f06113c961191b565b828673ffffffffffffffffffffffffffffffffffffffff16611dbb9092919063ffffffff16565b7f39983c6d4d174a7aee564f449d4a5c3c7ac9649d72b7793c56901183996f8af684604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150505050565b61146382826127c3565b6114a4600a60008154811061147457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e9a565b5050565b6114d3601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a16565b565b6000600560009054906101000a900460ff16905090565b6114f66001611fa1565b156118f25760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905080156115a05733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d819055505b6115a933611a26565b80156116095750600a80549050600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611155b61165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180613ac8603b913960400191505060405180910390fd5b60006116c36001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1661273a90919063ffffffff16565b905060008160020a6010600086815260200190815260200160002054161415611737576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613a296030913960400191505060405180910390fd5b8060020a19601060008581526020019081526020016000206000828254169250508190555060006117856001601160008781526020019081526020016000205461273a90919063ffffffff16565b90508060116000868152602001908152602001600020819055507f3e0a7036018b5a2a3c5d0afa14e51998ef3cf98c38e4289a8897222b3acf75a78482600a8054905033604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390a1600081141561189d5761183184612e0d565b7f55e0dd61c29aac6fc36807628300ad3e3ec68655ae76ae4002f7fb101496fa9f8433604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15b505080156118f0576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b50565b600e6020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b60116020528060005260406000206000915090505481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16119050919050565b6000600354905090565b611a96600954611fa1565b15611b9d5760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490508015611b415733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d819055505b611b4a82611e9a565b8015611b9b576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b50565b600f6020528060005260406000206000915090505481565b600a8181548110611bc557fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611bfc611944565b611c6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c7781612fd7565b50565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611d2c600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1e8461311b565b61273a90919063ffffffff16565b9050919050565b600080828401905083811015611db1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611e87838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613305565b505050565b611e97818251611459565b50565b80611ea481611a26565b611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b5b6023913960400191505060405180910390fd5b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb58a26ae99265bf4b23d37173ec29260d75bed6fa8ef375594386e33bd69954082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b60003373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561205d57600d54821115612054576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526058815260200180613b036058913960600191505060405180910390fd5b600190506125a3565b61206633611a26565b80156120c65750600a80549050600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611155b61211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180613ac8603b913960400191505060405180910390fd5b60006121806001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1661273a90919063ffffffff16565b9050600080366008546040516020018084848082843780830192505050828152602001935050505060405160208183030381529060405280519060200120905060008260020a60106000848152602001908152602001600020541614612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260468152602001806138d56046913960600191505060405180910390fd5b61223a82613550565b61228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604a81526020018061391b604a913960600191505060405180910390fd5b8160020a601060008381526020019081526020016000206000828254179250508190555060006122dc60016011600085815260200190815260200160002054611d3390919063ffffffff16565b9050806011600084815260200190815260200160002081905550600181141561246357600b80549050600f600084815260200190815260200160002081905550826012600084815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506123856001601360008660ff1660ff16815260200190815260200160002060009054906101000a900460ff1660ff16611d3390919063ffffffff16565b601360008560ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600b8290806001815401808255809150509060018203906000526020600020016000909192909190915055507f6bab0114f9524353d2d33e64edd3ebbd16e21edd57de2226ba76c310a7ce22658286600a8054905033604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390a15b7f8dd9582c6577aea81973b5adeb6c135f6e18565d99578b7ba0c9377437ec0221828287600a8054905033604051808681526020018581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405180910390a1846011600084815260200190815260200160002054141561259b5761250f82612e0d565b7f8a11c8ca99994c292318ce367f65bf6ff61d390bc814b3588496f6fbcc32807a8286600a8054905033604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390a1600193505050506125a3565b600093505050505b919050565b60008090505b600b8054905081101561268c57600f6000600b83815481106125cc57fe5b906000526020600020015481526020019081526020016000206000905560106000600b83815481106125fa57fe5b906000526020600020015481526020019081526020016000206000905560116000600b838154811061262857fe5b906000526020600020015481526020019081526020016000206000905560126000600b838154811061265657fe5b9060005260206000200154815260200190815260200160002060006101000a81549060ff021916905580806001019150506125ae565b506000600b8161269c91906136af565b5060008090505b600a805490508160ff1610156126f3576000601360008360ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806001019150506126a3565b50565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000828211156127b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6127ce600954611fa1565b15612e095760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905080156128795733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d819055505b60008351116128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806139656040913960400191505060405180910390fd5b61010083511061292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604b8152602001806137ce604b913960600191505060405180910390fd5b60008211612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604b81526020018061383f604b913960600191505060405180910390fd5b82518211156129e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260638152602001806139a56063913960800191505060405180910390fd5b60008090505b600a80549050811015612a8757600e6000600a8381548110612a0557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806001019150506129e7565b5060008090505b8351811015612c7657600073ffffffffffffffffffffffffffffffffffffffff16848281518110612abb57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526045815260200180613a596045913960600191505060405180910390fd5b6000600e6000868481518110612b4257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614612beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604b81526020018061388a604b913960600191505060405180910390fd5b612bff600182611d3390919063ffffffff16565b600e6000868481518110612c0f57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080600101915050612a8e565b507f7604d7fe023703228e39796cf9ef0b8b0f8151e1755f319f9b5f67dc3bdabd53600a60095485856040518080602001858152602001806020018481526020018381038352878181548152602001915080548015612d2a57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311612ce0575b5050838103825285818151815260200191508051906020019060200280838360005b83811015612d67578082015181840152602081019050612d4c565b50505050905001965050505050505060405180910390a182600a9080519060200190612d949291906136db565b5081600981905550612da46125a8565b6008600081548092919060010191905055508015612e07576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b5050565b6000600f60008381526020019081526020016000205490506001600b8054905003811015612eb057600b612e506001600b8054905061273a90919063ffffffff16565b81548110612e5a57fe5b9060005260206000200154600b8281548110612e7257fe5b906000526020600020018190555080600f6000600b8481548110612e9257fe5b90600052602060002001548152602001908152602001600020819055505b612ec96001600b8054905061273a90919063ffffffff16565b600b81612ed691906136af565b5060006012600084815260200190815260200160002060009054906101000a900460ff169050612f396001601360008460ff1660ff16815260200190815260200160002060009054906101000a900460ff1660ff1661273a90919063ffffffff16565b601360008360ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555060106000848152602001908152602001600020600090556011600084815260200190815260200160002060009055600f6000848152602001908152602001600020600090556012600084815260200190815260200160002060006101000a81549060ff0219169055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561305d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806138196026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561319b57600080fd5b505afa1580156131af573d6000803e3d6000fd5b505050506040513d60208110156131c557600080fd5b81019080805190602001909291905050509050600061322c600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611d3390919063ffffffff16565b905060025442101561324357600092505050613300565b61325a600454600354611d3390919063ffffffff16565b421015806132b15750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132c0578092505050613300565b6132fb6004546132ed6132de6003544261273a90919063ffffffff16565b8461358790919063ffffffff16565b61360d90919063ffffffff16565b925050505b919050565b6133248273ffffffffffffffffffffffffffffffffffffffff1661369c565b613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106133e557805182526020820191506020810190506020830392506133c2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613447576040519150601f19603f3d011682016040523d82523d6000602084013e61344c565b606091505b5091509150816134c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b60008151111561354a578080602001905160208110156134e357600080fd5b8101908080519060200190929190505050613549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613a9e602a913960400191505060405180910390fd5b5b50505050565b60006003601360008460ff1660ff16815260200190815260200160002060009054906101000a900460ff1660ff1611159050919050565b60008083141561359a5760009050613607565b60008284029050828482816135ab57fe5b0414613602576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a086021913960400191505060405180910390fd5b809150505b92915050565b6000808211613684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161368f57fe5b0490508091505092915050565b600080823b905060008111915050919050565b8154818355818111156136d6578183600052602060002091820191016136d59190613765565b5b505050565b828054828255906000526020600020908101928215613754579160200282015b828111156137535782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906136fb565b5b509050613761919061378a565b5090565b61378791905b8082111561378357600081600090555060010161376b565b5090565b90565b6137ca91905b808211156137c657600081816101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550600101613790565b5090565b9056fe7472616e7366657242656e65666963696172797368697057697468486f774d616e793a2062656e6566696369617269657320636f756e742069732067726561746572207468656e203235354f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573737472616e7366657242656e65666963696172797368697057697468486f774d616e793a206e6577486f774d616e7962656e65666963696172797344656369646520657175616c20746f20307472616e7366657242656e65666963696172795368697057697468486f774d616e793a2062656e6566696369617269657320617272617920636f6e7461696e73206475706c696361746573636865636b486f774d616e7942656e656669636961726965733a2062656e656669636961727920616c726561647920766f74656420666f7220746865206f7065726174696f6e636865636b486f774d616e7942656e656669636961726965733a206f7065726174696f6e206c696d6974206973207265616368656420666f7220746869732062656e65666963696172797472616e7366657242656e65666963696172795368697057697468486f774d616e793a2062656e6566696369617269657320617272617920697320656d7074797472616e7366657242656e65666963696172795368697057697468486f774d616e793a206e6577486f774d616e7962656e656669636961727973446563696465206578636565647320746865206e756d626572206f662062656e656669636961727973536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7763616e63656c50656e64696e673a206f7065726174696f6e206e6f7420666f756e6420666f72207468697320757365727472616e7366657242656e65666963696172795368697057697468486f774d616e793a2062656e6566696369617269657320617272617920636f6e7461696e73207a65726f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564636865636b486f774d616e7942656e656669636961726965733a206d73672e73656e646572206973206e6f7420616e2062656e6566696369617279636865636b486f774d616e7942656e656669636961726965733a206e65737465642062656e65666963696172696573206d6f64696669657220636865636b2072657175697265206d6f72652062656e65666963696172797361646472657373206973206e6f7420696e2062656e6566696369617279206172726179546f6b656e56657374696e673a20746f6b656e20616c7265616479207265766f6b6564a265627a7a723058207855dc08874462894df508d1419cf3e595a9f76cb55b7e0b6dbc2bc87fecb20464736f6c63430005090032546f6b656e56657374696e673a2066696e616c2074696d65206973206265666f72652063757272656e742074696d65546f6b656e56657374696e673a2062656e656669636961727920697320746865207a65726f2061646472657373546f6b656e56657374696e673a20636c696666206973206c6f6e676572207468616e206475726174696f6e0000000000000000000000008ab7404063ec4dbcfd4598215992dc3f8ec853d7000000000000000000000000000000000000000000000000000000005ee80bbc0000000000000000000000000000000000000000000000000000000000278d0000000000000000000000000000000000000000000000000000000000039ada00
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806386d1a69f1161011a5780639852595c116100ad578063dc0706571161007c578063dc0706571461086e578063ea1a2644146108b2578063efeb5e58146108f4578063f2fde38b14610962578063fa01dc06146109a6576101fb565b80639852595c146107525780639d76ea58146107aa578063aa54822e146107f4578063be9a655514610850576101fb565b80638c0a964c116100e95780638c0a964c146106865780638da5cb5b146106a45780638f32d59b146106ee57806390a5308514610710576101fb565b806386d1a69f146105ce578063872a7810146105d8578063893372ca146105fa5780638a57ee5014610628576101fb565b8063427db380116101925780636e616a4c116101615780636e616a4c146104a0578063715018a6146104be57806374a8f103146104c85780638339df641461050c576101fb565b8063427db380146103c8578063431ab2331461041257806348d89b6b14610454578063568b59151461045e576101fb565b806322f2f89a116101ce57806322f2f89a1461033857806329866a671461035657806338af3eed146103605780633f8ac33e146103aa576101fb565b80630fb5a6b41461020057806313d033c01461021e578063191655871461023c5780632173f5bd14610280575b600080fd5b610208610a02565b6040518082815260200191505060405180910390f35b610226610a0c565b6040518082815260200191505060405180910390f35b61027e6004803603602081101561025257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a16565b005b6103366004803603602081101561029657600080fd5b81019080803590602001906401000000008111156102b357600080fd5b8201836020820111156102c557600080fd5b803590602001918460208302840111640100000000831117156102e757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610bea565b005b610340610c37565b6040518082815260200191505060405180910390f35b61035e610c44565b005b610368610d57565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103b2610d81565b6040518082815260200191505060405180910390f35b6103d0610d87565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61043e6004803603602081101561042857600080fd5b8101908080359060200190929190505050610db1565b6040518082815260200191505060405180910390f35b61045c610dd2565b005b61048a6004803603602081101561047457600080fd5b8101908080359060200190929190505050610f89565b6040518082815260200191505060405180910390f35b6104a8610fa1565b6040518082815260200191505060405180910390f35b6104c6610fae565b005b61050a600480360360208110156104de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110e7565b005b6105cc6004803603604081101561052257600080fd5b810190808035906020019064010000000081111561053f57600080fd5b82018360208201111561055157600080fd5b8035906020019184602083028401116401000000008311171561057357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611459565b005b6105d66114a8565b005b6105e06114d5565b604051808215151515815260200191505060405180910390f35b6106266004803603602081101561061057600080fd5b81019080803590602001909291905050506114ec565b005b61066a6004803603602081101561063e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118f5565b604051808260ff1660ff16815260200191505060405180910390f35b61068e611915565b6040518082815260200191505060405180910390f35b6106ac61191b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f6611944565b604051808215151515815260200191505060405180910390f35b61073c6004803603602081101561072657600080fd5b810190808035906020019092919050505061199b565b6040518082815260200191505060405180910390f35b6107946004803603602081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b3565b6040518082815260200191505060405180910390f35b6107b26119fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108366004803603602081101561080a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a26565b604051808215151515815260200191505060405180910390f35b610858611a81565b6040518082815260200191505060405180910390f35b6108b06004803603602081101561088457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a8b565b005b6108de600480360360208110156108c857600080fd5b8101908080359060200190929190505050611ba0565b6040518082815260200191505060405180910390f35b6109206004803603602081101561090a57600080fd5b8101908080359060200190929190505050611bb8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109a46004803603602081101561097857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bf4565b005b6109e8600480360360208110156109bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7a565b604051808215151515815260200191505060405180910390f35b6000600454905090565b6000600254905090565b6000610a2182611cd0565b905060008111610a99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546f6b656e56657374696e673a206e6f20746f6b656e7320617265206475650081525060200191505060405180910390fd5b610aeb81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3390919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b7b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff16611dbb9092919063ffffffff16565b7fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df931798282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b610bf381611e8c565b610c34600a600081548110610c0457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e9a565b50565b6000600b80549050905090565b610c4f600954611fa1565b15610d555760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490508015610cfa5733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d819055505b610d026125a8565b8015610d53576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8181548110610dbe57fe5b906000526020600020016000915090505481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f556e7065726d6974746564206f7065726174696f6e2e0000000000000000000081525060200191505060405180910390fd5b610ec0601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166126f6565b7ff7821b6291bcfb92e2d1515512558fe2c562c57f8f35eedab1ae196f6b8b9451601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a16000601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60106020528060005260406000206000915090505481565b6000600a80549050905090565b610fb6611944565b611028576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6110ef611944565b611161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560009054906101000a900460ff166111e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f546f6b656e56657374696e673a2063616e6e6f74207265766f6b65000000000081525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611286576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b7e6023913960400191505060405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561130557600080fd5b505afa158015611319573d6000803e3d6000fd5b505050506040513d602081101561132f57600080fd5b81019080805190602001909291905050509050600061134d83611cd0565b90506000611364828461273a90919063ffffffff16565b90506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113f06113c961191b565b828673ffffffffffffffffffffffffffffffffffffffff16611dbb9092919063ffffffff16565b7f39983c6d4d174a7aee564f449d4a5c3c7ac9649d72b7793c56901183996f8af684604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150505050565b61146382826127c3565b6114a4600a60008154811061147457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e9a565b5050565b6114d3601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a16565b565b6000600560009054906101000a900460ff16905090565b6114f66001611fa1565b156118f25760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905080156115a05733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d819055505b6115a933611a26565b80156116095750600a80549050600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611155b61165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180613ac8603b913960400191505060405180910390fd5b60006116c36001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1661273a90919063ffffffff16565b905060008160020a6010600086815260200190815260200160002054161415611737576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613a296030913960400191505060405180910390fd5b8060020a19601060008581526020019081526020016000206000828254169250508190555060006117856001601160008781526020019081526020016000205461273a90919063ffffffff16565b90508060116000868152602001908152602001600020819055507f3e0a7036018b5a2a3c5d0afa14e51998ef3cf98c38e4289a8897222b3acf75a78482600a8054905033604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390a1600081141561189d5761183184612e0d565b7f55e0dd61c29aac6fc36807628300ad3e3ec68655ae76ae4002f7fb101496fa9f8433604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15b505080156118f0576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b50565b600e6020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b60116020528060005260406000206000915090505481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16119050919050565b6000600354905090565b611a96600954611fa1565b15611b9d5760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490508015611b415733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d819055505b611b4a82611e9a565b8015611b9b576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b50565b600f6020528060005260406000206000915090505481565b600a8181548110611bc557fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611bfc611944565b611c6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c7781612fd7565b50565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611d2c600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1e8461311b565b61273a90919063ffffffff16565b9050919050565b600080828401905083811015611db1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611e87838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613305565b505050565b611e97818251611459565b50565b80611ea481611a26565b611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b5b6023913960400191505060405180910390fd5b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb58a26ae99265bf4b23d37173ec29260d75bed6fa8ef375594386e33bd69954082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b60003373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561205d57600d54821115612054576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526058815260200180613b036058913960600191505060405180910390fd5b600190506125a3565b61206633611a26565b80156120c65750600a80549050600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611155b61211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180613ac8603b913960400191505060405180910390fd5b60006121806001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1661273a90919063ffffffff16565b9050600080366008546040516020018084848082843780830192505050828152602001935050505060405160208183030381529060405280519060200120905060008260020a60106000848152602001908152602001600020541614612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260468152602001806138d56046913960600191505060405180910390fd5b61223a82613550565b61228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604a81526020018061391b604a913960600191505060405180910390fd5b8160020a601060008381526020019081526020016000206000828254179250508190555060006122dc60016011600085815260200190815260200160002054611d3390919063ffffffff16565b9050806011600084815260200190815260200160002081905550600181141561246357600b80549050600f600084815260200190815260200160002081905550826012600084815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506123856001601360008660ff1660ff16815260200190815260200160002060009054906101000a900460ff1660ff16611d3390919063ffffffff16565b601360008560ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600b8290806001815401808255809150509060018203906000526020600020016000909192909190915055507f6bab0114f9524353d2d33e64edd3ebbd16e21edd57de2226ba76c310a7ce22658286600a8054905033604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390a15b7f8dd9582c6577aea81973b5adeb6c135f6e18565d99578b7ba0c9377437ec0221828287600a8054905033604051808681526020018581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405180910390a1846011600084815260200190815260200160002054141561259b5761250f82612e0d565b7f8a11c8ca99994c292318ce367f65bf6ff61d390bc814b3588496f6fbcc32807a8286600a8054905033604051808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390a1600193505050506125a3565b600093505050505b919050565b60008090505b600b8054905081101561268c57600f6000600b83815481106125cc57fe5b906000526020600020015481526020019081526020016000206000905560106000600b83815481106125fa57fe5b906000526020600020015481526020019081526020016000206000905560116000600b838154811061262857fe5b906000526020600020015481526020019081526020016000206000905560126000600b838154811061265657fe5b9060005260206000200154815260200190815260200160002060006101000a81549060ff021916905580806001019150506125ae565b506000600b8161269c91906136af565b5060008090505b600a805490508160ff1610156126f3576000601360008360ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806001019150506126a3565b50565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000828211156127b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6127ce600954611fa1565b15612e095760008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905080156128795733600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600954600d819055505b60008351116128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806139656040913960400191505060405180910390fd5b61010083511061292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604b8152602001806137ce604b913960600191505060405180910390fd5b60008211612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604b81526020018061383f604b913960600191505060405180910390fd5b82518211156129e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260638152602001806139a56063913960800191505060405180910390fd5b60008090505b600a80549050811015612a8757600e6000600a8381548110612a0557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806001019150506129e7565b5060008090505b8351811015612c7657600073ffffffffffffffffffffffffffffffffffffffff16848281518110612abb57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526045815260200180613a596045913960600191505060405180910390fd5b6000600e6000868481518110612b4257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614612beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604b81526020018061388a604b913960600191505060405180910390fd5b612bff600182611d3390919063ffffffff16565b600e6000868481518110612c0f57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080600101915050612a8e565b507f7604d7fe023703228e39796cf9ef0b8b0f8151e1755f319f9b5f67dc3bdabd53600a60095485856040518080602001858152602001806020018481526020018381038352878181548152602001915080548015612d2a57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311612ce0575b5050838103825285818151815260200191508051906020019060200280838360005b83811015612d67578082015181840152602081019050612d4c565b50505050905001965050505050505060405180910390a182600a9080519060200190612d949291906136db565b5081600981905550612da46125a8565b6008600081548092919060010191905055508015612e07576000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055505b505b5050565b6000600f60008381526020019081526020016000205490506001600b8054905003811015612eb057600b612e506001600b8054905061273a90919063ffffffff16565b81548110612e5a57fe5b9060005260206000200154600b8281548110612e7257fe5b906000526020600020018190555080600f6000600b8481548110612e9257fe5b90600052602060002001548152602001908152602001600020819055505b612ec96001600b8054905061273a90919063ffffffff16565b600b81612ed691906136af565b5060006012600084815260200190815260200160002060009054906101000a900460ff169050612f396001601360008460ff1660ff16815260200190815260200160002060009054906101000a900460ff1660ff1661273a90919063ffffffff16565b601360008360ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555060106000848152602001908152602001600020600090556011600084815260200190815260200160002060009055600f6000848152602001908152602001600020600090556012600084815260200190815260200160002060006101000a81549060ff0219169055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561305d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806138196026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561319b57600080fd5b505afa1580156131af573d6000803e3d6000fd5b505050506040513d60208110156131c557600080fd5b81019080805190602001909291905050509050600061322c600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611d3390919063ffffffff16565b905060025442101561324357600092505050613300565b61325a600454600354611d3390919063ffffffff16565b421015806132b15750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132c0578092505050613300565b6132fb6004546132ed6132de6003544261273a90919063ffffffff16565b8461358790919063ffffffff16565b61360d90919063ffffffff16565b925050505b919050565b6133248273ffffffffffffffffffffffffffffffffffffffff1661369c565b613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106133e557805182526020820191506020810190506020830392506133c2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613447576040519150601f19603f3d011682016040523d82523d6000602084013e61344c565b606091505b5091509150816134c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b60008151111561354a578080602001905160208110156134e357600080fd5b8101908080519060200190929190505050613549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613a9e602a913960400191505060405180910390fd5b5b50505050565b60006003601360008460ff1660ff16815260200190815260200160002060009054906101000a900460ff1660ff1611159050919050565b60008083141561359a5760009050613607565b60008284029050828482816135ab57fe5b0414613602576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a086021913960400191505060405180910390fd5b809150505b92915050565b6000808211613684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161368f57fe5b0490508091505092915050565b600080823b905060008111915050919050565b8154818355818111156136d6578183600052602060002091820191016136d59190613765565b5b505050565b828054828255906000526020600020908101928215613754579160200282015b828111156137535782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906136fb565b5b509050613761919061378a565b5090565b61378791905b8082111561378357600081600090555060010161376b565b5090565b90565b6137ca91905b808211156137c657600081816101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550600101613790565b5090565b9056fe7472616e7366657242656e65666963696172797368697057697468486f774d616e793a2062656e6566696369617269657320636f756e742069732067726561746572207468656e203235354f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573737472616e7366657242656e65666963696172797368697057697468486f774d616e793a206e6577486f774d616e7962656e65666963696172797344656369646520657175616c20746f20307472616e7366657242656e65666963696172795368697057697468486f774d616e793a2062656e6566696369617269657320617272617920636f6e7461696e73206475706c696361746573636865636b486f774d616e7942656e656669636961726965733a2062656e656669636961727920616c726561647920766f74656420666f7220746865206f7065726174696f6e636865636b486f774d616e7942656e656669636961726965733a206f7065726174696f6e206c696d6974206973207265616368656420666f7220746869732062656e65666963696172797472616e7366657242656e65666963696172795368697057697468486f774d616e793a2062656e6566696369617269657320617272617920697320656d7074797472616e7366657242656e65666963696172795368697057697468486f774d616e793a206e6577486f774d616e7962656e656669636961727973446563696465206578636565647320746865206e756d626572206f662062656e656669636961727973536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7763616e63656c50656e64696e673a206f7065726174696f6e206e6f7420666f756e6420666f72207468697320757365727472616e7366657242656e65666963696172795368697057697468486f774d616e793a2062656e6566696369617269657320617272617920636f6e7461696e73207a65726f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564636865636b486f774d616e7942656e656669636961726965733a206d73672e73656e646572206973206e6f7420616e2062656e6566696369617279636865636b486f774d616e7942656e656669636961726965733a206e65737465642062656e65666963696172696573206d6f64696669657220636865636b2072657175697265206d6f72652062656e65666963696172797361646472657373206973206e6f7420696e2062656e6566696369617279206172726179546f6b656e56657374696e673a20746f6b656e20616c7265616479207265766f6b6564a265627a7a723058207855dc08874462894df508d1419cf3e595a9f76cb55b7e0b6dbc2bc87fecb20464736f6c63430005090032
Deployed Bytecode Sourcemap
32976:3399:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32976:3399:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17102:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16788:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17837:372;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17837:372:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;34579:194;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34579:194:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;34579:194:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34579:194:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34579:194:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;34579:194:0;;;;;;;;;;;;;;;:::i;:::-;;22272:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30515:94;;;:::i;:::-;;16618:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20472:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34264:105;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20602:30;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20602:30:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35732:220;;;:::i;:::-;;20996:55;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20996:55:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22162:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13013:140;;;:::i;:::-;;18436:515;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18436:515:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;35080:289;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35080:289:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;35080:289:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35080:289:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;35080:289:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;35080:289:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33551:65;;;:::i;:::-;;17263:84;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29472:933;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29472:933:0;;;;;;;;;;;;;;;;;:::i;:::-;;20792:53;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20792:53:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20517:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12202:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12568:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21058:56;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21058:56:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17423:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17423:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33683:84;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22024:128;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22024:128:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16946:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35534:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35534:139:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20879:53;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20879:53:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20565:30;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20565:30:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13308:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13308:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;17600:100;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17600:100:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17102:85;17143:7;17170:9;;17163:16;;17102:85;:::o;16788:79::-;16826:7;16853:6;;16846:13;;16788:79;:::o;17837:372::-;17886:18;17907:24;17925:5;17907:17;:24::i;:::-;17886:45;;17965:1;17952:10;:14;17944:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18043:41;18073:10;18043:9;:25;18061:5;18043:25;;;;;;;;;;;;;;;;:29;;:41;;;;:::i;:::-;18015:9;:25;18033:5;18015:25;;;;;;;;;;;;;;;:69;;;;18097:44;18116:12;;;;;;;;;;;18130:10;18097:5;:18;;;;:44;;;;;:::i;:::-;18159:42;18182:5;18190:10;18159:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;17837:372;;:::o;34579:194::-;34666:48;34696:17;34666:29;:48::i;:::-;34725:40;34748:13;34762:1;34748:16;;;;;;;;;;;;;;;;;;;;;;;;;34725:22;:40::i;:::-;34579:194;:::o;22272:102::-;22322:4;22346:13;:20;;;;22339:27;;22272:102;:::o;30515:94::-;23958:53;23984:26;;23958:25;:53::i;:::-;23954:429;;;24028:11;24071:1;24043:30;;:16;;;;;;;;;;;:30;;;24028:46;;24093:6;24089:139;;;24139:10;24120:16;;:29;;;;;;;;;;;;;;;;;;24186:26;;24168:15;:44;;;;24089:139;30582:19;:17;:19::i;:::-;24262:6;24258:114;;;24316:1;24289:16;;:29;;;;;;;;;;;;;;;;;;24355:1;24337:15;:19;;;;24258:114;23954:429;;30515:94::o;16618:91::-;16662:7;16689:12;;;;;;;;;;;16682:19;;16618:91;:::o;20472:38::-;;;;:::o;34264:105::-;34315:7;34342:19;;;;;;;;;;;34335:26;;34264:105;:::o;20602:30::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35732:220::-;34190:19;;;;;;;;;;;34175:34;;:10;:34;;;34167:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35801:39;35820:19;;;;;;;;;;;35801:18;:39::i;:::-;35856:45;35881:19;;;;;;;;;;;35856:45;;;;;;;;;;;;;;;;;;;;;;35942:1;35912:19;;:32;;;;;;;;;;;;;;;;;;35732:220::o;20996:55::-;;;;;;;;;;;;;;;;;:::o;22162:102::-;22212:4;22236:13;:20;;;;22229:27;;22162:102;:::o;13013:140::-;12414:9;:7;:9::i;:::-;12406:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13112:1;13075:40;;13096:6;;;;;;;;;;;13075:40;;;;;;;;;;;;13143:1;13126:6;;:19;;;;;;;;;;;;;;;;;;13013:140::o;18436:515::-;12414:9;:7;:9::i;:::-;12406:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18502:10;;;;;;;;;;;18494:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18564:8;:24;18581:5;18564:24;;;;;;;;;;;;;;;;;;;;;;;;;18563:25;18555:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18641:15;18659:5;:15;;;18683:4;18659:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18659:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18659:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18659:30:0;;;;;;;;;;;;;;;;18641:48;;18702:18;18723:24;18741:5;18723:17;:24::i;:::-;18702:45;;18758:14;18775:23;18787:10;18775:7;:11;;:23;;;;:::i;:::-;18758:40;;18838:4;18811:8;:24;18828:5;18811:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;18855:35;18874:7;:5;:7::i;:::-;18883:6;18855:5;:18;;;;:35;;;;;:::i;:::-;18908;18936:5;18908:35;;;;;;;;;;;;;;;;;;;;;;12471:1;;;18436:515;:::o;35080:289::-;35219:91;35260:17;35279:30;35219:40;:91::i;:::-;35321:40;35344:13;35358:1;35344:16;;;;;;;;;;;;;;;;;;;;;;;;;35321:22;:40::i;:::-;35080:289;;:::o;33551:65::-;33588:20;33602:5;;;;;;;;;;;33588:13;:20::i;:::-;33551:65::o;17263:84::-;17305:4;17329:10;;;;;;;;;;;17322:17;;17263:84;:::o;29472:933::-;23406:28;23432:1;23406:25;:28::i;:::-;23402:379;;;23451:11;23494:1;23466:30;;:16;;;;;;;;;;;:30;;;23451:46;;23516:6;23512:114;;;23562:10;23543:16;;:29;;;;;;;;;;;;;;;;;;23609:1;23591:15;:19;;;;23512:114;29562:30;29581:10;29562:18;:30::i;:::-;:92;;;;;29633:13;:20;;;;29597;:32;29618:10;29597:32;;;;;;;;;;;;;;;;;;;;;;;;;:56;;;;29562:92;29553:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29732:21;29756:39;29793:1;29756:20;:32;29777:10;29756:32;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;:39;;;;:::i;:::-;29732:63;;29877:1;29855:16;29850:1;:21;29815:20;:31;29836:9;29815:31;;;;;;;;;;;;:57;29814:64;;29806:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29984:16;29979:1;:21;29977:24;29942:20;:31;29963:9;29942:31;;;;;;;;;;;;:59;;;;;;;;;;;30012:24;30039:39;30076:1;30039:21;:32;30061:9;30039:32;;;;;;;;;;;;:36;;:39;;;;:::i;:::-;30012:66;;30124:19;30089:21;:32;30111:9;30089:32;;;;;;;;;;;:54;;;;30159:84;30178:9;30189:19;30210:13;:20;;;;30232:10;30159:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30281:1;30258:19;:24;30254:144;;;30299:26;30315:9;30299:15;:26::i;:::-;30345:41;30364:9;30375:10;30345:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;30254:144;23640:1;;23660:6;23656:114;;;23714:1;23687:16;;:29;;;;;;;;;;;;;;;;;;23753:1;23735:15;:19;;;;23656:114;23402:379;;29472:933;:::o;20792:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;20517:41::-;;;;:::o;12202:79::-;12240:7;12267:6;;;;;;;;;;;12260:13;;12202:79;:::o;12568:92::-;12608:4;12646:6;;;;;;;;;;;12632:20;;:10;:20;;;12625:27;;12568:92;:::o;21058:56::-;;;;;;;;;;;;;;;;;:::o;17423:105::-;17477:7;17504:9;:16;17514:5;17504:16;;;;;;;;;;;;;;;;17497:23;;17423:105;;;:::o;33683:84::-;33728:6;33754:5;;;;;;;;;;;33747:12;;33683:84;:::o;22024:128::-;22088:4;22143:1;22112:20;:28;22133:6;22112:28;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;22105:39;;22024:128;;;:::o;16946:79::-;16984:7;17011:6;;17004:13;;16946:79;:::o;35534:139::-;23958:53;23984:26;;23958:25;:53::i;:::-;23954:429;;;24028:11;24071:1;24043:30;;:16;;;;;;;;;;;:30;;;24028:46;;24093:6;24089:139;;;24139:10;24120:16;;:29;;;;;;;;;;;;;;;;;;24186:26;;24168:15;:44;;;;24089:139;35626:39;35649:15;35626:22;:39::i;:::-;24262:6;24258:114;;;24316:1;24289:16;;:29;;;;;;;;;;;;;;;;;;24355:1;24337:15;:19;;;;24258:114;23954:429;;35534:139;:::o;20879:53::-;;;;;;;;;;;;;;;;;:::o;20565:30::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13308:109::-;12414:9;:7;:9::i;:::-;12406:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13381:28;13400:8;13381:18;:28::i;:::-;13308:109;:::o;17600:100::-;17653:4;17677:8;:15;17686:5;17677:15;;;;;;;;;;;;;;;;;;;;;;;;;17670:22;;17600:100;;;:::o;19121:149::-;19184:7;19211:51;19236:9;:25;19254:5;19236:25;;;;;;;;;;;;;;;;19211:20;19225:5;19211:13;:20::i;:::-;:24;;:51;;;;:::i;:::-;19204:58;;19121:149;;;:::o;3775:181::-;3833:7;3853:9;3869:1;3865;:5;3853:17;;3894:1;3889;:6;;3881:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3947:1;3940:8;;;3775:181;;;;:::o;8205:176::-;8288:85;8307:5;8337;:14;;;:23;;;;8362:2;8366:5;8314:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;8314:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;8314:58:0;8288:18;:85::i;:::-;8205:176;;;:::o;30811:171::-;30897:77;30932:16;30950;:23;30897:34;:77::i;:::-;30811:171;:::o;36146:226::-;36236:15;33945:32;33964:12;33945:18;:32::i;:::-;33937:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36286:15;36264:19;;:37;;;;;;;;;;;;;;;;;;36317:47;36348:15;36317:47;;;;;;;;;;;;;;;;;;;;;;36146:226;;:::o;26070:2233::-;26136:4;26177:10;26157:30;;:16;;;;;;;;;;;:30;;;26153:216;;;26223:15;;26212:7;:26;;26204:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26353:4;26346:11;;;;26153:216;26408:30;26427:10;26408:18;:30::i;:::-;:92;;;;;26479:13;:20;;;;26443;:32;26464:10;26443:32;;;;;;;;;;;;;;;;;;;;;;;;;:56;;;;26408:92;26399:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26578:21;26602:39;26639:1;26602:20;:32;26623:10;26602:32;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;:39;;;;:::i;:::-;26578:63;;26662:17;26709:8;;26719:23;;26692:51;;;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;26692:51:0;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;26692:51:0;;;26682:62;;;;;;26662:82;;26828:1;26806:16;26801:1;:21;26766:20;:31;26787:9;26766:31;;;;;;;;;;;;:57;26765:64;26757:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26960:58;27000:16;26960:33;:58::i;:::-;26952:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27151:16;27146:1;:21;27110:20;:31;27131:9;27110:31;;;;;;;;;;;;:58;;;;;;;;;;;27179:24;27206:39;27243:1;27206:21;:32;27228:9;27206:32;;;;;;;;;;;;:36;;:39;;;;:::i;:::-;27179:66;;27291:19;27256:21;:32;27278:9;27256:32;;;;;;;;;;;:54;;;;27350:1;27327:19;:24;27323:544;;;27403:13;:20;;;;27368:21;:32;27390:9;27368:32;;;;;;;;;;;:55;;;;27500:16;27452:28;:39;27481:9;27452:39;;;;;;;;;;;;:65;;;;;;;;;;;;;;;;;;27613;27676:1;27613:33;:58;27653:16;27613:58;;;;;;;;;;;;;;;;;;;;;;;;;:62;;;;:65;;;;:::i;:::-;27546:33;:58;27586:16;27546:58;;;;;;;;;;;;;;;;:133;;;;;;;;;;;;;;;;;;27708:13;27727:9;27708:29;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;27708:29:0;;;;;;;;;;;;;;;;;;;;;;27785:70;27802:9;27813:7;27822:13;:20;;;;27844:10;27785:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27323:544;27882:91;27899:9;27910:19;27931:7;27940:13;:20;;;;27962:10;27882:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28091:7;28055:21;:32;28077:9;28055:32;;;;;;;;;;;;:43;28051:220;;;28115:26;28131:9;28115:15;:26::i;:::-;28161:72;28180:9;28191:7;28200:13;:20;;;;28222:10;28161:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28255:4;28248:11;;;;;;;28051:220;28290:5;28283:12;;;;;26070:2233;;;;:::o;22617:634::-;22671:6;22680:1;22671:10;;22666:364;22687:13;:20;;;;22683:1;:24;22666:364;;;22736:21;:39;22758:13;22772:1;22758:16;;;;;;;;;;;;;;;;22736:39;;;;;;;;;;;22729:47;;;22798:20;:38;22819:13;22833:1;22819:16;;;;;;;;;;;;;;;;22798:38;;;;;;;;;;;22791:46;;;22859:21;:39;22881:13;22895:1;22881:16;;;;;;;;;;;;;;;;22859:39;;;;;;;;;;;22852:47;;;22971:28;:46;23000:13;23014:1;23000:16;;;;;;;;;;;;;;;;22971:46;;;;;;;;;;;;22964:54;;;;;;;;;;;22709:3;;;;;;;22666:364;;;;23065:1;23042:13;:24;;;;;:::i;:::-;;23133:7;23143:1;23133:11;;23128:116;23150:13;:20;;;;23146:1;:24;;;23128:116;;;23231:1;23192:33;:36;23226:1;23192:36;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;23172:3;;;;;;;23128:116;;;;22617:634::o;20013:111::-;20101:15;20086:12;;:30;;;;;;;;;;;;;;;;;;20013:111;:::o;4231:184::-;4289:7;4322:1;4317;:6;;4309:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4369:9;4385:1;4381;:5;4369:17;;4406:1;4399:8;;;4231:184;;;;:::o;31231:1653::-;23958:53;23984:26;;23958:25;:53::i;:::-;23954:429;;;24028:11;24071:1;24043:30;;:16;;;;;;;;;;;:30;;;24028:46;;24093:6;24089:139;;;24139:10;24120:16;;:29;;;;;;;;;;;;;;;;;;24186:26;;24168:15;:44;;;;24089:139;31423:1;31397:16;:23;:27;31389:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31538:3;31512:16;:23;:29;31504:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31672:1;31640:29;:33;31632:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31805:16;:23;31772:29;:56;;31764:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32003:6;32012:1;32003:10;;31998:120;32019:13;:20;;;;32015:1;:24;31998:120;;;32068:20;:38;32089:13;32103:1;32089:16;;;;;;;;;;;;;;;;;;;;;;;;;32068:38;;;;;;;;;;;;;;;;32061:45;;;;;;;;;;;32041:3;;;;;;;31998:120;;;;32133:6;32142:1;32133:10;;32128:416;32149:16;:23;32145:1;:27;32128:416;;;32233:1;32202:33;;:16;32219:1;32202:19;;;;;;;;;;;;;;:33;;;;32194:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32377:1;32332:20;:41;32353:16;32370:1;32353:19;;;;;;;;;;;;;;32332:41;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;32324:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32523:8;32529:1;32523;:5;;:8;;;;:::i;:::-;32473:20;:41;32494:16;32511:1;32494:19;;;;;;;;;;;;;;32473:41;;;;;;;;;;;;;;;;:59;;;;;;;;;;;;;;;;;;32174:3;;;;;;;32128:416;;;;32569:118;32596:13;32611:26;;32639:16;32657:29;32569:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;32569:118:0;;;;;;;;;;;;;;;;;;;;;32714:16;32698:13;:32;;;;;;;;;;;;:::i;:::-;;32770:29;32741:26;:58;;;;32812:19;:17;:19::i;:::-;32851:23;;:25;;;;;;;;;;;;;24262:6;24258:114;;;24316:1;24289:16;;:29;;;;;;;;;;;;;;;;;;24355:1;24337:15;:19;;;;24258:114;23954:429;;31231:1653;;:::o;28446:818::-;28510:10;28523:21;:32;28545:9;28523:32;;;;;;;;;;;;28510:45;;28601:1;28578:13;:20;;;;:24;28570:5;:32;28566:208;;;28654:13;28668:27;28693:1;28668:13;:20;;;;:24;;:27;;;;:::i;:::-;28654:42;;;;;;;;;;;;;;;;28631:13;28645:5;28631:20;;;;;;;;;;;;;;;:65;;;;28757:5;28711:21;:43;28733:13;28747:5;28733:20;;;;;;;;;;;;;;;;28711:43;;;;;;;;;;;:51;;;;28566:208;28807:27;28832:1;28807:13;:20;;;;:24;;:27;;;;:::i;:::-;28784:13;:50;;;;;:::i;:::-;;28847:22;28878:28;:39;28907:9;28878:39;;;;;;;;;;;;;;;;;;;;;28847:71;;28989:58;29045:1;28989:33;:51;29023:16;28989:51;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;:58;;;;:::i;:::-;28929:33;:51;28963:16;28929:51;;;;;;;;;;;;;;;;:119;;;;;;;;;;;;;;;;;;29068:20;:31;29089:9;29068:31;;;;;;;;;;;29061:38;;;29117:21;:32;29139:9;29117:32;;;;;;;;;;;29110:39;;;29167:21;:32;29189:9;29167:32;;;;;;;;;;;29160:39;;;29217:28;:39;29246:9;29217:39;;;;;;;;;;;;29210:46;;;;;;;;;;;28446:818;;;:::o;13523:229::-;13617:1;13597:22;;:8;:22;;;;13589:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13707:8;13678:38;;13699:6;;;;;;;;;;;13678:38;;;;;;;;;;;;13736:8;13727:6;;:17;;;;;;;;;;;;;;;;;;13523:229;:::o;19411:524::-;19470:7;19490:22;19515:5;:15;;;19539:4;19515:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19515:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19515:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19515:30:0;;;;;;;;;;;;;;;;19490:55;;19556:20;19579:45;19598:9;:25;19616:5;19598:25;;;;;;;;;;;;;;;;19579:14;:18;;:45;;;;:::i;:::-;19556:68;;19659:6;;19641:15;:24;19637:291;;;19689:1;19682:8;;;;;;19637:291;19731:21;19742:9;;19731:6;;:10;;:21;;;;:::i;:::-;19712:15;:40;;:68;;;;19756:8;:24;19773:5;19756:24;;;;;;;;;;;;;;;;;;;;;;;;;19712:68;19708:220;;;19804:12;19797:19;;;;;;19708:220;19856:60;19906:9;;19856:45;19873:27;19893:6;;19873:15;:19;;:27;;;;:::i;:::-;19856:12;:16;;:45;;;;:::i;:::-;:49;;:60;;;;:::i;:::-;19849:67;;;;19411:524;;;;:::o;10199:1114::-;10803:27;10811:5;10803:25;;;:27::i;:::-;10795:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10940:12;10954:23;10989:5;10981:19;;11001:4;10981:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;10981:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;10939:67:0;;;;11025:7;11017:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11106:1;11086:10;:17;:21;11082:224;;;11228:10;11217:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11217:30:0;;;;;;;;;;;;;;;;11209:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11082:224;10199:1114;;;;:::o;22426:179::-;22515:4;22595:1;22540:33;:51;22574:16;22540:51;;;;;;;;;;;;;;;;;;;;;;;;;:56;;;;22532:65;;22426:179;;;:::o;4666:470::-;4724:7;4973:1;4968;:6;4964:47;;;4998:1;4991:8;;;;4964:47;5023:9;5039:1;5035;:5;5023:17;;5068:1;5063;5059;:5;;;;;;:10;5051:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5127:1;5120:8;;;4666:470;;;;;:::o;5604:333::-;5662:7;5761:1;5757;:5;5749:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5804:9;5820:1;5816;:5;;;;;;5804:17;;5928:1;5921:8;;;5604:333;;;;:::o;7146:422::-;7206:4;7414:12;7525:7;7513:20;7505:28;;7559:1;7552:4;:8;7545:15;;;7146:422;;;:::o;32976:3399::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://7855dc08874462894df508d1419cf3e595a9f76cb55b7e0b6dbc2bc87fecb204
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.