Latest 25 from a total of 41 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 49298991 | 744 days ago | IN | 0 POL | 0.00447676 | ||||
| Buy Order | 49298971 | 744 days ago | IN | 0 POL | 0.01171015 | ||||
| Sell Order | 49298960 | 744 days ago | IN | 0 POL | 0.0089879 | ||||
| Approve | 39401858 | 997 days ago | IN | 0 POL | 0.02456882 | ||||
| Start Swap | 37843841 | 1037 days ago | IN | 0 POL | 0.00297182 | ||||
| Validate | 33293021 | 1149 days ago | IN | 0 POL | 0.00257991 | ||||
| Approve | 31136729 | 1204 days ago | IN | 0 POL | 0.00194343 | ||||
| Start Swap | 30984013 | 1208 days ago | IN | 0 POL | 0.00228555 | ||||
| Start Swap | 30982951 | 1208 days ago | IN | 0 POL | 0.00278033 | ||||
| Validate | 27848545 | 1288 days ago | IN | 0 POL | 0.00260336 | ||||
| Sell Order | 26730145 | 1317 days ago | IN | 0 POL | 0.00358264 | ||||
| Buy Order | 26730130 | 1317 days ago | IN | 0 POL | 0.00357946 | ||||
| Deposit Ether | 26730058 | 1317 days ago | IN | 0.1 POL | 0.001852 | ||||
| Buy | 25978877 | 1336 days ago | IN | 0.1 POL | 0.00231247 | ||||
| Buy Order | 25050004 | 1363 days ago | IN | 0 POL | 0.003487 | ||||
| Sell Order | 25049947 | 1363 days ago | IN | 0 POL | 0.003565 | ||||
| Approve | 23390936 | 1405 days ago | IN | 0 POL | 0.023298 | ||||
| Approve | 23322679 | 1407 days ago | IN | 0 POL | 0.00697076 | ||||
| Validate | 23185255 | 1411 days ago | IN | 0 POL | 0.00516727 | ||||
| Sell Order | 23158376 | 1411 days ago | IN | 0 POL | 0.00348651 | ||||
| Approve | 23132427 | 1412 days ago | IN | 0 POL | 0.00153766 | ||||
| Sell Order | 23077531 | 1413 days ago | IN | 0 POL | 0.00348723 | ||||
| Approve | 23062496 | 1414 days ago | IN | 0 POL | 0.00144447 | ||||
| Approve | 23061191 | 1414 days ago | IN | 0 POL | 0.00138924 | ||||
| Approve | 23050412 | 1414 days ago | IN | 0 POL | 0.00144447 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AnyChgCoinService
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/**
*Submitted for verification at polygonscan.com on 2021-12-17
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.0;
/**
* @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.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol
pragma solidity ^0.5.0;
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
pragma solidity ^0.5.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.5.0;
/**
* @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) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
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-contracts/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) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message 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.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
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) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message 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.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20Mintable}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
}
}
pragma solidity ^0.5.0;
/*
* The Charg Service Contract
*
* Handles Charg Swap Exchange, Bridge, Services and Feedbacks on Any Blockchain
*
*/
contract AnyChgCoinService is ERC20Detailed, ERC20 {
using SafeMath for uint;
address payable public owner;
/**
* the node main data
*/
struct NodeData {
bool registered;
bool authorized;
/* lat, lon values, multiplied by 10^7 */
int128 latitude;
int128 longitude;
/* main parameters */
string name;
string phone;
string location;
string connector;
string power;
}
/**
* service parameters for the particular node
*/
struct ServiceData {
bool allowed; // service allowed on the node
uint rate; // service rate in coins gwei per second
uint maxTime; // max service time in seconds (0==unlimited)
bool stopable; // return allowed
}
/* service action data */
struct ServiceAction {
uint started;
uint finished;
bool stopable;
address node;
address payer;
uint serviceRate;
uint16 serviceId;
uint8 feedbackRate;
string feedbackText;
}
uint16 public servicesCount = 0;
mapping (uint16 => string) public services; // array of possible services
mapping (address => mapping (bytes32 => string)) public nodeParameters; //node => parametrHash => parameterValue
mapping (address => NodeData) public registeredNodes;
mapping (address => mapping (uint16 => ServiceData)) public nodeService; //node => serviceId => ServiceData
mapping (bytes32 => ServiceAction) public serviceActions; // paymentHash => ServiceAction
/**
* minimal CHG balance for start service on the node
*/
uint public minCoinsBalance = 500 * 10 ** 18; // 500 CHG default
/**
* Exchange Service Structures
*/
struct Order {
address user;
uint amountGive;
uint amountGet;
uint expire;
}
mapping (bytes32 => Order) public sellOrders;
mapping (bytes32 => Order) public buyOrders;
/* balance of exchange nodes */
mapping (address => uint) public ethBalance; // the other blochchain native token
/* sevice events */
event NodeRegistered ( address indexed addr, int128 indexed latitude, int128 indexed longitude, string name, string location, string phone, string connector, string power );
event DepositEther ( address sender, uint EthValue, uint EthBalance );
event WithdrawEther ( address sender, uint EthValue, uint EthBalance );
event DepositCoins ( address sender, uint CoinValue, uint CoinBalance );
event WithdrawCoins ( address sender, uint CoinValue, uint CoinBalance );
event SellOrder ( bytes32 indexed orderHash, uint amountGive, uint amountGet, uint expire, address seller );
event BuyOrder ( bytes32 indexed orderHash, uint amountGive, uint amountGet, uint expire, address buyer );
event CancelSellOrder ( bytes32 indexed orderHash );
event CancelBuyOrder ( bytes32 indexed orderHash );
event Sell ( bytes32 indexed orderHash, uint amountGive, uint amountGet, address seller );
event Buy ( bytes32 indexed orderHash, uint amountGive, uint amountGet, address buyer );
event ServiceOn ( address indexed nodeAddr, address indexed payer, bytes32 paymentHash, uint16 serviceId, uint chgAmount, uint serviceTime, uint finished);
event ServiceOff ( address indexed nodeAddr, address indexed payer, bytes32 paymentHash, uint16 serviceId, uint chgAmount, uint serviceTime, uint finished);
event Feedback ( address indexed nodeAddr, address indexed payer, bytes32 paymentHash, uint16 serviceId, uint8 feedbackRate);
/*
* Bridge
*/
uint64 public networkId; // this network id
uint256 public minBridgeValue = 1 * 10**18; // min. bridge transfer value (1 CHG)
uint256 public maxBridgeValue = 10000 * 10**18; // max. bridge transfer value (10000 CHG)
struct Chain {
bool active;
string networkName;
}
mapping (uint64 => Chain) public chains; // networkId => Chain
mapping (bytes32 => bool) public swaps;
mapping (address => bool) public isValidator;
event Swap(address indexed from, address indexed to, uint256 value, uint64 chainId, bytes32 chainHash);
event Validated(bytes32 indexed txHash, address indexed account, uint256 value);
/**
* constructor
*/
constructor(uint64 _networkId) ERC20Detailed("Charg Coin", "CHG", 18) public {
owner = msg.sender;
isValidator[owner] = true;
networkId = _networkId;
/* initial services */
services[servicesCount] = 'Charg';
servicesCount++;
services[servicesCount] = 'Parking';
servicesCount++;
services[servicesCount] = 'Internet';
servicesCount++;
/* initial chains */
chains[1] = Chain(true, 'Ethereum Mainnet');
chains[56] = Chain(true, 'Binance Smart Chain');
chains[128] = Chain(true, 'Heco Chain');
chains[137] = Chain(true, 'Polygon Network');
chains[32659] = Chain(true, 'Fusion Network');
chains[42161] = Chain(true, 'Arbitrum One Chain');
chains[22177] = Chain(true, 'Native Charg Network');
}
function destroy() public {
require(msg.sender == owner, "only owner");
selfdestruct(owner);
}
function() external payable {
//revert();
depositEther();
}
function setOwner(address payable newOwner) public {
require(msg.sender == owner, "only owner");
owner = newOwner;
}
/* add a new service to the smart contract */
function addService( string memory name ) public {
require(msg.sender == owner, "only owner");
services[servicesCount] = name;
servicesCount++;
}
/* register a new node */
function registerNode( int128 latitude, int128 longitude, string memory name, string memory location, string memory phone, string memory connector, string memory power, uint chargRate, uint parkRate, uint inetRate) public {
// check if node is not registered, or authorized for update
require ( !registeredNodes[msg.sender].registered || registeredNodes[msg.sender].authorized, "already registered" );
// check minimal coins balance
require (balanceOf(msg.sender) >= minCoinsBalance);
if (!registeredNodes[msg.sender].registered) {
registeredNodes[msg.sender].registered = true;
registeredNodes[msg.sender].authorized = true;
}
registeredNodes[msg.sender].latitude = latitude;
registeredNodes[msg.sender].longitude = longitude;
registeredNodes[msg.sender].name = name;
registeredNodes[msg.sender].location = location;
registeredNodes[msg.sender].phone = phone;
registeredNodes[msg.sender].connector = connector;
registeredNodes[msg.sender].power = power;
if (chargRate > 0) {
nodeService[msg.sender][0].allowed = true;
nodeService[msg.sender][0].stopable = true;
nodeService[msg.sender][0].maxTime = 0;
nodeService[msg.sender][0].rate = chargRate;
}
if (parkRate > 0) {
nodeService[msg.sender][1].allowed = true;
nodeService[msg.sender][1].stopable = true;
nodeService[msg.sender][1].maxTime = 0;
nodeService[msg.sender][1].rate = parkRate;
}
if (inetRate > 0) {
nodeService[msg.sender][2].allowed = true;
nodeService[msg.sender][2].stopable = true;
nodeService[msg.sender][2].maxTime = 0;
nodeService[msg.sender][2].rate = inetRate;
}
emit NodeRegistered( msg.sender, latitude, longitude, name, location, phone, connector, power );
}
/* setup the node parameters */
function setNodeParameter(bytes32 parameterHash, string memory parameterValue) public {
require (registeredNodes[msg.sender].registered, "not registered");
nodeParameters[msg.sender][parameterHash] = parameterValue;
}
/* setup the node services */
function setupNodeService( uint16 serviceId, bool allowed, bool stopable, uint rate, uint maxTime ) public {
require (registeredNodes[msg.sender].registered, "not registered");
require (serviceId < servicesCount);
nodeService[msg.sender][serviceId].allowed = allowed;
nodeService[msg.sender][serviceId].stopable = stopable;
nodeService[msg.sender][serviceId].rate = rate;
nodeService[msg.sender][serviceId].maxTime = maxTime;
}
/* change the node authorization */
function modifyNodeAuthorization (address addr, bool authorized) public {
require(msg.sender == owner, "only owner");
require (registeredNodes[msg.sender].registered, "not registered");
registeredNodes[addr].authorized = authorized;
}
/* set minimal coins balance for the node */
function setMinCoinsBalance(uint _newValue) public {
require(msg.sender == owner, "only owner");
minCoinsBalance = _newValue;
}
function setMinBridgeValue(uint256 _value) public {
require(msg.sender == owner, "only owner");
require (_value > 0, "wrong value");
minBridgeValue = _value;
}
function setMaxBridgeValue(uint256 _value) public {
require(msg.sender == owner, "only owner");
require (_value > 0, "wrong value");
maxBridgeValue = _value;
}
function addValidator( address _validator ) public {
require(msg.sender == owner, "only owner");
isValidator[_validator] = true;
}
function removeValidator( address _validator ) public {
require(msg.sender == owner, "only owner");
isValidator[_validator] = false;
}
/* cross-chain parameters */
function setChain(bool _active, uint64 _networkId, string memory _networkName) public {
require(msg.sender == owner, "only owner");
chains[_networkId].active = _active;
chains[_networkId].networkName = _networkName;
}
function startSwapTo(address _to, uint256 _value, uint64 _networkId, bytes32 _chainHash) public {
require(_networkId != networkId, "swap in the same network not allowed");
require(chains[_networkId].active, "swap not allowed");
require(_value >= minBridgeValue && _value <= maxBridgeValue, "wrong value");
_burn(msg.sender, _value);
emit Swap(msg.sender, _to, _value, _networkId, _chainHash);
}
function startSwap(uint256 _value, uint64 _networkId, bytes32 _chainHash) public {
startSwapTo(msg.sender, _value, _networkId, _chainHash);
}
/* bridge transactions validation */
function validate(bytes32 txHash, address account, uint256 value, uint256 fee) public {
require (isValidator[msg.sender], "only validators");
require(!swaps[txHash], "already validated");
_mint(account, value);
if (fee > 0) {
_mint(msg.sender, fee);
}
swaps[txHash] = true;
emit Validated(txHash, account, value);
}
function depositEther() public payable {
ethBalance[msg.sender] = ethBalance[msg.sender].add(msg.value);
emit DepositEther(msg.sender, msg.value, ethBalance[msg.sender]);
}
function withdrawEther(uint amount) public {
require(ethBalance[msg.sender] >= amount);
ethBalance[msg.sender] = ethBalance[msg.sender].sub(amount);
msg.sender.transfer(amount);
emit WithdrawEther(msg.sender, amount, ethBalance[msg.sender]);
}
function buyOrder(uint amountGive, uint amountGet, uint expire) public {
require(amountGive > 0 && amountGet > 0 && amountGive <= ethBalance[msg.sender]);
bytes32 orderHash = sha256(abi.encodePacked(msg.sender, amountGive, amountGet, block.number));
buyOrders[orderHash] = Order(msg.sender, amountGive, amountGet, expire);
emit BuyOrder(orderHash, amountGive, amountGet, expire, msg.sender);
}
function sellOrder(uint amountGive, uint amountGet, uint expire) public {
require(amountGive > 0 && amountGet > 0 && amountGive <= balanceOf(msg.sender));
bytes32 orderHash = sha256(abi.encodePacked(msg.sender, amountGive, amountGet, block.number));
sellOrders[orderHash] = Order(msg.sender, amountGive, amountGet, expire);
emit SellOrder(orderHash, amountGive, amountGet, expire, msg.sender);
}
function cancelBuyOrder(bytes32 orderHash) public {
require( buyOrders[orderHash].expire > now && buyOrders[orderHash].user == msg.sender);
buyOrders[orderHash].expire = 0;
emit CancelBuyOrder(orderHash);
}
function cancelSellOrder(bytes32 orderHash) public {
require( sellOrders[orderHash].expire > now && sellOrders[orderHash].user == msg.sender);
sellOrders[orderHash].expire = 0;
emit CancelSellOrder(orderHash);
}
function buy(bytes32 orderHash) public payable {
require(sellOrders[orderHash].user != msg.sender, "order owner");
require(msg.value > 0 && now <= sellOrders[orderHash].expire && 0 <= sellOrders[orderHash].amountGet.sub(msg.value));
uint amountGet; //in CHG
if (msg.value == sellOrders[orderHash].amountGet) {
amountGet = sellOrders[orderHash].amountGive;
require(0 <= balanceOf(sellOrders[orderHash].user).sub(amountGet));
sellOrders[orderHash].amountGive = 0;
sellOrders[orderHash].amountGet = 0;
sellOrders[orderHash].expire = 0;
} else {
amountGet = sellOrders[orderHash].amountGive.mul(msg.value).div(sellOrders[orderHash].amountGet);
require(0 <= balanceOf(sellOrders[orderHash].user).sub(amountGet) && 0 <= sellOrders[orderHash].amountGive.sub(amountGet));
sellOrders[orderHash].amountGive = sellOrders[orderHash].amountGive.sub(amountGet);
sellOrders[orderHash].amountGet = sellOrders[orderHash].amountGet.sub(msg.value);
}
_transfer(sellOrders[orderHash].user, msg.sender, amountGet);
ethBalance[sellOrders[orderHash].user] = ethBalance[sellOrders[orderHash].user].add(msg.value);
emit Buy(orderHash, sellOrders[orderHash].amountGive, sellOrders[orderHash].amountGet, msg.sender);
}
function sell(bytes32 orderHash, uint amountGive) public {
require(buyOrders[orderHash].user != msg.sender, "order owner");
require(amountGive > 0 && now <= buyOrders[orderHash].expire && 0 <= balanceOf(msg.sender).sub(amountGive) && 0 <= buyOrders[orderHash].amountGet.sub(amountGive));
uint amountGet;
if (amountGive == buyOrders[orderHash].amountGet) {
amountGet = buyOrders[orderHash].amountGive;
require(0 <= ethBalance[buyOrders[orderHash].user].sub(amountGet));
buyOrders[orderHash].amountGive = 0;
buyOrders[orderHash].amountGet = 0;
buyOrders[orderHash].expire = 0;
} else {
amountGet = buyOrders[orderHash].amountGive.mul(amountGive) / buyOrders[orderHash].amountGet;
require(0 <= ethBalance[buyOrders[orderHash].user].sub(amountGet) && 0 <= buyOrders[orderHash].amountGive.sub(amountGet));
buyOrders[orderHash].amountGive = buyOrders[orderHash].amountGive.sub(amountGet);
buyOrders[orderHash].amountGet = buyOrders[orderHash].amountGet.sub(amountGive);
}
ethBalance[buyOrders[orderHash].user] = ethBalance[buyOrders[orderHash].user].sub(amountGet);
_transfer(msg.sender, buyOrders[orderHash].user, amountGive);
msg.sender.transfer(amountGet);
emit Sell(orderHash, buyOrders[orderHash].amountGive, buyOrders[orderHash].amountGet, msg.sender);
}
/*
* Method serviceOn
* Make an exchange and start service on the node
*
* nodeAddr - the node which provides service
* serviceId - id of the started service, described in Node Service Contract (0-charge, 1-parking, 2-internet ...)
* orderHash - hash of exchange sell order
* paymentHash - hash of the payment transaction
*/
function serviceOn(address nodeAddr, uint16 serviceId, uint time, bytes32 paymentHash, bytes32 orderHash) public payable returns (bytes32) {
require ( registeredNodes[nodeAddr].authorized // the node is registered and authorized
&& (balanceOf(nodeAddr) >= minCoinsBalance) // minimal balance of the node
&& nodeService[nodeAddr][serviceId].allowed ); // sevice is allowed on the node
if (paymentHash == 0)
paymentHash = keccak256(abi.encodePacked(msg.sender, now, serviceId));
require (serviceActions[paymentHash].started == 0, 'payment served');
uint chgAmount;
if (msg.value > 0) {
// payment in ether, exchange required
require(now <= sellOrders[orderHash].expire && 0 <= sellOrders[orderHash].amountGet.sub(msg.value));
if (msg.value == sellOrders[orderHash].amountGet) {
chgAmount = sellOrders[orderHash].amountGive;
require(0 <= balanceOf(sellOrders[orderHash].user).sub(chgAmount));
sellOrders[orderHash].amountGive = 0;
sellOrders[orderHash].amountGet = 0;
sellOrders[orderHash].expire = 0;
} else {
chgAmount = sellOrders[orderHash].amountGive.mul(msg.value) / sellOrders[orderHash].amountGet;
require(0 <= balanceOf(sellOrders[orderHash].user).sub(chgAmount) && 0 <= sellOrders[orderHash].amountGive.sub(chgAmount));
sellOrders[orderHash].amountGive = sellOrders[orderHash].amountGive.sub(chgAmount);
sellOrders[orderHash].amountGet = sellOrders[orderHash].amountGet.sub(msg.value);
}
// time will be calculated by amount
time = chgAmount.div(nodeService[nodeAddr][serviceId].rate);
require ( time <= nodeService[nodeAddr][serviceId].maxTime || nodeService[nodeAddr][serviceId].maxTime == 0);
if (sellOrders[orderHash].user != nodeAddr) {
// no need to transfer if it is the same account
_transfer(sellOrders[orderHash].user, nodeAddr, chgAmount);
}
ethBalance[sellOrders[orderHash].user] = ethBalance[sellOrders[orderHash].user].add(msg.value);
emit Buy(orderHash, sellOrders[orderHash].amountGive, sellOrders[orderHash].amountGet, msg.sender);
} else {
// CHG payment
require ( time <= nodeService[nodeAddr][serviceId].maxTime || nodeService[nodeAddr][serviceId].maxTime == 0);
chgAmount = time * nodeService[nodeAddr][serviceId].rate;
require( chgAmount > 0 && 0 <= balanceOf(msg.sender).sub(chgAmount) );
_transfer(msg.sender, nodeAddr, chgAmount);
}
serviceActions[paymentHash].node = nodeAddr;
serviceActions[paymentHash].payer = msg.sender; //will allow feedback for the sender
serviceActions[paymentHash].serviceRate = nodeService[nodeAddr][serviceId].rate;
serviceActions[paymentHash].serviceId = serviceId;
serviceActions[paymentHash].started = now;
serviceActions[paymentHash].finished = now + time;
serviceActions[paymentHash].stopable = nodeService[nodeAddr][serviceId].stopable;
emit ServiceOn (nodeAddr, msg.sender, paymentHash, serviceId, chgAmount, time, now + time);
return paymentHash;
}
/*
* Method serviceOff
* Turn off the service on the node
*/
function serviceOff( bytes32 paymentHash ) public {
require(serviceActions[paymentHash].started > 0
&& serviceActions[paymentHash].stopable
&& now < serviceActions[paymentHash].finished
&& serviceActions[paymentHash].payer == msg.sender);
uint time = serviceActions[paymentHash].finished.sub(now);
uint chgAmount = time.mul(serviceActions[paymentHash].serviceRate);
serviceActions[paymentHash].finished = now;
_transfer(serviceActions[paymentHash].node, msg.sender, chgAmount);
emit ServiceOff (serviceActions[paymentHash].node, msg.sender, paymentHash, serviceActions[paymentHash].serviceId, chgAmount, time, now);
}
/*
* Method sendFeedback
* Store feedback of the successful payment transaction in the smart contract
* paymentHash - hash of the payment transaction
* rate - the node raiting 1..10 points
*/
function sendFeedback(bytes32 paymentHash, uint8 feedbackRate, string memory feedbackText) public {
require(serviceActions[paymentHash].payer == msg.sender && serviceActions[paymentHash].feedbackRate == 0);
serviceActions[paymentHash].feedbackRate = feedbackRate > 10 ? 10 : (feedbackRate < 1 ? 1 : feedbackRate);
serviceActions[paymentHash].feedbackText = feedbackText;
emit Feedback (serviceActions[paymentHash].node, msg.sender, paymentHash, serviceActions[paymentHash].serviceId, serviceActions[paymentHash].feedbackRate);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint64","name":"_networkId","type":"uint64"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"Buy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expire","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"BuyOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"CancelBuyOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"CancelSellOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"CoinValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"CoinBalance","type":"uint256"}],"name":"DepositCoins","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"EthValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"EthBalance","type":"uint256"}],"name":"DepositEther","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nodeAddr","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"indexed":false,"internalType":"uint16","name":"serviceId","type":"uint16"},{"indexed":false,"internalType":"uint8","name":"feedbackRate","type":"uint8"}],"name":"Feedback","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":true,"internalType":"int128","name":"latitude","type":"int128"},{"indexed":true,"internalType":"int128","name":"longitude","type":"int128"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"location","type":"string"},{"indexed":false,"internalType":"string","name":"phone","type":"string"},{"indexed":false,"internalType":"string","name":"connector","type":"string"},{"indexed":false,"internalType":"string","name":"power","type":"string"}],"name":"NodeRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"}],"name":"Sell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expire","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"}],"name":"SellOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nodeAddr","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"indexed":false,"internalType":"uint16","name":"serviceId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"chgAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"serviceTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"finished","type":"uint256"}],"name":"ServiceOff","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nodeAddr","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"indexed":false,"internalType":"uint16","name":"serviceId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"chgAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"serviceTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"finished","type":"uint256"}],"name":"ServiceOn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"chainId","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"chainHash","type":"bytes32"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Validated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"CoinValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"CoinBalance","type":"uint256"}],"name":"WithdrawCoins","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"EthValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"EthBalance","type":"uint256"}],"name":"WithdrawEther","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"addService","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_validator","type":"address"}],"name":"addValidator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"name":"buyOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"buyOrders","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"cancelBuyOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"cancelSellOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"chains","outputs":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"string","name":"networkName","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"depositEther","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"destroy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ethBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxBridgeValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minBridgeValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minCoinsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"authorized","type":"bool"}],"name":"modifyNodeAuthorization","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"networkId","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nodeParameters","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"nodeService","outputs":[{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"maxTime","type":"uint256"},{"internalType":"bool","name":"stopable","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"int128","name":"latitude","type":"int128"},{"internalType":"int128","name":"longitude","type":"int128"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"phone","type":"string"},{"internalType":"string","name":"connector","type":"string"},{"internalType":"string","name":"power","type":"string"},{"internalType":"uint256","name":"chargRate","type":"uint256"},{"internalType":"uint256","name":"parkRate","type":"uint256"},{"internalType":"uint256","name":"inetRate","type":"uint256"}],"name":"registerNode","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"registeredNodes","outputs":[{"internalType":"bool","name":"registered","type":"bool"},{"internalType":"bool","name":"authorized","type":"bool"},{"internalType":"int128","name":"latitude","type":"int128"},{"internalType":"int128","name":"longitude","type":"int128"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"phone","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"connector","type":"string"},{"internalType":"string","name":"power","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_validator","type":"address"}],"name":"removeValidator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"internalType":"uint256","name":"amountGive","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"name":"sellOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"sellOrders","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"internalType":"uint8","name":"feedbackRate","type":"uint8"},{"internalType":"string","name":"feedbackText","type":"string"}],"name":"sendFeedback","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"serviceActions","outputs":[{"internalType":"uint256","name":"started","type":"uint256"},{"internalType":"uint256","name":"finished","type":"uint256"},{"internalType":"bool","name":"stopable","type":"bool"},{"internalType":"address","name":"node","type":"address"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"uint256","name":"serviceRate","type":"uint256"},{"internalType":"uint16","name":"serviceId","type":"uint16"},{"internalType":"uint8","name":"feedbackRate","type":"uint8"},{"internalType":"string","name":"feedbackText","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"paymentHash","type":"bytes32"}],"name":"serviceOff","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"nodeAddr","type":"address"},{"internalType":"uint16","name":"serviceId","type":"uint16"},{"internalType":"uint256","name":"time","type":"uint256"},{"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"serviceOn","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"services","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"servicesCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_active","type":"bool"},{"internalType":"uint64","name":"_networkId","type":"uint64"},{"internalType":"string","name":"_networkName","type":"string"}],"name":"setChain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxBridgeValue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMinBridgeValue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMinCoinsBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"parameterHash","type":"bytes32"},{"internalType":"string","name":"parameterValue","type":"string"}],"name":"setNodeParameter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"serviceId","type":"uint16"},{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"bool","name":"stopable","type":"bool"},{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"maxTime","type":"uint256"}],"name":"setupNodeService","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint64","name":"_networkId","type":"uint64"},{"internalType":"bytes32","name":"_chainHash","type":"bytes32"}],"name":"startSwap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint64","name":"_networkId","type":"uint64"},{"internalType":"bytes32","name":"_chainHash","type":"bytes32"}],"name":"startSwapTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"swaps","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"txHash","type":"bytes32"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"validate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526006805461ffff60a01b19169055681b1ae4d6e2ef500000600c55670de0b6b3a764000060115569021e19e0c9bab24000006012553480156200004657600080fd5b506040516200550538038062005505833981810160405260208110156200006c57600080fd5b5051604080518082018252600a81526921b430b9339021b7b4b760b11b60208281019182528351808501909452600384526243484760e81b908401528151919291601291620000bf916000919062000782565b508151620000d590600190602085019062000782565b506002805460ff90921660ff19928316179055600680546001600160a01b03191633178082556001600160a01b031660009081526015602090815260408083208054909516600117909455601080546001600160401b0389166001600160401b0319909116179055835180850185526005815264436861726760d81b818301908152935461ffff600160a01b909104168352600790915292902091516200018194509192509062000782565b506006805461ffff60a01b198116600160a01b9182900461ffff9081166001018116830291909117928390556040805180820182526007808252665061726b696e6760c81b60208084019182529590960490931660009081529290935290209051620001ee929062000782565b506006805461ffff60a01b198116600160a01b9182900461ffff9081166001018116830291909117928390556040805180820182526008815267125b9d195c9b995d60c21b6020808301918252949095049092166000908152600790935290912090516200025d929062000782565b506006805461ffff60a01b198116600160a01b9182900461ffff9081166001908101909116909202179091556040805180820182528281528151808301909252601082526f115d1a195c995d5b4813585a5b9b995d60821b6020808401919091528082019283526000939093526013835280517f4155c2f711f2cdd34f8262ab8fb9b7020a700fe7b6948222152f7670d1fdf34d805460ff191691151591909117815591518051919362000337927f4155c2f711f2cdd34f8262ab8fb9b7020a700fe7b6948222152f7670d1fdf34e929091019062000782565b505060408051808201825260018152815180830190925260138083527f42696e616e636520536d61727420436861696e00000000000000000000000000602080850191909152808301938452603860005290815281517f09460ed60a673f58710e3e4cefe6df95348b1ee9826e816a4c820f640e29f547805460ff191691151591909117815592518051929450620003f6927f09460ed60a673f58710e3e4cefe6df95348b1ee9826e816a4c820f640e29f54892919091019062000782565b5050604080518082018252600181528151808301909252600a8252692432b1b79021b430b4b760b11b60208084019190915280820192835260806000526013815281517f34f4fb864dea81db535e231c68808bc169c907d62a67f9a4dcf355b93f767105805460ff191691151591909117815592518051929450620004a2927f34f4fb864dea81db535e231c68808bc169c907d62a67f9a4dcf355b93f76710692919091019062000782565b5050604080518082018252600181528151808301909252600f82526e506f6c79676f6e204e6574776f726b60881b60208084019190915280820192835260896000526013815281517f79e001859316821c1d4b0c00fdbfc7d0c054349a34654b9d25f162029b8d3452805460ff19169115159190911781559251805192945062000553927f79e001859316821c1d4b0c00fdbfc7d0c054349a34654b9d25f162029b8d345392919091019062000782565b5050604080518082018252600181528151808301909252600e82526d467573696f6e204e6574776f726b60901b602080840191909152808201928352617f936000526013815281517f7dad4343668e12854d8a738302ef4fdefdaed7724d9bffd20ccbccd4b3950790805460ff19169115159190911781559251805192945062000604927f7dad4343668e12854d8a738302ef4fdefdaed7724d9bffd20ccbccd4b395079192919091019062000782565b5050604080518082018252600181528151808301909252601282527120b93134ba393ab69027b7329021b430b4b760711b60208084019190915280820192835261a4b16000526013815281517f773840ff55c5cced11f48c08d0722f5b9b4cc79dff7b01ae196cb9f63d8622be805460ff191691151591909117815592518051929450620006b9927f773840ff55c5cced11f48c08d0722f5b9b4cc79dff7b01ae196cb9f63d8622bf92919091019062000782565b5050604080518082018252600181528151808301909252601482527f4e6174697665204368617267204e6574776f726b0000000000000000000000006020808401919091528082019283526156a16000526013815281517e2d876541809881f2aadd80abee60e76eb51c54d5c770c999c241fd1c6336a0805460ff19169115159190911781559251805192945062000777927e2d876541809881f2aadd80abee60e76eb51c54d5c770c999c241fd1c6336a192919091019062000782565b509050505062000827565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007c557805160ff1916838001178555620007f5565b82800160010185558215620007f5579182015b82811115620007f5578251825591602001919060010190620007d8565b506200080392915062000807565b5090565b6200082491905b808211156200080357600081556001016200080e565b90565b614cce80620008376000396000f3fe60806040526004361061034f5760003560e01c806366b39fc3116101c6578063a9059cbb116100f7578063e176713111610095578063eeba014c1161006f578063eeba014c146115e9578063efe6bfa314611622578063f645e00a1461164c578063facd743b146116915761034f565b8063e176713114611549578063e24f96501461157f578063eb84e7f2146115bf5761034f565b8063d3d1fb48116100d1578063d3d1fb4814611253578063d8f3790f146114c6578063d9c69136146114f9578063dd62ed3e1461150e5761034f565b8063a9059cbb14611133578063ada8bcdc1461116c578063b592de3a146112235761034f565b8063939d1e961161016457806398ea5fca1161013e57806398ea5fca1461034f5780639c9a106114611014578063a457c2d714611031578063a5a657b41461106a5761034f565b8063939d1e9614610fab57806395d89b4114610fd55780639631fb3c14610fea5761034f565b806383197ef0116101a057806383197ef014610e8257806388fcd19414610e975780638da5cb5b14610f485780639025e64c14610f795761034f565b806366b39fc314610e1057806370a0823114610e255780637be1bf1814610e585761034f565b806339509351116102a05780634827f1d21161023e5780635a6c858c116102185780635a6c858c146109bd5780635bd92d9c14610a245780635e14a2f714610a7357806364dc691114610b2b5761034f565b80634827f1d2146109055780634d238c8e146109405780634dc238a6146109735761034f565b80633bed33ce1161027a5780633bed33ce146107865780633e3ac461146107b057806340a141ff146108a857806347e4b7be146108db5761034f565b806339509351146106635780633a168c821461069c5780633a5c2ccf146106c65761034f565b806313af40351161030d578063223a3075116102e7578063223a3075146105aa57806323b872dd146105bf57806328c662a614610602578063313ce567146106385761034f565b806313af40351461050e578063178706b51461054157806318160ddd146105955761034f565b8062dd69f014610359578063041d40c1146103fc57806306fdde031461045657806307d2f5db1461046b578063095ea7b3146104955780630bf08787146104e2575b6103576116c4565b005b34801561036557600080fd5b506103876004803603602081101561037c57600080fd5b503561ffff16611739565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103c15781810151838201526020016103a9565b50505050905090810190601f1680156103ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040857600080fd5b506104266004803603602081101561041f57600080fd5b50356117d4565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b34801561046257600080fd5b50610387611805565b34801561047757600080fd5b506103576004803603602081101561048e57600080fd5b503561189c565b3480156104a157600080fd5b506104ce600480360360408110156104b857600080fd5b506001600160a01b038135169060200135611a16565b604080519115158252519081900360200190f35b3480156104ee57600080fd5b506104f7611a34565b6040805161ffff9092168252519081900360200190f35b34801561051a57600080fd5b506103576004803603602081101561053157600080fd5b50356001600160a01b0316611a45565b610583600480360360a081101561055757600080fd5b506001600160a01b038135169061ffff6020820135169060408101359060608101359060800135611ab3565b60408051918252519081900360200190f35b3480156105a157600080fd5b50610583612209565b3480156105b657600080fd5b5061058361220f565b3480156105cb57600080fd5b506104ce600480360360608110156105e257600080fd5b506001600160a01b03813581169160208101359091169060400135612215565b34801561060e57600080fd5b506103576004803603606081101561062557600080fd5b50803590602081013590604001356122a2565b34801561064457600080fd5b5061064d612458565b6040805160ff9092168252519081900360200190f35b34801561066f57600080fd5b506104ce6004803603604081101561068657600080fd5b506001600160a01b038135169060200135612461565b3480156106a857600080fd5b50610357600480360360208110156106bf57600080fd5b50356124b5565b3480156106d257600080fd5b50610357600480360360608110156106e957600080fd5b81359160ff60208201351691810190606081016040820135600160201b81111561071257600080fd5b82018360208201111561072457600080fd5b803590602001918460018302840111600160201b8311171561074557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612532945050505050565b34801561079257600080fd5b50610357600480360360208110156107a957600080fd5b5035612666565b3480156107bc57600080fd5b506107da600480360360208110156107d357600080fd5b5035612732565b604080518a815260208082018b9052891515928201929092526001600160a01b0380891660608301528716608082015260a0810186905261ffff851660c082015260ff841660e0820152610120610100820181815284519183019190915283519192909161014084019185019080838360005b8381101561086557818101518382015260200161084d565b50505050905090810190601f1680156108925780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390f35b3480156108b457600080fd5b50610357600480360360208110156108cb57600080fd5b50356001600160a01b0316612820565b3480156108e757600080fd5b50610357600480360360208110156108fe57600080fd5b503561288d565b34801561091157600080fd5b506103576004803603604081101561092857600080fd5b506001600160a01b03813516906020013515156128de565b34801561094c57600080fd5b506103576004803603602081101561096357600080fd5b50356001600160a01b03166129b0565b34801561097f57600080fd5b50610357600480360360a081101561099657600080fd5b5061ffff813516906020810135151590604081013515159060608101359060800135612a20565b3480156109c957600080fd5b506109fa600480360360408110156109e057600080fd5b5080356001600160a01b0316906020013561ffff16612ae4565b60408051941515855260208501939093528383019190915215156060830152519081900360800190f35b348015610a3057600080fd5b5061035760048036036080811015610a4757600080fd5b506001600160a01b038135169060208101359067ffffffffffffffff6040820135169060600135612b1b565b348015610a7f57600080fd5b5061035760048036036040811015610a9657600080fd5b81359190810190604081016020820135600160201b811115610ab757600080fd5b820183602082011115610ac957600080fd5b803590602001918460018302840111600160201b83111715610aea57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612c83945050505050565b348015610b3757600080fd5b506103576004803603610140811015610b4f57600080fd5b8135600f90810b92602081013590910b91810190606081016040820135600160201b811115610b7d57600080fd5b820183602082011115610b8f57600080fd5b803590602001918460018302840111600160201b83111715610bb057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610c0257600080fd5b820183602082011115610c1457600080fd5b803590602001918460018302840111600160201b83111715610c3557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610c8757600080fd5b820183602082011115610c9957600080fd5b803590602001918460018302840111600160201b83111715610cba57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610d0c57600080fd5b820183602082011115610d1e57600080fd5b803590602001918460018302840111600160201b83111715610d3f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610d9157600080fd5b820183602082011115610da357600080fd5b803590602001918460018302840111600160201b83111715610dc457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505082359350505060208101359060400135612d05565b348015610e1c57600080fd5b50610583613221565b348015610e3157600080fd5b5061058360048036036020811015610e4857600080fd5b50356001600160a01b0316613227565b348015610e6457600080fd5b5061035760048036036020811015610e7b57600080fd5b5035613242565b348015610e8e57600080fd5b506103576132bf565b348015610ea357600080fd5b5061035760048036036020811015610eba57600080fd5b810190602081018135600160201b811115610ed457600080fd5b820183602082011115610ee657600080fd5b803590602001918460018302840111600160201b83111715610f0757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613319945050505050565b348015610f5457600080fd5b50610f5d6133bc565b604080516001600160a01b039092168252519081900360200190f35b348015610f8557600080fd5b50610f8e6133cb565b6040805167ffffffffffffffff9092168252519081900360200190f35b348015610fb757600080fd5b5061035760048036036020811015610fce57600080fd5b50356133db565b348015610fe157600080fd5b5061038761346f565b348015610ff657600080fd5b506103576004803603602081101561100d57600080fd5b50356134cf565b6103576004803603602081101561102a57600080fd5b5035613563565b34801561103d57600080fd5b506104ce6004803603604081101561105457600080fd5b506001600160a01b03813516906020013561383b565b34801561107657600080fd5b506103576004803603606081101561108d57600080fd5b813515159167ffffffffffffffff60208201351691810190606081016040820135600160201b8111156110bf57600080fd5b8201836020820111156110d157600080fd5b803590602001918460018302840111600160201b831117156110f257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506138a9945050505050565b34801561113f57600080fd5b506104ce6004803603604081101561115657600080fd5b506001600160a01b038135169060200135613937565b34801561117857600080fd5b506111a06004803603602081101561118f57600080fd5b503567ffffffffffffffff1661394b565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b838110156111e75781810151838201526020016111cf565b50505050905090810190601f1680156112145780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b34801561122f57600080fd5b506103576004803603604081101561124657600080fd5b50803590602001356139f9565b34801561125f57600080fd5b506112866004803603602081101561127657600080fd5b50356001600160a01b0316613d2f565b604051808a1515151581526020018915151515815260200188600f0b600f0b815260200187600f0b600f0b8152602001806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b838110156112ff5781810151838201526020016112e7565b50505050905090810190601f16801561132c5780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b8381101561135f578181015183820152602001611347565b50505050905090810190601f16801561138c5780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b838110156113bf5781810151838201526020016113a7565b50505050905090810190601f1680156113ec5780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b8381101561141f578181015183820152602001611407565b50505050905090810190601f16801561144c5780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b8381101561147f578181015183820152602001611467565b50505050905090810190601f1680156114ac5780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b3480156114d257600080fd5b50610583600480360360208110156114e957600080fd5b50356001600160a01b0316614002565b34801561150557600080fd5b50610583614014565b34801561151a57600080fd5b506105836004803603604081101561153157600080fd5b506001600160a01b038135811691602001351661401a565b34801561155557600080fd5b506103576004803603606081101561156c57600080fd5b5080359060208101359060400135614045565b34801561158b57600080fd5b50610357600480360360608110156115a257600080fd5b5080359067ffffffffffffffff6020820135169060400135614202565b3480156115cb57600080fd5b506104ce600480360360208110156115e257600080fd5b503561420e565b3480156115f557600080fd5b506103876004803603604081101561160c57600080fd5b506001600160a01b038135169060200135614223565b34801561162e57600080fd5b506104266004803603602081101561164557600080fd5b5035614294565b34801561165857600080fd5b506103576004803603608081101561166f57600080fd5b508035906001600160a01b0360208201351690604081013590606001356142c5565b34801561169d57600080fd5b506104ce600480360360208110156116b457600080fd5b50356001600160a01b03166143ed565b336000908152600f60205260409020546116e4903463ffffffff61440216565b336000818152600f6020908152604091829020849055815192835234908301528181019290925290517f20d6bac8359f33d79581bfd2b0457cb189fda6d90fed287ddc9f2ba3eb124b679181900360600190a1565b60076020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156117cc5780601f106117a1576101008083540402835291602001916117cc565b820191906000526020600020905b8154815290600101906020018083116117af57829003601f168201915b505050505081565b600e6020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118915780601f1061186657610100808354040283529160200191611891565b820191906000526020600020905b81548152906001019060200180831161187457829003601f168201915b505050505090505b90565b6000818152600b6020526040902054158015906118ca57506000818152600b602052604090206002015460ff165b80156118e657506000818152600b602052604090206001015442105b801561190b57506000818152600b60205260409020600301546001600160a01b031633145b61191457600080fd5b6000818152600b6020526040812060010154611936904263ffffffff61446316565b6000838152600b60205260408120600401549192509061195d90839063ffffffff6144a516565b6000848152600b60205260409020426001820155600201549091506119919061010090046001600160a01b031633836144fe565b6000838152600b60209081526040918290206002810154600590910154835187815261ffff90911692810192909252818301849052606082018590524260808301529151339261010090046001600160a01b0316917f5926c04550435944a3cff7b8d7e66ec761c5b42702f9cd25448b08b329d6146a919081900360a00190a3505050565b6000611a2a611a2361465c565b8484614660565b5060015b92915050565b600654600160a01b900461ffff1681565b6006546001600160a01b03163314611a91576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038516600090815260096020526040812054610100900460ff168015611aea5750600c54611ae787613227565b10155b8015611b1d57506001600160a01b0386166000908152600a6020908152604080832061ffff8916845290915290205460ff165b611b2657600080fd5b82611b7057604080513360601b6020808301919091524260348301526001600160f01b031960f089901b166054830152825160368184030181526056909201909252805191012092505b6000838152600b602052604090205415611bc2576040805162461bcd60e51b815260206004820152600e60248201526d1c185e5b595b9d081cd95c9d995960921b604482015290519081900360640190fd5b60003415611f0b576000838152600d60205260409020600301544211801590611c0c57506000838152600d6020526040902060020154611c08903463ffffffff61446316565b5060015b611c1557600080fd5b6000838152600d6020526040902060020154341415611c8e57506000828152600d6020526040902060018101549054611c68908290611c5c906001600160a01b0316613227565b9063ffffffff61446316565b506000838152600d60205260408120600181018290556002810182905560030155611d6d565b6000838152600d602052604090206002810154600190910154611cb7903463ffffffff6144a516565b81611cbe57fe5b6000858152600d60205260409020549190049150611cea908290611c5c906001600160a01b0316613227565b506000838152600d6020526040902060010154611d0d908263ffffffff61446316565b506000838152600d6020526040902060010154611d30908263ffffffff61446316565b6000848152600d60205260409020600181019190915560020154611d5a903463ffffffff61446316565b6000848152600d60205260409020600201555b6001600160a01b0387166000908152600a6020908152604080832061ffff8a168452909152902060010154611da990829063ffffffff61474c16565b6001600160a01b0388166000908152600a6020908152604080832061ffff8b16845290915290206002015490955085111580611e0d57506001600160a01b0387166000908152600a6020908152604080832061ffff8a168452909152902060020154155b611e1657600080fd5b6000838152600d60205260409020546001600160a01b03888116911614611e5a576000838152600d6020526040902054611e5a906001600160a01b031688836144fe565b6000838152600d60209081526040808320546001600160a01b03168352600f909152902054611e8f903463ffffffff61440216565b6000848152600d6020818152604080842080546001600160a01b03168552600f83528185209590955592879052908152600183015460029093015482519384529083015233828201525184917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a2611fd2565b6001600160a01b0387166000908152600a6020908152604080832061ffff8a16845290915290206002015485111580611f6c57506001600160a01b0387166000908152600a6020908152604080832061ffff8a168452909152902060020154155b611f7557600080fd5b506001600160a01b0386166000908152600a6020908152604080832061ffff8916845290915290206001015484028015801590611fbe5750611fba81611c5c33613227565b5060015b611fc757600080fd5b611fd23388836144fe565b86600b600086815260200190815260200160002060020160016101000a8154816001600160a01b0302191690836001600160a01b0316021790555033600b600086815260200190815260200160002060030160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a6000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff16815260200190815260200160002060010154600b60008681526020019081526020016000206004018190555085600b600086815260200190815260200160002060050160006101000a81548161ffff021916908361ffff16021790555042600b600086815260200190815260200160002060000181905550844201600b600086815260200190815260200160002060010181905550600a6000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff16815260200190815260200160002060030160009054906101000a900460ff16600b600086815260200190815260200160002060020160006101000a81548160ff021916908315150217905550336001600160a01b0316876001600160a01b03167f242732fca01031d9527a13da4ce5300b6a91221762fb09130d882bb2fb3776958689858a8b4201604051808681526020018561ffff1661ffff1681526020018481526020018381526020018281526020019550505050505060405180910390a3509195945050505050565b60055490565b600c5481565b60006122228484846144fe565b6122988461222e61465c565b61229385604051806060016040528060288152602001614be3602891396001600160a01b038a1660009081526004602052604081209061226c61465c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61478e16565b614660565b5060019392505050565b6000831180156122b25750600082115b80156122c657506122c233613227565b8311155b6122cf57600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b6020831061234f5780518252601f199092019160209182019101612330565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa15801561238e573d6000803e3d6000fd5b5050506040513d60208110156123a357600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a8152600d8652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fd89e9faf039295fc2c02f1928e7acb13b2aec5fa30a626fbae77862ba17b80d2929181900390910190a250505050565b60025460ff1690565b6000611a2a61246e61465c565b84612293856004600061247f61465c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61440216565b6000818152600e6020526040902060030154421080156124eb57506000818152600e60205260409020546001600160a01b031633145b6124f457600080fd5b6000818152600e60205260408082206003018290555182917f38a0d19b45a221cfdc2aa42b006176bae0dd00d6f6ea7ee52420bbe2130d695591a250565b6000838152600b60205260409020600301546001600160a01b03163314801561257357506000838152600b602052604090206005015462010000900460ff16155b61257c57600080fd5b600a8260ff16116125a05760018260ff1610612598578161259b565b60015b6125a3565b600a5b6000848152600b6020908152604090912060058101805460ff94909416620100000262ff0000199094169390931790925582516125e69260060191840190614a78565b506000838152600b60209081526040918290206002810154600590910154835187815261ffff82169381019390935260ff6201000090910416828401529151339261010090046001600160a01b0316917f7ec723eb9c23b9ef5bfc5d0c883b72ef5436f0e9c8355f5f9ef486f842f84400919081900360600190a3505050565b336000908152600f602052604090205481111561268257600080fd5b336000908152600f60205260409020546126a2908263ffffffff61446316565b336000818152600f6020526040808220939093559151909183156108fc02918491818181858888f193505050501580156126e0573d6000803e3d6000fd5b50336000818152600f602090815260409182902054825193845290830184905282820152517ffd68f27313402be52d2f46b6d391b7b8657000a3062853a4be930f1281072a019181900360600190a150565b600b6020908152600091825260409182902080546001808301546002808501546003860154600487015460058801546006890180548c51610100998216158a026000190190911696909604601f81018c90048c0287018c01909c528b8652979a959960ff8086169a989095046001600160a01b0390811699941697929661ffff831696620100009093049095169492939192908301828280156128165780601f106127eb57610100808354040283529160200191612816565b820191906000526020600020905b8154815290600101906020018083116127f957829003601f168201915b5050505050905089565b6006546001600160a01b0316331461286c576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601560205260409020805460ff19169055565b6006546001600160a01b031633146128d9576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600c55565b6006546001600160a01b0316331461292a576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1661297f576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b6001600160a01b03909116600090815260096020526040902080549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146129fc576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601560205260409020805460ff19166001179055565b3360009081526009602052604090205460ff16612a75576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b60065461ffff600160a01b909104811690861610612a9257600080fd5b336000908152600a6020908152604080832061ffff98909816835296905294909420805493151560ff199485161781556003810180549315159390941692909217909255600181019190915560020155565b600a602090815260009283526040808420909152908252902080546001820154600283015460039093015460ff9283169391921684565b60105467ffffffffffffffff83811691161415612b695760405162461bcd60e51b8152600401808060200182810382526024815260200180614b786024913960400191505060405180910390fd5b67ffffffffffffffff821660009081526013602052604090205460ff16612bca576040805162461bcd60e51b815260206004820152601060248201526f1cddd85c081b9bdd08185b1b1bddd95960821b604482015290519081900360640190fd5b6011548310158015612bde57506012548311155b612c1d576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b612c273384614825565b6040805184815267ffffffffffffffff8416602082015280820183905290516001600160a01b0386169133917ffce127096b7d03c093e140f94dd36ada34f04493a7985f5ec4ee82953671fbbf9181900360600190a350505050565b3360009081526009602052604090205460ff16612cd8576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b33600090815260086020908152604080832085845282529091208251612d0092840190614a78565b505050565b3360009081526009602052604090205460ff161580612d38575033600090815260096020526040902054610100900460ff165b612d7e576040805162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481c9959da5cdd195c995960721b604482015290519081900360640190fd5b600c54612d8a33613227565b1015612d9557600080fd5b3360009081526009602052604090205460ff16612dd257336000908152600960205260409020805461ff001960ff19909116600117166101001790555b336000908152600960209081526040909120805471ffffffffffffffffffffffffffffffff00001916620100006fffffffffffffffffffffffffffffffff600f8f810b8216929092029290921783556001830180546fffffffffffffffffffffffffffffffff1916918e900b9092161790558951612e58926002909201918b0190614a78565b503360009081526009602090815260409091208851612e7f926004909201918a0190614a78565b503360009081526009602090815260409091208751612ea692600390920191890190614a78565b503360009081526009602090815260409091208651612ecd92600590920191880190614a78565b503360009081526009602090815260409091208551612ef492600690920191870190614a78565b508215612f3e57336000908152600a6020908152604080832083805290915281208054600160ff199182168117835560038301805490921681179091556002820192909255018390555b8115612f8557336000908152600a60209081526040808320600180855292528220805460ff1990811683178255600382018054909116831790556002810192909255018290555b8015612fce57336000908152600a602090815260408083206002808552925282208054600160ff1991821681178355600383018054909216811790915591810192909255018190555b88600f0b8a600f0b336001600160a01b03167f4358612de1db3fac41bf308f1e8453877e9201e32ddac447293c953f09f8f1df8b8b8b8b8b60405180806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b8381101561305357818101518382015260200161303b565b50505050905090810190601f1680156130805780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b838110156130b357818101518382015260200161309b565b50505050905090810190601f1680156130e05780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b838110156131135781810151838201526020016130fb565b50505050905090810190601f1680156131405780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b8381101561317357818101518382015260200161315b565b50505050905090810190601f1680156131a05780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b838110156131d35781810151838201526020016131bb565b50505050905090810190601f1680156132005780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390a450505050505050505050565b60115481565b6001600160a01b031660009081526003602052604090205490565b6000818152600d60205260409020600301544210801561327857506000818152600d60205260409020546001600160a01b031633145b61328157600080fd5b6000818152600d60205260408082206003018290555182917f93435e95cf48edd190f1db3db5e688dd39443ad1bf8d550d5ed7e72e58163aba91a250565b6006546001600160a01b0316331461330b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6006546001600160a01b0316ff5b6006546001600160a01b03163314613365576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600654600160a01b900461ffff166000908152600760209081526040909120825161339292840190614a78565b505060068054600161ffff600160a01b808404821692909201160261ffff60a01b19909116179055565b6006546001600160a01b031681565b60105467ffffffffffffffff1681565b6006546001600160a01b03163314613427576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6000811161346a576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b601255565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156118915780601f1061186657610100808354040283529160200191611891565b6006546001600160a01b0316331461351b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6000811161355e576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b601155565b6000818152600d60205260409020546001600160a01b03163314156135bd576040805162461bcd60e51b815260206004820152600b60248201526a37b93232b91037bbb732b960a91b604482015290519081900360640190fd5b6000341180156135de57506000818152600d60205260409020600301544211155b801561360b57506000818152600d6020526040902060020154613607903463ffffffff61446316565b5060015b61361457600080fd5b6000818152600d602052604081206002015434141561368157506000818152600d602052604090206001810154905461365b908290611c5c906001600160a01b0316613227565b506000828152600d60205260408120600181018290556002810182905560030155613768565b6000828152600d6020526040902060028101546001909101546136bb91906136af903463ffffffff6144a516565b9063ffffffff61474c16565b6000838152600d60205260409020549091506136e5908290611c5c906001600160a01b0316613227565b506000828152600d6020526040902060010154613708908263ffffffff61446316565b506000828152600d602052604090206001015461372b908263ffffffff61446316565b6000838152600d60205260409020600181019190915560020154613755903463ffffffff61446316565b6000838152600d60205260409020600201555b6000828152600d602052604090205461378b906001600160a01b031633836144fe565b6000828152600d60209081526040808320546001600160a01b03168352600f9091529020546137c0903463ffffffff61440216565b6000838152600d6020818152604080842080546001600160a01b03168552600f83528185209590955592869052908152600183015460029093015482519384529083015233828201525183917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a25050565b6000611a2a61384861465c565b8461229385604051806060016040528060258152602001614c75602591396004600061387261465c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61478e16565b6006546001600160a01b031633146138f5576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b67ffffffffffffffff82166000908152601360209081526040909120805460ff1916851515178155825161393192600190920191840190614a78565b50505050565b6000611a2a61394461465c565b84846144fe565b6013602090815260009182526040918290208054600180830180548651600261010094831615949094026000190190911692909204601f810186900486028301860190965285825260ff9092169492939092908301828280156139ef5780601f106139c4576101008083540402835291602001916139ef565b820191906000526020600020905b8154815290600101906020018083116139d257829003601f168201915b5050505050905082565b6000828152600e60205260409020546001600160a01b0316331415613a53576040805162461bcd60e51b815260206004820152600b60248201526a37b93232b91037bbb732b960a91b604482015290519081900360640190fd5b600081118015613a7457506000828152600e60205260409020600301544211155b8015613a8c5750613a8881611c5c33613227565b5060015b8015613ab957506000828152600e6020526040902060020154613ab5908263ffffffff61446316565b5060015b613ac257600080fd5b6000828152600e6020526040812060020154821415613b3e57506000828152600e60209081526040808320600181015490546001600160a01b03168452600f90925290912054613b18908263ffffffff61446316565b506000838152600e60205260408120600181018290556002810182905560030155613c2b565b6000838152600e602052604090206002810154600190910154613b67908463ffffffff6144a516565b81613b6e57fe5b6000858152600e60209081526040808320546001600160a01b03168352600f9091529020549190049150613ba8908263ffffffff61446316565b506000838152600e6020526040902060010154613bcb908263ffffffff61446316565b506000838152600e6020526040902060010154613bee908263ffffffff61446316565b6000848152600e60205260409020600181019190915560020154613c18908363ffffffff61446316565b6000848152600e60205260409020600201555b6000838152600e60209081526040808320546001600160a01b03168352600f909152902054613c60908263ffffffff61446316565b6000848152600e6020818152604080842080546001600160a01b039081168652600f84529185209590955592879052529054613c9f91339116846144fe565b604051339082156108fc029083906000818181858888f19350505050158015613ccc573d6000803e3d6000fd5b506000838152600e602090815260409182902060018101546002909101548351918252918101919091523381830152905184917fa09da31f0dedf4f47ea2c75c2b8ea5a79dcaba97b19def8b20dee51b858299ce919081900360600190a2505050565b60096020908152600091825260409182902080546001808301546002808501805488516101009582161586026000190190911692909204601f810188900488028301880190985287825260ff80861698948604169662010000909504600f90810b9693900b9492939192909190830182828015613ded5780601f10613dc257610100808354040283529160200191613ded565b820191906000526020600020905b815481529060010190602001808311613dd057829003601f168201915b5050505060038301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613e7d5780601f10613e5257610100808354040283529160200191613e7d565b820191906000526020600020905b815481529060010190602001808311613e6057829003601f168201915b5050505060048301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613f0d5780601f10613ee257610100808354040283529160200191613f0d565b820191906000526020600020905b815481529060010190602001808311613ef057829003601f168201915b5050505060058301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613f9d5780601f10613f7257610100808354040283529160200191613f9d565b820191906000526020600020905b815481529060010190602001808311613f8057829003601f168201915b5050505060068301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156128165780601f106127eb57610100808354040283529160200191612816565b600f6020526000908152604090205481565b60125481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000831180156140555750600082115b80156140705750336000908152600f60205260409020548311155b61407957600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b602083106140f95780518252601f1990920191602091820191016140da565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa158015614138573d6000803e3d6000fd5b5050506040513d602081101561414d57600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a8152600e8652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fbb9a49b3eaad9d44fab2b413310c966abfc78aa799ac78c63344a7b6f044699e929181900390910190a250505050565b612d0033848484612b1b565b60146020526000908152604090205460ff1681565b60086020908152600092835260408084208252918352918190208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156117cc5780601f106117a1576101008083540402835291602001916117cc565b600d6020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b3360009081526015602052604090205460ff1661431b576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c792076616c696461746f727360881b604482015290519081900360640190fd5b60008481526014602052604090205460ff1615614373576040805162461bcd60e51b8152602060048201526011602482015270185b1c9958591e481d985b1a59185d1959607a1b604482015290519081900360640190fd5b61437d8383614921565b801561438d5761438d3382614921565b600084815260146020908152604091829020805460ff19166001179055815184815291516001600160a01b0386169287927f5d055511d7e4022440c8e910e60ab31f4deeeb5a6de996beef688e13651b87ad92918290030190a350505050565b60156020526000908152604090205460ff1681565b60008282018381101561445c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061445c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061478e565b6000826144b457506000611a2e565b828202828482816144c157fe5b041461445c5760405162461bcd60e51b8152600401808060200182810382526021815260200180614bc26021913960400191505060405180910390fd5b6001600160a01b0383166145435760405162461bcd60e51b8152600401808060200182810382526025815260200180614c2c6025913960400191505060405180910390fd5b6001600160a01b0382166145885760405162461bcd60e51b8152600401808060200182810382526023815260200180614b116023913960400191505060405180910390fd5b6145cb81604051806060016040528060268152602001614b9c602691396001600160a01b038616600090815260036020526040902054919063ffffffff61478e16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054614600908263ffffffff61440216565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3390565b6001600160a01b0383166146a55760405162461bcd60e51b8152600401808060200182810382526024815260200180614c516024913960400191505060405180910390fd5b6001600160a01b0382166146ea5760405162461bcd60e51b8152600401808060200182810382526022815260200180614b566022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061445c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a13565b6000818484111561481d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156147e25781810151838201526020016147ca565b50505050905090810190601f16801561480f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821661486a5760405162461bcd60e51b8152600401808060200182810382526021815260200180614c0b6021913960400191505060405180910390fd5b6148ad81604051806060016040528060228152602001614b34602291396001600160a01b038516600090815260036020526040902054919063ffffffff61478e16565b6001600160a01b0383166000908152600360205260409020556005546148d9908263ffffffff61446316565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03821661497c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60055461498f908263ffffffff61440216565b6005556001600160a01b0382166000908152600360205260409020546149bb908263ffffffff61440216565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183614a625760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156147e25781810151838201526020016147ca565b506000838581614a6e57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ab957805160ff1916838001178555614ae6565b82800160010185558215614ae6579182015b82811115614ae6578251825591602001919060010190614acb565b50614af2929150614af6565b5090565b61189991905b80821115614af25760008155600101614afc56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573737377617020696e207468652073616d65206e6574776f726b206e6f7420616c6c6f77656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820034a844363cbe0e703261953838d4c202802e1def69cc34a62eac3afa053c8e964736f6c634300051100320000000000000000000000000000000000000000000000000000000000000089
Deployed Bytecode
0x60806040526004361061034f5760003560e01c806366b39fc3116101c6578063a9059cbb116100f7578063e176713111610095578063eeba014c1161006f578063eeba014c146115e9578063efe6bfa314611622578063f645e00a1461164c578063facd743b146116915761034f565b8063e176713114611549578063e24f96501461157f578063eb84e7f2146115bf5761034f565b8063d3d1fb48116100d1578063d3d1fb4814611253578063d8f3790f146114c6578063d9c69136146114f9578063dd62ed3e1461150e5761034f565b8063a9059cbb14611133578063ada8bcdc1461116c578063b592de3a146112235761034f565b8063939d1e961161016457806398ea5fca1161013e57806398ea5fca1461034f5780639c9a106114611014578063a457c2d714611031578063a5a657b41461106a5761034f565b8063939d1e9614610fab57806395d89b4114610fd55780639631fb3c14610fea5761034f565b806383197ef0116101a057806383197ef014610e8257806388fcd19414610e975780638da5cb5b14610f485780639025e64c14610f795761034f565b806366b39fc314610e1057806370a0823114610e255780637be1bf1814610e585761034f565b806339509351116102a05780634827f1d21161023e5780635a6c858c116102185780635a6c858c146109bd5780635bd92d9c14610a245780635e14a2f714610a7357806364dc691114610b2b5761034f565b80634827f1d2146109055780634d238c8e146109405780634dc238a6146109735761034f565b80633bed33ce1161027a5780633bed33ce146107865780633e3ac461146107b057806340a141ff146108a857806347e4b7be146108db5761034f565b806339509351146106635780633a168c821461069c5780633a5c2ccf146106c65761034f565b806313af40351161030d578063223a3075116102e7578063223a3075146105aa57806323b872dd146105bf57806328c662a614610602578063313ce567146106385761034f565b806313af40351461050e578063178706b51461054157806318160ddd146105955761034f565b8062dd69f014610359578063041d40c1146103fc57806306fdde031461045657806307d2f5db1461046b578063095ea7b3146104955780630bf08787146104e2575b6103576116c4565b005b34801561036557600080fd5b506103876004803603602081101561037c57600080fd5b503561ffff16611739565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103c15781810151838201526020016103a9565b50505050905090810190601f1680156103ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040857600080fd5b506104266004803603602081101561041f57600080fd5b50356117d4565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b34801561046257600080fd5b50610387611805565b34801561047757600080fd5b506103576004803603602081101561048e57600080fd5b503561189c565b3480156104a157600080fd5b506104ce600480360360408110156104b857600080fd5b506001600160a01b038135169060200135611a16565b604080519115158252519081900360200190f35b3480156104ee57600080fd5b506104f7611a34565b6040805161ffff9092168252519081900360200190f35b34801561051a57600080fd5b506103576004803603602081101561053157600080fd5b50356001600160a01b0316611a45565b610583600480360360a081101561055757600080fd5b506001600160a01b038135169061ffff6020820135169060408101359060608101359060800135611ab3565b60408051918252519081900360200190f35b3480156105a157600080fd5b50610583612209565b3480156105b657600080fd5b5061058361220f565b3480156105cb57600080fd5b506104ce600480360360608110156105e257600080fd5b506001600160a01b03813581169160208101359091169060400135612215565b34801561060e57600080fd5b506103576004803603606081101561062557600080fd5b50803590602081013590604001356122a2565b34801561064457600080fd5b5061064d612458565b6040805160ff9092168252519081900360200190f35b34801561066f57600080fd5b506104ce6004803603604081101561068657600080fd5b506001600160a01b038135169060200135612461565b3480156106a857600080fd5b50610357600480360360208110156106bf57600080fd5b50356124b5565b3480156106d257600080fd5b50610357600480360360608110156106e957600080fd5b81359160ff60208201351691810190606081016040820135600160201b81111561071257600080fd5b82018360208201111561072457600080fd5b803590602001918460018302840111600160201b8311171561074557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612532945050505050565b34801561079257600080fd5b50610357600480360360208110156107a957600080fd5b5035612666565b3480156107bc57600080fd5b506107da600480360360208110156107d357600080fd5b5035612732565b604080518a815260208082018b9052891515928201929092526001600160a01b0380891660608301528716608082015260a0810186905261ffff851660c082015260ff841660e0820152610120610100820181815284519183019190915283519192909161014084019185019080838360005b8381101561086557818101518382015260200161084d565b50505050905090810190601f1680156108925780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390f35b3480156108b457600080fd5b50610357600480360360208110156108cb57600080fd5b50356001600160a01b0316612820565b3480156108e757600080fd5b50610357600480360360208110156108fe57600080fd5b503561288d565b34801561091157600080fd5b506103576004803603604081101561092857600080fd5b506001600160a01b03813516906020013515156128de565b34801561094c57600080fd5b506103576004803603602081101561096357600080fd5b50356001600160a01b03166129b0565b34801561097f57600080fd5b50610357600480360360a081101561099657600080fd5b5061ffff813516906020810135151590604081013515159060608101359060800135612a20565b3480156109c957600080fd5b506109fa600480360360408110156109e057600080fd5b5080356001600160a01b0316906020013561ffff16612ae4565b60408051941515855260208501939093528383019190915215156060830152519081900360800190f35b348015610a3057600080fd5b5061035760048036036080811015610a4757600080fd5b506001600160a01b038135169060208101359067ffffffffffffffff6040820135169060600135612b1b565b348015610a7f57600080fd5b5061035760048036036040811015610a9657600080fd5b81359190810190604081016020820135600160201b811115610ab757600080fd5b820183602082011115610ac957600080fd5b803590602001918460018302840111600160201b83111715610aea57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612c83945050505050565b348015610b3757600080fd5b506103576004803603610140811015610b4f57600080fd5b8135600f90810b92602081013590910b91810190606081016040820135600160201b811115610b7d57600080fd5b820183602082011115610b8f57600080fd5b803590602001918460018302840111600160201b83111715610bb057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610c0257600080fd5b820183602082011115610c1457600080fd5b803590602001918460018302840111600160201b83111715610c3557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610c8757600080fd5b820183602082011115610c9957600080fd5b803590602001918460018302840111600160201b83111715610cba57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610d0c57600080fd5b820183602082011115610d1e57600080fd5b803590602001918460018302840111600160201b83111715610d3f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610d9157600080fd5b820183602082011115610da357600080fd5b803590602001918460018302840111600160201b83111715610dc457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505082359350505060208101359060400135612d05565b348015610e1c57600080fd5b50610583613221565b348015610e3157600080fd5b5061058360048036036020811015610e4857600080fd5b50356001600160a01b0316613227565b348015610e6457600080fd5b5061035760048036036020811015610e7b57600080fd5b5035613242565b348015610e8e57600080fd5b506103576132bf565b348015610ea357600080fd5b5061035760048036036020811015610eba57600080fd5b810190602081018135600160201b811115610ed457600080fd5b820183602082011115610ee657600080fd5b803590602001918460018302840111600160201b83111715610f0757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613319945050505050565b348015610f5457600080fd5b50610f5d6133bc565b604080516001600160a01b039092168252519081900360200190f35b348015610f8557600080fd5b50610f8e6133cb565b6040805167ffffffffffffffff9092168252519081900360200190f35b348015610fb757600080fd5b5061035760048036036020811015610fce57600080fd5b50356133db565b348015610fe157600080fd5b5061038761346f565b348015610ff657600080fd5b506103576004803603602081101561100d57600080fd5b50356134cf565b6103576004803603602081101561102a57600080fd5b5035613563565b34801561103d57600080fd5b506104ce6004803603604081101561105457600080fd5b506001600160a01b03813516906020013561383b565b34801561107657600080fd5b506103576004803603606081101561108d57600080fd5b813515159167ffffffffffffffff60208201351691810190606081016040820135600160201b8111156110bf57600080fd5b8201836020820111156110d157600080fd5b803590602001918460018302840111600160201b831117156110f257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506138a9945050505050565b34801561113f57600080fd5b506104ce6004803603604081101561115657600080fd5b506001600160a01b038135169060200135613937565b34801561117857600080fd5b506111a06004803603602081101561118f57600080fd5b503567ffffffffffffffff1661394b565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b838110156111e75781810151838201526020016111cf565b50505050905090810190601f1680156112145780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b34801561122f57600080fd5b506103576004803603604081101561124657600080fd5b50803590602001356139f9565b34801561125f57600080fd5b506112866004803603602081101561127657600080fd5b50356001600160a01b0316613d2f565b604051808a1515151581526020018915151515815260200188600f0b600f0b815260200187600f0b600f0b8152602001806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b838110156112ff5781810151838201526020016112e7565b50505050905090810190601f16801561132c5780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b8381101561135f578181015183820152602001611347565b50505050905090810190601f16801561138c5780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b838110156113bf5781810151838201526020016113a7565b50505050905090810190601f1680156113ec5780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b8381101561141f578181015183820152602001611407565b50505050905090810190601f16801561144c5780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b8381101561147f578181015183820152602001611467565b50505050905090810190601f1680156114ac5780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b3480156114d257600080fd5b50610583600480360360208110156114e957600080fd5b50356001600160a01b0316614002565b34801561150557600080fd5b50610583614014565b34801561151a57600080fd5b506105836004803603604081101561153157600080fd5b506001600160a01b038135811691602001351661401a565b34801561155557600080fd5b506103576004803603606081101561156c57600080fd5b5080359060208101359060400135614045565b34801561158b57600080fd5b50610357600480360360608110156115a257600080fd5b5080359067ffffffffffffffff6020820135169060400135614202565b3480156115cb57600080fd5b506104ce600480360360208110156115e257600080fd5b503561420e565b3480156115f557600080fd5b506103876004803603604081101561160c57600080fd5b506001600160a01b038135169060200135614223565b34801561162e57600080fd5b506104266004803603602081101561164557600080fd5b5035614294565b34801561165857600080fd5b506103576004803603608081101561166f57600080fd5b508035906001600160a01b0360208201351690604081013590606001356142c5565b34801561169d57600080fd5b506104ce600480360360208110156116b457600080fd5b50356001600160a01b03166143ed565b336000908152600f60205260409020546116e4903463ffffffff61440216565b336000818152600f6020908152604091829020849055815192835234908301528181019290925290517f20d6bac8359f33d79581bfd2b0457cb189fda6d90fed287ddc9f2ba3eb124b679181900360600190a1565b60076020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156117cc5780601f106117a1576101008083540402835291602001916117cc565b820191906000526020600020905b8154815290600101906020018083116117af57829003601f168201915b505050505081565b600e6020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118915780601f1061186657610100808354040283529160200191611891565b820191906000526020600020905b81548152906001019060200180831161187457829003601f168201915b505050505090505b90565b6000818152600b6020526040902054158015906118ca57506000818152600b602052604090206002015460ff165b80156118e657506000818152600b602052604090206001015442105b801561190b57506000818152600b60205260409020600301546001600160a01b031633145b61191457600080fd5b6000818152600b6020526040812060010154611936904263ffffffff61446316565b6000838152600b60205260408120600401549192509061195d90839063ffffffff6144a516565b6000848152600b60205260409020426001820155600201549091506119919061010090046001600160a01b031633836144fe565b6000838152600b60209081526040918290206002810154600590910154835187815261ffff90911692810192909252818301849052606082018590524260808301529151339261010090046001600160a01b0316917f5926c04550435944a3cff7b8d7e66ec761c5b42702f9cd25448b08b329d6146a919081900360a00190a3505050565b6000611a2a611a2361465c565b8484614660565b5060015b92915050565b600654600160a01b900461ffff1681565b6006546001600160a01b03163314611a91576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038516600090815260096020526040812054610100900460ff168015611aea5750600c54611ae787613227565b10155b8015611b1d57506001600160a01b0386166000908152600a6020908152604080832061ffff8916845290915290205460ff165b611b2657600080fd5b82611b7057604080513360601b6020808301919091524260348301526001600160f01b031960f089901b166054830152825160368184030181526056909201909252805191012092505b6000838152600b602052604090205415611bc2576040805162461bcd60e51b815260206004820152600e60248201526d1c185e5b595b9d081cd95c9d995960921b604482015290519081900360640190fd5b60003415611f0b576000838152600d60205260409020600301544211801590611c0c57506000838152600d6020526040902060020154611c08903463ffffffff61446316565b5060015b611c1557600080fd5b6000838152600d6020526040902060020154341415611c8e57506000828152600d6020526040902060018101549054611c68908290611c5c906001600160a01b0316613227565b9063ffffffff61446316565b506000838152600d60205260408120600181018290556002810182905560030155611d6d565b6000838152600d602052604090206002810154600190910154611cb7903463ffffffff6144a516565b81611cbe57fe5b6000858152600d60205260409020549190049150611cea908290611c5c906001600160a01b0316613227565b506000838152600d6020526040902060010154611d0d908263ffffffff61446316565b506000838152600d6020526040902060010154611d30908263ffffffff61446316565b6000848152600d60205260409020600181019190915560020154611d5a903463ffffffff61446316565b6000848152600d60205260409020600201555b6001600160a01b0387166000908152600a6020908152604080832061ffff8a168452909152902060010154611da990829063ffffffff61474c16565b6001600160a01b0388166000908152600a6020908152604080832061ffff8b16845290915290206002015490955085111580611e0d57506001600160a01b0387166000908152600a6020908152604080832061ffff8a168452909152902060020154155b611e1657600080fd5b6000838152600d60205260409020546001600160a01b03888116911614611e5a576000838152600d6020526040902054611e5a906001600160a01b031688836144fe565b6000838152600d60209081526040808320546001600160a01b03168352600f909152902054611e8f903463ffffffff61440216565b6000848152600d6020818152604080842080546001600160a01b03168552600f83528185209590955592879052908152600183015460029093015482519384529083015233828201525184917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a2611fd2565b6001600160a01b0387166000908152600a6020908152604080832061ffff8a16845290915290206002015485111580611f6c57506001600160a01b0387166000908152600a6020908152604080832061ffff8a168452909152902060020154155b611f7557600080fd5b506001600160a01b0386166000908152600a6020908152604080832061ffff8916845290915290206001015484028015801590611fbe5750611fba81611c5c33613227565b5060015b611fc757600080fd5b611fd23388836144fe565b86600b600086815260200190815260200160002060020160016101000a8154816001600160a01b0302191690836001600160a01b0316021790555033600b600086815260200190815260200160002060030160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a6000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff16815260200190815260200160002060010154600b60008681526020019081526020016000206004018190555085600b600086815260200190815260200160002060050160006101000a81548161ffff021916908361ffff16021790555042600b600086815260200190815260200160002060000181905550844201600b600086815260200190815260200160002060010181905550600a6000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff16815260200190815260200160002060030160009054906101000a900460ff16600b600086815260200190815260200160002060020160006101000a81548160ff021916908315150217905550336001600160a01b0316876001600160a01b03167f242732fca01031d9527a13da4ce5300b6a91221762fb09130d882bb2fb3776958689858a8b4201604051808681526020018561ffff1661ffff1681526020018481526020018381526020018281526020019550505050505060405180910390a3509195945050505050565b60055490565b600c5481565b60006122228484846144fe565b6122988461222e61465c565b61229385604051806060016040528060288152602001614be3602891396001600160a01b038a1660009081526004602052604081209061226c61465c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61478e16565b614660565b5060019392505050565b6000831180156122b25750600082115b80156122c657506122c233613227565b8311155b6122cf57600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b6020831061234f5780518252601f199092019160209182019101612330565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa15801561238e573d6000803e3d6000fd5b5050506040513d60208110156123a357600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a8152600d8652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fd89e9faf039295fc2c02f1928e7acb13b2aec5fa30a626fbae77862ba17b80d2929181900390910190a250505050565b60025460ff1690565b6000611a2a61246e61465c565b84612293856004600061247f61465c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61440216565b6000818152600e6020526040902060030154421080156124eb57506000818152600e60205260409020546001600160a01b031633145b6124f457600080fd5b6000818152600e60205260408082206003018290555182917f38a0d19b45a221cfdc2aa42b006176bae0dd00d6f6ea7ee52420bbe2130d695591a250565b6000838152600b60205260409020600301546001600160a01b03163314801561257357506000838152600b602052604090206005015462010000900460ff16155b61257c57600080fd5b600a8260ff16116125a05760018260ff1610612598578161259b565b60015b6125a3565b600a5b6000848152600b6020908152604090912060058101805460ff94909416620100000262ff0000199094169390931790925582516125e69260060191840190614a78565b506000838152600b60209081526040918290206002810154600590910154835187815261ffff82169381019390935260ff6201000090910416828401529151339261010090046001600160a01b0316917f7ec723eb9c23b9ef5bfc5d0c883b72ef5436f0e9c8355f5f9ef486f842f84400919081900360600190a3505050565b336000908152600f602052604090205481111561268257600080fd5b336000908152600f60205260409020546126a2908263ffffffff61446316565b336000818152600f6020526040808220939093559151909183156108fc02918491818181858888f193505050501580156126e0573d6000803e3d6000fd5b50336000818152600f602090815260409182902054825193845290830184905282820152517ffd68f27313402be52d2f46b6d391b7b8657000a3062853a4be930f1281072a019181900360600190a150565b600b6020908152600091825260409182902080546001808301546002808501546003860154600487015460058801546006890180548c51610100998216158a026000190190911696909604601f81018c90048c0287018c01909c528b8652979a959960ff8086169a989095046001600160a01b0390811699941697929661ffff831696620100009093049095169492939192908301828280156128165780601f106127eb57610100808354040283529160200191612816565b820191906000526020600020905b8154815290600101906020018083116127f957829003601f168201915b5050505050905089565b6006546001600160a01b0316331461286c576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601560205260409020805460ff19169055565b6006546001600160a01b031633146128d9576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600c55565b6006546001600160a01b0316331461292a576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1661297f576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b6001600160a01b03909116600090815260096020526040902080549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146129fc576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601560205260409020805460ff19166001179055565b3360009081526009602052604090205460ff16612a75576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b60065461ffff600160a01b909104811690861610612a9257600080fd5b336000908152600a6020908152604080832061ffff98909816835296905294909420805493151560ff199485161781556003810180549315159390941692909217909255600181019190915560020155565b600a602090815260009283526040808420909152908252902080546001820154600283015460039093015460ff9283169391921684565b60105467ffffffffffffffff83811691161415612b695760405162461bcd60e51b8152600401808060200182810382526024815260200180614b786024913960400191505060405180910390fd5b67ffffffffffffffff821660009081526013602052604090205460ff16612bca576040805162461bcd60e51b815260206004820152601060248201526f1cddd85c081b9bdd08185b1b1bddd95960821b604482015290519081900360640190fd5b6011548310158015612bde57506012548311155b612c1d576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b612c273384614825565b6040805184815267ffffffffffffffff8416602082015280820183905290516001600160a01b0386169133917ffce127096b7d03c093e140f94dd36ada34f04493a7985f5ec4ee82953671fbbf9181900360600190a350505050565b3360009081526009602052604090205460ff16612cd8576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b33600090815260086020908152604080832085845282529091208251612d0092840190614a78565b505050565b3360009081526009602052604090205460ff161580612d38575033600090815260096020526040902054610100900460ff165b612d7e576040805162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481c9959da5cdd195c995960721b604482015290519081900360640190fd5b600c54612d8a33613227565b1015612d9557600080fd5b3360009081526009602052604090205460ff16612dd257336000908152600960205260409020805461ff001960ff19909116600117166101001790555b336000908152600960209081526040909120805471ffffffffffffffffffffffffffffffff00001916620100006fffffffffffffffffffffffffffffffff600f8f810b8216929092029290921783556001830180546fffffffffffffffffffffffffffffffff1916918e900b9092161790558951612e58926002909201918b0190614a78565b503360009081526009602090815260409091208851612e7f926004909201918a0190614a78565b503360009081526009602090815260409091208751612ea692600390920191890190614a78565b503360009081526009602090815260409091208651612ecd92600590920191880190614a78565b503360009081526009602090815260409091208551612ef492600690920191870190614a78565b508215612f3e57336000908152600a6020908152604080832083805290915281208054600160ff199182168117835560038301805490921681179091556002820192909255018390555b8115612f8557336000908152600a60209081526040808320600180855292528220805460ff1990811683178255600382018054909116831790556002810192909255018290555b8015612fce57336000908152600a602090815260408083206002808552925282208054600160ff1991821681178355600383018054909216811790915591810192909255018190555b88600f0b8a600f0b336001600160a01b03167f4358612de1db3fac41bf308f1e8453877e9201e32ddac447293c953f09f8f1df8b8b8b8b8b60405180806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b8381101561305357818101518382015260200161303b565b50505050905090810190601f1680156130805780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b838110156130b357818101518382015260200161309b565b50505050905090810190601f1680156130e05780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b838110156131135781810151838201526020016130fb565b50505050905090810190601f1680156131405780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b8381101561317357818101518382015260200161315b565b50505050905090810190601f1680156131a05780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b838110156131d35781810151838201526020016131bb565b50505050905090810190601f1680156132005780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390a450505050505050505050565b60115481565b6001600160a01b031660009081526003602052604090205490565b6000818152600d60205260409020600301544210801561327857506000818152600d60205260409020546001600160a01b031633145b61328157600080fd5b6000818152600d60205260408082206003018290555182917f93435e95cf48edd190f1db3db5e688dd39443ad1bf8d550d5ed7e72e58163aba91a250565b6006546001600160a01b0316331461330b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6006546001600160a01b0316ff5b6006546001600160a01b03163314613365576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600654600160a01b900461ffff166000908152600760209081526040909120825161339292840190614a78565b505060068054600161ffff600160a01b808404821692909201160261ffff60a01b19909116179055565b6006546001600160a01b031681565b60105467ffffffffffffffff1681565b6006546001600160a01b03163314613427576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6000811161346a576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b601255565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156118915780601f1061186657610100808354040283529160200191611891565b6006546001600160a01b0316331461351b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6000811161355e576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b601155565b6000818152600d60205260409020546001600160a01b03163314156135bd576040805162461bcd60e51b815260206004820152600b60248201526a37b93232b91037bbb732b960a91b604482015290519081900360640190fd5b6000341180156135de57506000818152600d60205260409020600301544211155b801561360b57506000818152600d6020526040902060020154613607903463ffffffff61446316565b5060015b61361457600080fd5b6000818152600d602052604081206002015434141561368157506000818152600d602052604090206001810154905461365b908290611c5c906001600160a01b0316613227565b506000828152600d60205260408120600181018290556002810182905560030155613768565b6000828152600d6020526040902060028101546001909101546136bb91906136af903463ffffffff6144a516565b9063ffffffff61474c16565b6000838152600d60205260409020549091506136e5908290611c5c906001600160a01b0316613227565b506000828152600d6020526040902060010154613708908263ffffffff61446316565b506000828152600d602052604090206001015461372b908263ffffffff61446316565b6000838152600d60205260409020600181019190915560020154613755903463ffffffff61446316565b6000838152600d60205260409020600201555b6000828152600d602052604090205461378b906001600160a01b031633836144fe565b6000828152600d60209081526040808320546001600160a01b03168352600f9091529020546137c0903463ffffffff61440216565b6000838152600d6020818152604080842080546001600160a01b03168552600f83528185209590955592869052908152600183015460029093015482519384529083015233828201525183917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a25050565b6000611a2a61384861465c565b8461229385604051806060016040528060258152602001614c75602591396004600061387261465c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61478e16565b6006546001600160a01b031633146138f5576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b67ffffffffffffffff82166000908152601360209081526040909120805460ff1916851515178155825161393192600190920191840190614a78565b50505050565b6000611a2a61394461465c565b84846144fe565b6013602090815260009182526040918290208054600180830180548651600261010094831615949094026000190190911692909204601f810186900486028301860190965285825260ff9092169492939092908301828280156139ef5780601f106139c4576101008083540402835291602001916139ef565b820191906000526020600020905b8154815290600101906020018083116139d257829003601f168201915b5050505050905082565b6000828152600e60205260409020546001600160a01b0316331415613a53576040805162461bcd60e51b815260206004820152600b60248201526a37b93232b91037bbb732b960a91b604482015290519081900360640190fd5b600081118015613a7457506000828152600e60205260409020600301544211155b8015613a8c5750613a8881611c5c33613227565b5060015b8015613ab957506000828152600e6020526040902060020154613ab5908263ffffffff61446316565b5060015b613ac257600080fd5b6000828152600e6020526040812060020154821415613b3e57506000828152600e60209081526040808320600181015490546001600160a01b03168452600f90925290912054613b18908263ffffffff61446316565b506000838152600e60205260408120600181018290556002810182905560030155613c2b565b6000838152600e602052604090206002810154600190910154613b67908463ffffffff6144a516565b81613b6e57fe5b6000858152600e60209081526040808320546001600160a01b03168352600f9091529020549190049150613ba8908263ffffffff61446316565b506000838152600e6020526040902060010154613bcb908263ffffffff61446316565b506000838152600e6020526040902060010154613bee908263ffffffff61446316565b6000848152600e60205260409020600181019190915560020154613c18908363ffffffff61446316565b6000848152600e60205260409020600201555b6000838152600e60209081526040808320546001600160a01b03168352600f909152902054613c60908263ffffffff61446316565b6000848152600e6020818152604080842080546001600160a01b039081168652600f84529185209590955592879052529054613c9f91339116846144fe565b604051339082156108fc029083906000818181858888f19350505050158015613ccc573d6000803e3d6000fd5b506000838152600e602090815260409182902060018101546002909101548351918252918101919091523381830152905184917fa09da31f0dedf4f47ea2c75c2b8ea5a79dcaba97b19def8b20dee51b858299ce919081900360600190a2505050565b60096020908152600091825260409182902080546001808301546002808501805488516101009582161586026000190190911692909204601f810188900488028301880190985287825260ff80861698948604169662010000909504600f90810b9693900b9492939192909190830182828015613ded5780601f10613dc257610100808354040283529160200191613ded565b820191906000526020600020905b815481529060010190602001808311613dd057829003601f168201915b5050505060038301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613e7d5780601f10613e5257610100808354040283529160200191613e7d565b820191906000526020600020905b815481529060010190602001808311613e6057829003601f168201915b5050505060048301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613f0d5780601f10613ee257610100808354040283529160200191613f0d565b820191906000526020600020905b815481529060010190602001808311613ef057829003601f168201915b5050505060058301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613f9d5780601f10613f7257610100808354040283529160200191613f9d565b820191906000526020600020905b815481529060010190602001808311613f8057829003601f168201915b5050505060068301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156128165780601f106127eb57610100808354040283529160200191612816565b600f6020526000908152604090205481565b60125481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000831180156140555750600082115b80156140705750336000908152600f60205260409020548311155b61407957600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b602083106140f95780518252601f1990920191602091820191016140da565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa158015614138573d6000803e3d6000fd5b5050506040513d602081101561414d57600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a8152600e8652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fbb9a49b3eaad9d44fab2b413310c966abfc78aa799ac78c63344a7b6f044699e929181900390910190a250505050565b612d0033848484612b1b565b60146020526000908152604090205460ff1681565b60086020908152600092835260408084208252918352918190208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156117cc5780601f106117a1576101008083540402835291602001916117cc565b600d6020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b3360009081526015602052604090205460ff1661431b576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c792076616c696461746f727360881b604482015290519081900360640190fd5b60008481526014602052604090205460ff1615614373576040805162461bcd60e51b8152602060048201526011602482015270185b1c9958591e481d985b1a59185d1959607a1b604482015290519081900360640190fd5b61437d8383614921565b801561438d5761438d3382614921565b600084815260146020908152604091829020805460ff19166001179055815184815291516001600160a01b0386169287927f5d055511d7e4022440c8e910e60ab31f4deeeb5a6de996beef688e13651b87ad92918290030190a350505050565b60156020526000908152604090205460ff1681565b60008282018381101561445c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061445c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061478e565b6000826144b457506000611a2e565b828202828482816144c157fe5b041461445c5760405162461bcd60e51b8152600401808060200182810382526021815260200180614bc26021913960400191505060405180910390fd5b6001600160a01b0383166145435760405162461bcd60e51b8152600401808060200182810382526025815260200180614c2c6025913960400191505060405180910390fd5b6001600160a01b0382166145885760405162461bcd60e51b8152600401808060200182810382526023815260200180614b116023913960400191505060405180910390fd5b6145cb81604051806060016040528060268152602001614b9c602691396001600160a01b038616600090815260036020526040902054919063ffffffff61478e16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054614600908263ffffffff61440216565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3390565b6001600160a01b0383166146a55760405162461bcd60e51b8152600401808060200182810382526024815260200180614c516024913960400191505060405180910390fd5b6001600160a01b0382166146ea5760405162461bcd60e51b8152600401808060200182810382526022815260200180614b566022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061445c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a13565b6000818484111561481d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156147e25781810151838201526020016147ca565b50505050905090810190601f16801561480f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821661486a5760405162461bcd60e51b8152600401808060200182810382526021815260200180614c0b6021913960400191505060405180910390fd5b6148ad81604051806060016040528060228152602001614b34602291396001600160a01b038516600090815260036020526040902054919063ffffffff61478e16565b6001600160a01b0383166000908152600360205260409020556005546148d9908263ffffffff61446316565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03821661497c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60055461498f908263ffffffff61440216565b6005556001600160a01b0382166000908152600360205260409020546149bb908263ffffffff61440216565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183614a625760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156147e25781810151838201526020016147ca565b506000838581614a6e57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ab957805160ff1916838001178555614ae6565b82800160010185558215614ae6579182015b82811115614ae6578251825591602001919060010190614acb565b50614af2929150614af6565b5090565b61189991905b80821115614af25760008155600101614afc56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573737377617020696e207468652073616d65206e6574776f726b206e6f7420616c6c6f77656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820034a844363cbe0e703261953838d4c202802e1def69cc34a62eac3afa053c8e964736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000089
-----Decoded View---------------
Arg [0] : _networkId (uint64): 137
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000089
Deployed Bytecode Sourcemap
19728:20292:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24974:14;:12;:14::i;:::-;19728:20292;20745:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20745:42:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20745:42:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20745:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21552:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21552:43:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21552:43:0;;:::i;:::-;;;;-1:-1:-1;;;;;21552:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3627:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3627:83:0;;;:::i;38550:700::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38550:700:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38550:700:0;;:::i;13823:152::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13823:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13823:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20709:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20709:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25001:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25001:139:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25001:139:0;-1:-1:-1;;;;;25001:139:0;;:::i;35304:3166::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;35304:3166:0;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12844:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12844:91:0;;;:::i;21287:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21287:44:0;;;:::i;14447:304::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14447:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14447:304:0;;;;;;;;;;;;;;;;;:::i;31434:409::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31434:409:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31434:409:0;;;;;;;;;;;;:::i;4479:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4479:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15160:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15160:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15160:210:0;;;;;;;;:::i;31848:218::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31848:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31848:218:0;;:::i;39467:550::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39467:550:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39467:550:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39467:550:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39467:550:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39467:550:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39467:550:0;;-1:-1:-1;39467:550:0;;-1:-1:-1;;;;;39467:550:0:i;30760:257::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30760:257:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30760:257:0;;:::i;21122:56::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21122:56:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21122:56:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21122:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;21122:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29078:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29078:154:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29078:154:0;-1:-1:-1;;;;;29078:154:0;;:::i;28391:141::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28391:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28391:141:0;;:::i;28066:266::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28066:266:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28066:266:0;;;;;;;;;;:::i;28923:150::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28923:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28923:150:0;-1:-1:-1;;;;;28923:150:0;;:::i;27531:485::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27531:485:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;27531:485:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21009:71::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21009:71:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21009:71:0;;-1:-1:-1;;;;;21009:71:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29515:444;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29515:444:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;29515:444:0;;;;;;;;;;;;;;;;;;;;:::i;27248:240::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27248:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27248:240:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;27248:240:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27248:240:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;27248:240:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27248:240:0;;-1:-1:-1;27248:240:0;;-1:-1:-1;;;;;27248:240:0:i;25403:1798::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25403:1798:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;25403:1798:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;25403:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25403:1798:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25403:1798:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25403:1798:0;;;;;;;;-1:-1:-1;25403:1798:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25403:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25403:1798:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25403:1798:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25403:1798:0;;;;;;;;-1:-1:-1;25403:1798:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25403:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25403:1798:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25403:1798:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25403:1798:0;;;;;;;;-1:-1:-1;25403:1798:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25403:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25403:1798:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25403:1798:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25403:1798:0;;;;;;;;-1:-1:-1;25403:1798:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25403:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25403:1798:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25403:1798:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25403:1798:0;;-1:-1:-1;;25403:1798:0;;;-1:-1:-1;;;25403:1798:0;;;;;;;;;:::i;23293:42::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23293:42:0;;;:::i;12998:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12998:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12998:110:0;-1:-1:-1;;;;;12998:110:0;;:::i;32071:223::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32071:223:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32071:223:0;;:::i;24804:117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24804:117:0;;;:::i;25200:162::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25200:162:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25200:162:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;25200:162:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25200:162:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25200:162:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25200:162:0;;-1:-1:-1;25200:162:0;;-1:-1:-1;;;;;25200:162:0:i;19817:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19817:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;19817:28:0;;;;;;;;;;;;;;23244:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23244:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28730:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28730:188:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28730:188:0;;:::i;3829:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3829:87:0;;;:::i;28537:188::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28537:188:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28537:188:0;;:::i;32299:1288::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32299:1288:0;;:::i;15873:261::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15873:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15873:261:0;;;;;;;;:::i;29273:234::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29273:234:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29273:234:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29273:234:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29273:234:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29273:234:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29273:234:0;;-1:-1:-1;29273:234:0;;-1:-1:-1;;;;;29273:234:0:i;13321:158::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13321:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13321:158:0;;;;;;;;:::i;23548:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23548:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23548:39:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;23548:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33592:1354;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33592:1354:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33592:1354:0;;;;;;;:::i;20948:52::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20948:52:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20948:52:0;-1:-1:-1;;;;;20948:52:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21638:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21638:43:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21638:43:0;-1:-1:-1;;;;;21638:43:0;;:::i;23380:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23380:46:0;;;:::i;13542:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13542:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13542:134:0;;;;;;;;;;:::i;31022:407::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31022:407:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31022:407:0;;;;;;;;;;;;:::i;29967:155::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29967:155:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29967:155:0;;;;;;;;;;;;;;:::i;23618:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23618:38:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23618:38:0;;:::i;20827:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20827:70:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20827:70:0;;;;;;;;:::i;21504:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21504:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21504:44:0;;:::i;30174:396::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30174:396:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;30174:396:0;;;-1:-1:-1;;;;;30174:396:0;;;;;;;;;;;;;;;:::i;23665:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23665:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23665:44:0;-1:-1:-1;;;;;23665:44:0;;:::i;30575:180::-;30655:10;30644:22;;;;:10;:22;;;;;;:37;;30671:9;30644:37;:26;:37;:::i;:::-;30630:10;30619:22;;;;:10;:22;;;;;;;;;:62;;;30691:59;;;;;30716:9;30691:59;;;;;;;;;;;;;;;;;;;;;;30575:180::o;20745:42::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20745:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21552:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21552:43:0;;;;;;;:::o;3627:83::-;3697:5;3690:12;;;;;;;;-1:-1:-1;;3690:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3664:13;;3690:12;;3697:5;;3690:12;;3697:5;3690:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3627:83;;:::o;38550:700::-;38653:1;38615:27;;;:14;:27;;;;;:35;:39;;;;:101;;-1:-1:-1;38680:27:0;;;;:14;:27;;;;;:36;;;;;38615:101;:153;;;;-1:-1:-1;38732:27:0;;;;:14;:27;;;;;:36;;;38726:3;:42;38615:153;:211;;;;-1:-1:-1;38779:27:0;;;;:14;:27;;;;;:33;;;-1:-1:-1;;;;;38779:33:0;38816:10;38779:47;38615:211;38607:220;;;;;;38834:9;38846:27;;;:14;:27;;;;;:36;;;:45;;38887:3;38846:45;:40;:45;:::i;:::-;38896:14;38922:27;;;:14;:27;;;;;:39;;;38834:57;;-1:-1:-1;38896:14:0;38913:49;;38834:57;;38913:49;:8;:49;:::i;:::-;38973:27;;;;:14;:27;;;;;39012:3;38973:36;;;:42;39038:32;;;38896:66;;-1:-1:-1;39028:66:0;;39038:32;;;-1:-1:-1;;;;;39038:32:0;39072:10;38896:66;39028:9;:66::i;:::-;39126:27;;;;:14;:27;;;;;;;;;:32;;;;39185:37;;;;;39114:131;;;;;39185:37;;;;39114:131;;;;;;;;;;;;;;;;;;;39241:3;39114:131;;;;;;39160:10;;39126:32;;;-1:-1:-1;;;;;39126:32:0;;39114:131;;;;;;;;;;38550:700;;;:::o;13823:152::-;13889:4;13906:39;13915:12;:10;:12::i;:::-;13929:7;13938:6;13906:8;:39::i;:::-;-1:-1:-1;13963:4:0;13823:152;;;;;:::o;20709:31::-;;;-1:-1:-1;;;20709:31:0;;;;;:::o;25001:139::-;25085:5;;-1:-1:-1;;;;;25085:5:0;25071:10;:19;25063:42;;;;;-1:-1:-1;;;25063:42:0;;;;;;;;;;;;-1:-1:-1;;;25063:42:0;;;;;;;;;;;;;;;25116:5;:16;;-1:-1:-1;;;;;;25116:16:0;-1:-1:-1;;;;;25116:16:0;;;;;;;;;;25001:139::o;35304:3166::-;-1:-1:-1;;;;;35460:25:0;;35434:7;35460:25;;;:15;:25;;;;;:36;;;;;;:135;;;;;35579:15;;35556:19;35566:8;35556:9;:19::i;:::-;:38;;35460:135;:215;;;;-1:-1:-1;;;;;;35635:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;35460:215;35450:227;;;;;;35722:16;35718:95;;35768:44;;;35785:10;35768:44;;;;;;;;;;35797:3;35768:44;;;;-1:-1:-1;;;;;;35768:44:0;;;;;;;;;;;22:32:-1;26:21;;;22:32;6:49;;35768:44:0;;;;;;;35758:55;;;;;;-1:-1:-1;35718:95:0;35829:27;;;;:14;:27;;;;;:35;:40;35820:68;;;;;-1:-1:-1;;;35820:68:0;;;;;;;;;;;;-1:-1:-1;;;35820:68:0;;;;;;;;;;;;;;;35901:14;35924:9;:13;35920:1920;;36012:21;;;;:10;:21;;;;;:28;;;36005:3;:35;;;;:90;;-1:-1:-1;36049:21:0;;;;:10;:21;;;;;:31;;;:46;;36085:9;36049:46;:35;:46;:::i;:::-;-1:-1:-1;36044:51:0;36005:90;35997:99;;;;;;36119:21;;;;:10;:21;;;;;:31;;;36106:9;:44;36102:731;;;-1:-1:-1;36171:21:0;;;;:10;:21;;;;;:32;;;;36236:26;;36226:52;;36171:32;;36226:37;;-1:-1:-1;;;;;36236:26:0;36226:9;:37::i;:::-;:41;:52;:41;:52;:::i;:::-;-1:-1:-1;36321:1:0;36286:21;;;:10;:21;;;;;:32;;;:36;;;36330:31;;;:35;;;36373:28;;:32;36102:731;;;36488:21;;;;:10;:21;;;;;:31;;;;36438:32;;;;;:47;;36475:9;36438:47;:36;:47;:::i;:::-;:81;;;;;36549:21;;;;:10;:21;;;;;:26;36438:81;;;;-1:-1:-1;36539:52:0;;36438:81;;36539:37;;-1:-1:-1;;;;;36549:26:0;36539:9;:37::i;:52::-;-1:-1:-1;36600:21:0;;;;:10;:21;;;;;:32;;;:47;;36637:9;36600:47;:36;:47;:::i;:::-;-1:-1:-1;36690:21:0;;;;:10;:21;;;;;:32;;;:47;;36727:9;36690:47;:36;:47;:::i;:::-;36655:21;;;;:10;:21;;;;;:32;;;:82;;;;36779:31;;;:46;;36815:9;36779:46;:35;:46;:::i;:::-;36745:21;;;;:10;:21;;;;;:31;;:80;36102:731;-1:-1:-1;;;;;36900:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:37;;;36886:52;;:9;;:52;:13;:52;:::i;:::-;-1:-1:-1;;;;;36962:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;36879:59;;-1:-1:-1;36954:48:0;;;;:97;;-1:-1:-1;;;;;;37006:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;:45;36954:97;36944:108;;;;;;37073:21;;;;:10;:21;;;;;:26;-1:-1:-1;;;;;37073:38:0;;;:26;;:38;37069:203;;37208:21;;;;:10;:21;;;;;:26;37198:58;;-1:-1:-1;;;;;37208:26:0;37236:8;37246:9;37198;:58::i;:::-;37327:38;37338:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;37338:26:0;37327:38;;:10;:38;;;;;;:53;;37370:9;37327:53;:42;:53;:::i;:::-;37286:38;37297:21;;;:10;:21;;;;;;;;:26;;-1:-1:-1;;;;;37297:26:0;37286:38;;:10;:38;;;;;:94;;;;37406:21;;;;;;;37297:26;37406:32;;;37440:31;;;;;37391:93;;;;;;;;;37473:10;37391:93;;;;;37308:9;;37391:93;;;;;;;;;;35920:1920;;;-1:-1:-1;;;;;37550:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;37542:48;;;;:97;;-1:-1:-1;;;;;;37594:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;:45;37542:97;37532:108;;;;;;-1:-1:-1;;;;;;37665:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:37;;;37658:44;;37717:13;;;;;:58;;;37739:36;37765:9;37739:21;37749:10;37739:9;:21::i;:36::-;-1:-1:-1;37734:41:0;37717:58;37708:69;;;;;;37792:42;37802:10;37814:8;37824:9;37792;:42::i;:::-;37887:8;37852:14;:27;37867:11;37852:27;;;;;;;;;;;:32;;;:43;;;;;-1:-1:-1;;;;;37852:43:0;;;;;-1:-1:-1;;;;;37852:43:0;;;;;;37943:10;37907:14;:27;37922:11;37907:27;;;;;;;;;;;:33;;;:46;;;;;-1:-1:-1;;;;;37907:46:0;;;;;-1:-1:-1;;;;;37907:46:0;;;;;;38043:11;:21;38055:8;-1:-1:-1;;;;;38043:21:0;-1:-1:-1;;;;;38043:21:0;;;;;;;;;;;;:32;38065:9;38043:32;;;;;;;;;;;;;;;:37;;;38001:14;:27;38016:11;38001:27;;;;;;;;;;;:39;;:79;;;;38131:9;38091:14;:27;38106:11;38091:27;;;;;;;;;;;:37;;;:49;;;;;;;;;;;;;;;;;;38189:3;38151:14;:27;38166:11;38151:27;;;;;;;;;;;:35;;:41;;;;38248:4;38242:3;:10;38203:14;:27;38218:11;38203:27;;;;;;;;;;;:36;;:49;;;;38302:11;:21;38314:8;-1:-1:-1;;;;;38302:21:0;-1:-1:-1;;;;;38302:21:0;;;;;;;;;;;;:32;38324:9;38302:32;;;;;;;;;;;;;;;:41;;;;;;;;;;;;38263:14;:27;38278:11;38263:27;;;;;;;;;;;:36;;;:80;;;;;;;;;;;;;;;;;;38376:10;-1:-1:-1;;;;;38355:85:0;38366:8;-1:-1:-1;;;;;38355:85:0;;38388:11;38401:9;38412;38423:4;38435;38429:3;:10;38355:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38454:11:0;;35304:3166;-1:-1:-1;;;;;35304:3166:0:o;12844:91::-;12915:12;;12844:91;:::o;21287:44::-;;;;:::o;14447:304::-;14536:4;14553:36;14563:6;14571:9;14582:6;14553:9;:36::i;:::-;14600:121;14609:6;14617:12;:10;:12::i;:::-;14631:89;14669:6;14631:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14631:19:0;;;;;;:11;:19;;;;;;14651:12;:10;:12::i;:::-;-1:-1:-1;;;;;14631:33:0;;;;;;;;;;;;-1:-1:-1;14631:33:0;;;:89;;:37;:89;:::i;:::-;14600:8;:121::i;:::-;-1:-1:-1;14739:4:0;14447:304;;;;;:::o;31434:409::-;31532:1;31519:10;:14;:31;;;;;31549:1;31537:9;:13;31519:31;:70;;;;;31568:21;31578:10;31568:9;:21::i;:::-;31554:10;:35;;31519:70;31511:79;;;;;;31595:17;31615:73;31639:10;31651;31663:9;31674:12;31622:65;;;;;;-1:-1:-1;;;;;31622:65:0;-1:-1:-1;;;;;31622:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;31622:65:0;;;31615:73;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;31615:73:0;;;;;;;-1:-1:-1;263:2;;-1:-1;;31615:73:0;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31615:73:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31615:73:0;31717:48;;;;;;;;;31723:10;31717:48;;;31615:73;31717:48;;;;;;;;;;;;;;;;;;;-1:-1:-1;31693:21:0;;;:10;:21;;;;;:72;;;;-1:-1:-1;;;;;;31693:72:0;-1:-1:-1;;;;;31693:72:0;;;;;;;;-1:-1:-1;31693:72:0;;;;;;;;;;;;;;;;;;;31775:63;;;;;;;;;;;;;;;;;;;;;;;31615:73;;-1:-1:-1;31615:73:0;;31775:63;;;;;;;;;;;31434:409;;;;:::o;4479:83::-;4545:9;;;;4479:83;:::o;15160:210::-;15240:4;15257:83;15266:12;:10;:12::i;:::-;15280:7;15289:50;15328:10;15289:11;:25;15301:12;:10;:12::i;:::-;-1:-1:-1;;;;;15289:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15289:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;31848:218::-;31912:20;;;;:9;:20;;;;;:27;;;31942:3;-1:-1:-1;31912:76:0;;;;-1:-1:-1;31949:20:0;;;;:9;:20;;;;;:25;-1:-1:-1;;;;;31949:25:0;31978:10;31949:39;31912:76;31903:86;;;;;;32024:1;31994:20;;;:9;:20;;;;;;:27;;:31;;;32036:25;32004:9;;32036:25;;;31848:218;:::o;39467:550::-;39580:27;;;;:14;:27;;;;;:33;;;-1:-1:-1;;;;;39580:33:0;39617:10;39580:47;:96;;;;-1:-1:-1;39631:27:0;;;;:14;:27;;;;;:40;;;;;;;;:45;39580:96;39572:105;;;;;;39742:2;39727:12;:17;;;:62;;39768:1;39753:12;:16;;;:35;;39776:12;39753:35;;;39772:1;39753:35;39727:62;;;39747:2;39727:62;39684:27;;;;:14;:27;;;;;;;;:40;;;:105;;;;;;;;;-1:-1:-1;;39684:105:0;;;;;;;;;;39794:55;;;;:40;;;:55;;;;:::i;:::-;-1:-1:-1;39873:27:0;;;;:14;:27;;;;;;;;;:32;;;;39932:37;;;;;39863:149;;;;;39932:37;;;39863:149;;;;;;;39971:40;;;;;;39863:149;;;;;;39907:10;;39873:32;;;-1:-1:-1;;;;;39873:32:0;;39863:149;;;;;;;;;;39467:550;;;:::o;30760:257::-;30827:10;30816:22;;;;:10;:22;;;;;;:32;-1:-1:-1;30816:32:0;30808:41;;;;;;30890:10;30879:22;;;;:10;:22;;;;;;:34;;30906:6;30879:34;:26;:34;:::i;:::-;30865:10;30854:22;;;;:10;:22;;;;;;:59;;;;30918:27;;30865:10;;30918:27;;;;;30938:6;;30918:27;30854:22;30918:27;30938:6;30865:10;30918:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;30969:10:0;30989:22;;;;:10;:22;;;;;;;;;;30955:57;;;;;;;;;;;;;;;;;;;;;;;;;30760:257;:::o;21122:56::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21122:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21122:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29078:154::-;29165:5;;-1:-1:-1;;;;;29165:5:0;29151:10;:19;29143:42;;;;;-1:-1:-1;;;29143:42:0;;;;;;;;;;;;-1:-1:-1;;;29143:42:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29196:23:0;29222:5;29196:23;;;:11;:23;;;;;:31;;-1:-1:-1;;29196:31:0;;;29078:154::o;28391:141::-;28475:5;;-1:-1:-1;;;;;28475:5:0;28461:10;:19;28453:42;;;;;-1:-1:-1;;;28453:42:0;;;;;;;;;;;;-1:-1:-1;;;28453:42:0;;;;;;;;;;;;;;;28500:15;:27;28391:141::o;28066:266::-;28171:5;;-1:-1:-1;;;;;28171:5:0;28157:10;:19;28149:42;;;;;-1:-1:-1;;;28149:42:0;;;;;;;;;;;;-1:-1:-1;;;28149:42:0;;;;;;;;;;;;;;;28227:10;28211:27;;;;:15;:27;;;;;:38;;;28202:66;;;;;-1:-1:-1;;;28202:66:0;;;;;;;;;;;;-1:-1:-1;;;28202:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28279:21:0;;;;;;;:15;:21;;;;;:45;;;;;;;-1:-1:-1;;28279:45:0;;;;;;;;;28066:266::o;28923:150::-;29007:5;;-1:-1:-1;;;;;29007:5:0;28993:10;:19;28985:42;;;;;-1:-1:-1;;;28985:42:0;;;;;;;;;;;;-1:-1:-1;;;28985:42:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29038:23:0;;;;;:11;:23;;;;;:30;;-1:-1:-1;;29038:30:0;29064:4;29038:30;;;28923:150::o;27531:485::-;27674:10;27658:27;;;;:15;:27;;;;;:38;;;27649:66;;;;;-1:-1:-1;;;27649:66:0;;;;;;;;;;;;-1:-1:-1;;;27649:66:0;;;;;;;;;;;;;;;27747:13;;;-1:-1:-1;;;27747:13:0;;;;;27735:25;;;;27726:35;;;;;;27786:10;27774:23;;;;:11;:23;;;;;;;;:34;;;;;;;;;;;;;;:52;;;;;-1:-1:-1;;27774:52:0;;;;;;27837:43;;;:54;;;;;;;;;;;;;;;;-1:-1:-1;27902:39:0;;:46;;;;-1:-1:-1;27959:42:0;:52;27531:485::o;21009:71::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29515:444::-;29644:9;;;29630:23;;;29644:9;;29630:23;;29622:72;;;;-1:-1:-1;;;29622:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29713:18;;;;;;;:6;:18;;;;;:25;;;29705:54;;;;;-1:-1:-1;;;29705:54:0;;;;;;;;;;;;-1:-1:-1;;;29705:54:0;;;;;;;;;;;;;;;29788:14;;29778:6;:24;;:52;;;;;29816:14;;29806:6;:24;;29778:52;29770:76;;;;;-1:-1:-1;;;29770:76:0;;;;;;;;;;;;-1:-1:-1;;;29770:76:0;;;;;;;;;;;;;;;29857:25;29863:10;29875:6;29857:5;:25::i;:::-;29898:53;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29898:53:0;;;29903:10;;29898:53;;;;;;;;;29515:444;;;;:::o;27248:240::-;27370:10;27354:27;;;;:15;:27;;;;;:38;;;27345:66;;;;;-1:-1:-1;;;27345:66:0;;;;;;;;;;;;-1:-1:-1;;;27345:66:0;;;;;;;;;;;;;;;27437:10;27422:26;;;;:14;:26;;;;;;;;:41;;;;;;;;:58;;;;;;;;:::i;:::-;;27248:240;;:::o;25403:1798::-;25729:10;25713:27;;;;:15;:27;;;;;:38;;;25712:39;;:81;;-1:-1:-1;25771:10:0;25755:27;;;;:15;:27;;;;;:38;;;;;;25712:81;25702:115;;;;;-1:-1:-1;;;25702:115:0;;;;;;;;;;;;-1:-1:-1;;;25702:115:0;;;;;;;;;;;;;;;25898:15;;25873:21;25883:10;25873:9;:21::i;:::-;:40;;25864:50;;;;;;25942:10;25926:27;;;;:15;:27;;;;;:38;;;25921:153;;25988:10;25972:27;;;;:15;:27;;;;;:45;;-1:-1:-1;;;;25972:45:0;;;26013:4;25972:45;26023;25972;26023;;;25921:153;26096:10;26080:27;;;;:15;:27;;;;;;;;:47;;-1:-1:-1;;26080:47:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;26132:37:0;;:49;;-1:-1:-1;;26132:49:0;;;;;;;;;;;26188:39;;;;26080:36;26188:32;;;;:39;;;;:::i;:::-;-1:-1:-1;26248:10:0;26232:27;;;;:15;:27;;;;;;;;:47;;;;:36;;;;;:47;;;;:::i;:::-;-1:-1:-1;26300:10:0;26284:27;;;;:15;:27;;;;;;;;:41;;;;:33;;;;;:41;;;;:::i;:::-;-1:-1:-1;26346:10:0;26330:27;;;;:15;:27;;;;;;;;:49;;;;:37;;;;;:49;;;;:::i;:::-;-1:-1:-1;26400:10:0;26384:27;;;;:15;:27;;;;;;;;:41;;;;:33;;;;;:41;;;;:::i;:::-;-1:-1:-1;26442:13:0;;26438:213;;26475:10;26463:23;;;;:11;:23;;;;;;;;:26;;;;;;;;:41;;26500:4;-1:-1:-1;;26463:41:0;;;;;;;26510:35;;;:42;;;;;;;;;;26558:34;;;:38;;;;26602:31;:43;;;26438:213;26667:12;;26663:211;;26699:10;26687:23;;;;:11;:23;;;;;;;;26724:4;26687:26;;;;;;;:41;;-1:-1:-1;;26687:41:0;;;;;;;26734:35;;;:42;;;;;;;;;26782:34;;;:38;;;;26826:31;:42;;;26663:211;26890:12;;26886:211;;26922:10;26910:23;;;;:11;:23;;;;;;;;26934:1;26910:26;;;;;;;:41;;26947:4;-1:-1:-1;;26910:41:0;;;;;;;26957:35;;;:42;;;;;;;;;;27005:34;;;:38;;;;27049:31;:42;;;26886:211;27144:9;27106:90;;27134:8;27106:90;;27122:10;-1:-1:-1;;;;;27106:90:0;;27155:4;27161:8;27171:5;27178:9;27189:5;27106:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27106:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27106:90:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27106:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27106:90:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27106:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27106:90:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27106:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27106:90:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27106:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25403:1798;;;;;;;;;;:::o;23293:42::-;;;;:::o;12998:110::-;-1:-1:-1;;;;;13082:18:0;13055:7;13082:18;;;:9;:18;;;;;;;12998:110::o;32071:223::-;32136:21;;;;:10;:21;;;;;:28;;;32167:3;-1:-1:-1;32136:78:0;;;;-1:-1:-1;32174:21:0;;;;:10;:21;;;;;:26;-1:-1:-1;;;;;32174:26:0;32204:10;32174:40;32136:78;32127:88;;;;;;32251:1;32220:21;;;:10;:21;;;;;;:28;;:32;;;32263:26;32231:9;;32263:26;;;32071:223;:::o;24804:117::-;24863:5;;-1:-1:-1;;;;;24863:5:0;24849:10;:19;24841:42;;;;;-1:-1:-1;;;24841:42:0;;;;;;;;;;;;-1:-1:-1;;;24841:42:0;;;;;;;;;;;;;;;24907:5;;-1:-1:-1;;;;;24907:5:0;24894:19;25200:162;25282:5;;-1:-1:-1;;;;;25282:5:0;25268:10;:19;25260:42;;;;;-1:-1:-1;;;25260:42:0;;;;;;;;;;;;-1:-1:-1;;;25260:42:0;;;;;;;;;;;;;;;25316:13;;-1:-1:-1;;;25316:13:0;;;;25307:23;;;;:8;:23;;;;;;;;:30;;;;;;;;:::i;:::-;-1:-1:-1;;25342:13:0;:15;;;;-1:-1:-1;;;25342:15:0;;;;;;;;;;;-1:-1:-1;;;;25342:15:0;;;;;;25200:162::o;19817:28::-;;;-1:-1:-1;;;;;19817:28:0;;:::o;23244:23::-;;;;;;:::o;28730:188::-;28813:5;;-1:-1:-1;;;;;28813:5:0;28799:10;:19;28791:42;;;;;-1:-1:-1;;;28791:42:0;;;;;;;;;;;;-1:-1:-1;;;28791:42:0;;;;;;;;;;;;;;;28862:1;28853:6;:10;28844:35;;;;;-1:-1:-1;;;28844:35:0;;;;;;;;;;;;-1:-1:-1;;;28844:35:0;;;;;;;;;;;;;;;28890:14;:23;28730:188::o;3829:87::-;3901:7;3894:14;;;;;;;;-1:-1:-1;;3894:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3868:13;;3894:14;;3901:7;;3894:14;;3901:7;3894:14;;;;;;;;;;;;;;;;;;;;;;;;28537:188;28620:5;;-1:-1:-1;;;;;28620:5:0;28606:10;:19;28598:42;;;;;-1:-1:-1;;;28598:42:0;;;;;;;;;;;;-1:-1:-1;;;28598:42:0;;;;;;;;;;;;;;;28669:1;28660:6;:10;28651:35;;;;;-1:-1:-1;;;28651:35:0;;;;;;;;;;;;-1:-1:-1;;;28651:35:0;;;;;;;;;;;;;;;28697:14;:23;28537:188::o;32299:1288::-;32365:21;;;;:10;:21;;;;;:26;-1:-1:-1;;;;;32365:26:0;32395:10;32365:40;;32357:64;;;;;-1:-1:-1;;;32357:64:0;;;;;;;;;;;;-1:-1:-1;;;32357:64:0;;;;;;;;;;;;;;;32446:1;32434:9;:13;:52;;;;-1:-1:-1;32458:21:0;;;;:10;:21;;;;;:28;;;32451:3;:35;;32434:52;:107;;;;-1:-1:-1;32495:21:0;;;;:10;:21;;;;;:31;;;:46;;32531:9;32495:46;:35;:46;:::i;:::-;-1:-1:-1;32490:51:0;32434:107;32426:116;;;;;;32551:14;32600:21;;;:10;:21;;;;;:31;;;32587:9;:44;32583:720;;;-1:-1:-1;32651:21:0;;;;:10;:21;;;;;:32;;;;32712:26;;32702:52;;32651:32;;32702:37;;-1:-1:-1;;;;;32712:26:0;32702:9;:37::i;:52::-;-1:-1:-1;32796:1:0;32761:21;;;:10;:21;;;;;:32;;;:36;;;32804:31;;;:35;;;32846:28;;:32;32583:720;;;32961:21;;;;:10;:21;;;;;:31;;;;32909:32;;;;;:84;;32961:31;32909:47;;32946:9;32909:47;:36;:47;:::i;:::-;:51;:84;:51;:84;:::i;:::-;33022:21;;;;:10;:21;;;;;:26;32897:96;;-1:-1:-1;33012:52:0;;32897:96;;33012:37;;-1:-1:-1;;;;;33022:26:0;33012:9;:37::i;:52::-;-1:-1:-1;33073:21:0;;;;:10;:21;;;;;:32;;;:47;;33110:9;33073:47;:36;:47;:::i;:::-;-1:-1:-1;33162:21:0;;;;:10;:21;;;;;:32;;;:47;;33199:9;33162:47;:36;:47;:::i;:::-;33127:21;;;;:10;:21;;;;;:32;;;:82;;;;33250:31;;;:46;;33286:9;33250:46;:35;:46;:::i;:::-;33216:21;;;;:10;:21;;;;;:31;;:80;32583:720;33328:21;;;;:10;:21;;;;;:26;33318:60;;-1:-1:-1;;;;;33328:26:0;33356:10;33368:9;33318;:60::i;:::-;33424:38;33435:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;33435:26:0;33424:38;;:10;:38;;;;;;:53;;33467:9;33424:53;:42;:53;:::i;:::-;33383:38;33394:21;;;:10;:21;;;;;;;;:26;;-1:-1:-1;;;;;33394:26:0;33383:38;;:10;:38;;;;;:94;;;;33504:21;;;;;;;33394:26;33504:32;;;33538:31;;;;;33489:93;;;;;;;;;33571:10;33489:93;;;;;33405:9;;33489:93;;;;;;;;;;32299:1288;;:::o;15873:261::-;15958:4;15975:129;15984:12;:10;:12::i;:::-;15998:7;16007:96;16046:15;16007:96;;;;;;;;;;;;;;;;;:11;:25;16019:12;:10;:12::i;:::-;-1:-1:-1;;;;;16007:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16007:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;29273:234::-;29392:5;;-1:-1:-1;;;;;29392:5:0;29378:10;:19;29370:42;;;;;-1:-1:-1;;;29370:42:0;;;;;;;;;;;;-1:-1:-1;;;29370:42:0;;;;;;;;;;;;;;;29417:18;;;;;;;:6;:18;;;;;;;;:35;;-1:-1:-1;;29417:35:0;;;;;;;29457:45;;;;-1:-1:-1;29457:30:0;;;;:45;;;;:::i;:::-;;29273:234;;;:::o;13321:158::-;13390:4;13407:42;13417:12;:10;:12::i;:::-;13431:9;13442:6;13407:9;:42::i;23548:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23548:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33592:1354::-;33668:20;;;;:9;:20;;;;;:25;-1:-1:-1;;;;;33668:25:0;33697:10;33668:39;;33660:63;;;;;-1:-1:-1;;;33660:63:0;;;;;;;;;;;;-1:-1:-1;;;33660:63:0;;;;;;;;;;;;;;;33749:1;33736:10;:14;:52;;;;-1:-1:-1;33761:20:0;;;;:9;:20;;;;;:27;;;33754:3;:34;;33736:52;:98;;;;;33797:37;33823:10;33797:21;33807:10;33797:9;:21::i;:37::-;-1:-1:-1;33792:42:0;33736:98;:154;;;;-1:-1:-1;33844:20:0;;;;:9;:20;;;;;:30;;;:46;;33879:10;33844:46;:34;:46;:::i;:::-;-1:-1:-1;33839:51:0;33736:154;33728:163;;;;;;33898:14;33937:20;;;:9;:20;;;;;:30;;;33923:44;;33919:708;;;-1:-1:-1;33987:20:0;;;;:9;:20;;;;;;;;:31;;;;34048:25;;-1:-1:-1;;;;;34048:25:0;34037:37;;:10;:37;;;;;;;:52;;33987:31;34037:52;:41;:52;:::i;:::-;-1:-1:-1;34130:1:0;34096:20;;;:9;:20;;;;;:31;;;:35;;;34138:30;;;:34;;;34179:27;;:31;33919:708;;;34291:20;;;;:9;:20;;;;;:30;;;;34241:31;;;;;:47;;34277:10;34241:47;:35;:47;:::i;:::-;:80;;;;;34340:37;34351:20;;;:9;:20;;;;;;;;:25;-1:-1:-1;;;;;34351:25:0;34340:37;;:10;:37;;;;;;34241:80;;;;-1:-1:-1;34340:52:0;;34241:80;34340:52;:41;:52;:::i;:::-;-1:-1:-1;34401:20:0;;;;:9;:20;;;;;:31;;;:46;;34437:9;34401:46;:35;:46;:::i;:::-;-1:-1:-1;34488:20:0;;;;:9;:20;;;;;:31;;;:46;;34524:9;34488:46;:35;:46;:::i;:::-;34454:20;;;;:9;:20;;;;;:31;;;:80;;;;34574:30;;;:46;;34609:10;34574:46;:34;:46;:::i;:::-;34541:20;;;;:9;:20;;;;;:30;;:79;33919:708;34673:37;34684:20;;;:9;:20;;;;;;;;:25;-1:-1:-1;;;;;34684:25:0;34673:37;;:10;:37;;;;;;:52;;34715:9;34673:52;:41;:52;:::i;:::-;34633:37;34644:20;;;:9;:20;;;;;;;;:25;;-1:-1:-1;;;;;34644:25:0;;;34633:37;;:10;:37;;;;;:92;;;;34758:20;;;;;:25;;34736:60;;34746:10;;34758:25;34785:10;34736:9;:60::i;:::-;34807:30;;:10;;:30;;;;;34827:9;;34807:30;;;;34827:9;34807:10;:30;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;34865:20:0;;;;:9;:20;;;;;;;;;:31;;;;34898:30;;;;;34849:92;;;;;;;;;;;;34930:10;34849:92;;;;;;34854:9;;34849:92;;;;;;;;;;33592:1354;;;:::o;20948:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;20948:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;20948:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;20948:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;20948:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20948:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21638:43;;;;;;;;;;;;;:::o;23380:46::-;;;;:::o;13542:134::-;-1:-1:-1;;;;;13641:18:0;;;13614:7;13641:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13542:134::o;31022:407::-;31119:1;31106:10;:14;:31;;;;;31136:1;31124:9;:13;31106:31;:71;;;;-1:-1:-1;31166:10:0;31155:22;;;;:10;:22;;;;;;31141:36;;;31106:71;31098:80;;;;;;31183:17;31203:73;31227:10;31239;31251:9;31262:12;31210:65;;;;;;-1:-1:-1;;;;;31210:65:0;-1:-1:-1;;;;;31210:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;31210:65:0;;;31203:73;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;31203:73:0;;;;;;;-1:-1:-1;263:2;;-1:-1;;31203:73:0;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31203:73:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31203:73:0;31304:48;;;;;;;;;31310:10;31304:48;;;31203:73;31304:48;;;;;;;;;;;;;;;;;;;-1:-1:-1;31281:20:0;;;:9;:20;;;;;:71;;;;-1:-1:-1;;;;;;31281:71:0;-1:-1:-1;;;;;31281:71:0;;;;;;;;-1:-1:-1;31281:71:0;;;;;;;;;;;;;;;;;;;31362:62;;;;;;;;;;;;;;;;;;;;;;;31203:73;;-1:-1:-1;31203:73:0;;31362:62;;;;;;;;;;;31022:407;;;;:::o;29967:155::-;30059:55;30071:10;30083:6;30091:10;30103;30059:11;:55::i;23618:38::-;;;;;;;;;;;;;;;:::o;20827:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20827:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21504:44;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21504:44:0;;;;;;;:::o;30174:396::-;30292:10;30280:23;;;;:11;:23;;;;;;;;30271:52;;;;;-1:-1:-1;;;30271:52:0;;;;;;;;;;;;-1:-1:-1;;;30271:52:0;;;;;;;;;;;;;;;30343:13;;;;:5;:13;;;;;;;;30342:14;30334:44;;;;;-1:-1:-1;;;30334:44:0;;;;;;;;;;;;-1:-1:-1;;;30334:44:0;;;;;;;;;;;;;;;30389:21;30395:7;30404:5;30389;:21::i;:::-;30425:7;;30421:62;;30449:22;30455:10;30467:3;30449:5;:22::i;:::-;30493:13;;;;:5;:13;;;;;;;;;:20;;-1:-1:-1;;30493:20:0;30509:4;30493:20;;;30529:33;;;;;;;-1:-1:-1;;;;;30529:33:0;;;30499:6;;30529:33;;;;;;;;;30174:396;;;;:::o;23665:44::-;;;;;;;;;;;;;;;:::o;6678:181::-;6736:7;6768:5;;;6792:6;;;;6784:46;;;;;-1:-1:-1;;;6784:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6850:1;6678:181;-1:-1:-1;;;6678:181:0:o;7134:136::-;7192:7;7219:43;7223:1;7226;7219:43;;;;;;;;;;;;;;;;;:3;:43::i;8050:471::-;8108:7;8353:6;8349:47;;-1:-1:-1;8383:1:0;8376:8;;8349:47;8420:5;;;8424:1;8420;:5;:1;8444:5;;;;;:10;8436:56;;;;-1:-1:-1;;;8436:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16624:471;-1:-1:-1;;;;;16722:20:0;;16714:70;;;;-1:-1:-1;;;16714:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16803:23:0;;16795:71;;;;-1:-1:-1;;;16795:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16899;16921:6;16899:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16899:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16879:17:0;;;;;;;:9;:17;;;;;;:91;;;;17004:20;;;;;;;:32;;17029:6;17004:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16981:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17052:35;;;;;;;16981:20;;17052:35;;;;;;;;;;;;;16624:471;;;:::o;5427:98::-;5507:10;5427:98;:::o;18804:338::-;-1:-1:-1;;;;;18898:19:0;;18890:68;;;;-1:-1:-1;;;18890:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18977:21:0;;18969:68;;;;-1:-1:-1;;;18969:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19050:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19102:32;;;;;;;;;;;;;;;;;18804:338;;;:::o;8989:132::-;9047:7;9074:39;9078:1;9081;9074:39;;;;;;;;;;;;;;;;;:3;:39::i;7607:192::-;7693:7;7729:12;7721:6;;;;7713:29;;;;-1:-1:-1;;;7713:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7713:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7765:5:0;;;7607:192::o;18016:348::-;-1:-1:-1;;;;;18092:21:0;;18084:67;;;;-1:-1:-1;;;18084:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18185:68;18208:6;18185:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18185:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18164:18:0;;;;;;:9;:18;;;;;:89;18279:12;;:24;;18296:6;18279:24;:16;:24;:::i;:::-;18264:12;:39;18319:37;;;;;;;;18345:1;;-1:-1:-1;;;;;18319:37:0;;;;;;;;;;;;18016:348;;:::o;17376:308::-;-1:-1:-1;;;;;17452:21:0;;17444:65;;;;;-1:-1:-1;;;17444:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17537:12;;:24;;17554:6;17537:24;:16;:24;:::i;:::-;17522:12;:39;-1:-1:-1;;;;;17593:18:0;;;;;;:9;:18;;;;;;:30;;17616:6;17593:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17572:18:0;;;;;;:9;:18;;;;;;;;:51;;;;17639:37;;;;;;;17572:18;;;;17639:37;;;;;;;;;;17376:308;;:::o;9651:345::-;9737:7;9839:12;9832:5;9824:28;;;;-1:-1:-1;;;9824:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9824:28:0;;9863:9;9879:1;9875;:5;;;;;;;9651:345;-1:-1:-1;;;;;9651:345:0:o;19728:20292::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19728:20292:0;;;-1:-1:-1;19728:20292:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://034a844363cbe0e703261953838d4c202802e1def69cc34a62eac3afa053c8e9
Loading...
Loading
Loading...
Loading
OVERVIEW
Charg Coin (CHG) facilitates crowdsourced energy distribution. Now anyone can sell energy, in one second increments, to anyone else.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.